block: loop: don't hold lo_ctl_mutex in lo_open
[linux-2.6-block.git] / drivers / block / loop.c
CommitLineData
1da177e4
LT
1/*
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.
96de0e25 32 * Erik I. Bolsø, <eriki@himolde.no>, Oct 31, 1999
1da177e4
LT
33 *
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
4e02ed4b 43 * operations write_begin is not available on the backing filesystem.
1da177e4
LT
44 * 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
1da177e4
LT
52#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>
1da177e4
LT
64#include <linux/swap.h>
65#include <linux/slab.h>
863d5b82 66#include <linux/compat.h>
1da177e4 67#include <linux/suspend.h>
83144186 68#include <linux/freezer.h>
2a48fc0a 69#include <linux/mutex.h>
1da177e4 70#include <linux/writeback.h>
1da177e4
LT
71#include <linux/completion.h>
72#include <linux/highmem.h>
6c997918 73#include <linux/kthread.h>
d6b29d7c 74#include <linux/splice.h>
ee862730 75#include <linux/sysfs.h>
770fe30a 76#include <linux/miscdevice.h>
dfaa2ef6 77#include <linux/falloc.h>
283e7e5d 78#include <linux/uio.h>
83a87611 79#include "loop.h"
1da177e4
LT
80
81#include <asm/uaccess.h>
82
34dd82af
KS
83static DEFINE_IDR(loop_index_idr);
84static DEFINE_MUTEX(loop_index_mutex);
1da177e4 85
476a4813
LV
86static int max_part;
87static int part_shift;
88
1da177e4
LT
89static int transfer_xor(struct loop_device *lo, int cmd,
90 struct page *raw_page, unsigned raw_off,
91 struct page *loop_page, unsigned loop_off,
92 int size, sector_t real_block)
93{
cfd8005c
CW
94 char *raw_buf = kmap_atomic(raw_page) + raw_off;
95 char *loop_buf = kmap_atomic(loop_page) + loop_off;
1da177e4
LT
96 char *in, *out, *key;
97 int i, keysize;
98
99 if (cmd == READ) {
100 in = raw_buf;
101 out = loop_buf;
102 } else {
103 in = loop_buf;
104 out = raw_buf;
105 }
106
107 key = lo->lo_encrypt_key;
108 keysize = lo->lo_encrypt_key_size;
109 for (i = 0; i < size; i++)
110 *out++ = *in++ ^ key[(i & 511) % keysize];
111
cfd8005c
CW
112 kunmap_atomic(loop_buf);
113 kunmap_atomic(raw_buf);
1da177e4
LT
114 cond_resched();
115 return 0;
116}
117
118static int xor_init(struct loop_device *lo, const struct loop_info64 *info)
119{
120 if (unlikely(info->lo_encrypt_key_size <= 0))
121 return -EINVAL;
122 return 0;
123}
124
125static struct loop_func_table none_funcs = {
126 .number = LO_CRYPT_NONE,
aa4d8616 127};
1da177e4
LT
128
129static struct loop_func_table xor_funcs = {
130 .number = LO_CRYPT_XOR,
131 .transfer = transfer_xor,
132 .init = xor_init
aa4d8616 133};
1da177e4
LT
134
135/* xfer_funcs[0] is special - its release function is never called */
136static struct loop_func_table *xfer_funcs[MAX_LO_CRYPT] = {
137 &none_funcs,
138 &xor_funcs
139};
140
7035b5df 141static loff_t get_size(loff_t offset, loff_t sizelimit, struct file *file)
1da177e4 142{
b7a1da69 143 loff_t loopsize;
1da177e4
LT
144
145 /* Compute loopsize in bytes */
b7a1da69
GC
146 loopsize = i_size_read(file->f_mapping->host);
147 if (offset > 0)
148 loopsize -= offset;
149 /* offset is beyond i_size, weird but possible */
7035b5df
DM
150 if (loopsize < 0)
151 return 0;
1da177e4 152
7035b5df
DM
153 if (sizelimit > 0 && sizelimit < loopsize)
154 loopsize = sizelimit;
1da177e4
LT
155 /*
156 * Unfortunately, if we want to do I/O on the device,
157 * the number of 512-byte sectors has to fit into a sector_t.
158 */
159 return loopsize >> 9;
160}
161
7035b5df
DM
162static loff_t get_loop_size(struct loop_device *lo, struct file *file)
163{
164 return get_size(lo->lo_offset, lo->lo_sizelimit, file);
165}
166
1da177e4 167static int
7035b5df 168figure_loop_size(struct loop_device *lo, loff_t offset, loff_t sizelimit)
1da177e4 169{
7035b5df 170 loff_t size = get_size(offset, sizelimit, lo->lo_backing_file);
1da177e4 171 sector_t x = (sector_t)size;
7b0576a3 172 struct block_device *bdev = lo->lo_device;
1da177e4
LT
173
174 if (unlikely((loff_t)x != size))
175 return -EFBIG;
7035b5df
DM
176 if (lo->lo_offset != offset)
177 lo->lo_offset = offset;
178 if (lo->lo_sizelimit != sizelimit)
179 lo->lo_sizelimit = sizelimit;
73285082 180 set_capacity(lo->lo_disk, x);
7b0576a3
GC
181 bd_set_size(bdev, (loff_t)get_capacity(bdev->bd_disk) << 9);
182 /* let user-space know about the new size */
183 kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, KOBJ_CHANGE);
7035b5df 184 return 0;
1da177e4
LT
185}
186
187static inline int
188lo_do_transfer(struct loop_device *lo, int cmd,
189 struct page *rpage, unsigned roffs,
190 struct page *lpage, unsigned loffs,
191 int size, sector_t rblock)
192{
aa4d8616
CH
193 int ret;
194
195 ret = lo->transfer(lo, cmd, rpage, roffs, lpage, loffs, size, rblock);
196 if (likely(!ret))
1da177e4
LT
197 return 0;
198
aa4d8616
CH
199 printk_ratelimited(KERN_ERR
200 "loop: Transfer error at byte offset %llu, length %i.\n",
201 (unsigned long long)rblock << 9, size);
202 return ret;
1da177e4
LT
203}
204
aa4d8616 205static int lo_write_bvec(struct file *file, struct bio_vec *bvec, loff_t *ppos)
1da177e4 206{
aa4d8616 207 struct iov_iter i;
1da177e4 208 ssize_t bw;
283e7e5d 209
aa4d8616 210 iov_iter_bvec(&i, ITER_BVEC, bvec, 1, bvec->bv_len);
1da177e4 211
03d95eb2 212 file_start_write(file);
aa4d8616 213 bw = vfs_iter_write(file, &i, ppos);
03d95eb2 214 file_end_write(file);
aa4d8616
CH
215
216 if (likely(bw == bvec->bv_len))
1da177e4 217 return 0;
aa4d8616
CH
218
219 printk_ratelimited(KERN_ERR
220 "loop: Write error at byte offset %llu, length %i.\n",
221 (unsigned long long)*ppos, bvec->bv_len);
1da177e4
LT
222 if (bw >= 0)
223 bw = -EIO;
224 return bw;
225}
226
aa4d8616
CH
227static int lo_write_simple(struct loop_device *lo, struct request *rq,
228 loff_t pos)
1da177e4 229{
aa4d8616
CH
230 struct bio_vec bvec;
231 struct req_iterator iter;
232 int ret = 0;
233
234 rq_for_each_segment(bvec, rq, iter) {
235 ret = lo_write_bvec(lo->lo_backing_file, &bvec, &pos);
236 if (ret < 0)
237 break;
238 cond_resched();
239 }
240
241 return ret;
1da177e4
LT
242}
243
aa4d8616 244/*
456be148
CH
245 * This is the slow, transforming version that needs to double buffer the
246 * data as it cannot do the transformations in place without having direct
247 * access to the destination pages of the backing file.
1da177e4 248 */
aa4d8616
CH
249static int lo_write_transfer(struct loop_device *lo, struct request *rq,
250 loff_t pos)
1da177e4 251{
aa4d8616 252 struct bio_vec bvec, b;
30112013 253 struct req_iterator iter;
aa4d8616 254 struct page *page;
7988613b 255 int ret = 0;
1da177e4 256
aa4d8616
CH
257 page = alloc_page(GFP_NOIO);
258 if (unlikely(!page))
259 return -ENOMEM;
456be148 260
30112013 261 rq_for_each_segment(bvec, rq, iter) {
aa4d8616
CH
262 ret = lo_do_transfer(lo, WRITE, page, 0, bvec.bv_page,
263 bvec.bv_offset, bvec.bv_len, pos >> 9);
264 if (unlikely(ret))
265 break;
266
267 b.bv_page = page;
268 b.bv_offset = 0;
269 b.bv_len = bvec.bv_len;
270 ret = lo_write_bvec(lo->lo_backing_file, &b, &pos);
1da177e4
LT
271 if (ret < 0)
272 break;
1da177e4 273 }
aa4d8616
CH
274
275 __free_page(page);
1da177e4 276 return ret;
1da177e4
LT
277}
278
aa4d8616
CH
279static int lo_read_simple(struct loop_device *lo, struct request *rq,
280 loff_t pos)
1da177e4 281{
aa4d8616
CH
282 struct bio_vec bvec;
283 struct req_iterator iter;
284 struct iov_iter i;
285 ssize_t len;
1da177e4 286
aa4d8616
CH
287 rq_for_each_segment(bvec, rq, iter) {
288 iov_iter_bvec(&i, ITER_BVEC, &bvec, 1, bvec.bv_len);
289 len = vfs_iter_read(lo->lo_backing_file, &i, &pos);
290 if (len < 0)
291 return len;
1da177e4 292
aa4d8616 293 flush_dcache_page(bvec.bv_page);
fd582140 294
aa4d8616
CH
295 if (len != bvec.bv_len) {
296 struct bio *bio;
1da177e4 297
aa4d8616
CH
298 __rq_for_each_bio(bio, rq)
299 zero_fill_bio(bio);
300 break;
301 }
302 cond_resched();
303 }
304
305 return 0;
fd582140
JA
306}
307
aa4d8616
CH
308static int lo_read_transfer(struct loop_device *lo, struct request *rq,
309 loff_t pos)
1da177e4 310{
aa4d8616
CH
311 struct bio_vec bvec, b;
312 struct req_iterator iter;
313 struct iov_iter i;
314 struct page *page;
315 ssize_t len;
316 int ret = 0;
1da177e4 317
aa4d8616
CH
318 page = alloc_page(GFP_NOIO);
319 if (unlikely(!page))
320 return -ENOMEM;
fd582140 321
aa4d8616
CH
322 rq_for_each_segment(bvec, rq, iter) {
323 loff_t offset = pos;
fd582140 324
aa4d8616
CH
325 b.bv_page = page;
326 b.bv_offset = 0;
327 b.bv_len = bvec.bv_len;
fd582140 328
aa4d8616
CH
329 iov_iter_bvec(&i, ITER_BVEC, &b, 1, b.bv_len);
330 len = vfs_iter_read(lo->lo_backing_file, &i, &pos);
331 if (len < 0) {
332 ret = len;
333 goto out_free_page;
334 }
1da177e4 335
aa4d8616
CH
336 ret = lo_do_transfer(lo, READ, page, 0, bvec.bv_page,
337 bvec.bv_offset, len, offset >> 9);
338 if (ret)
339 goto out_free_page;
1da177e4 340
aa4d8616 341 flush_dcache_page(bvec.bv_page);
306df071 342
aa4d8616 343 if (len != bvec.bv_len) {
30112013
ML
344 struct bio *bio;
345
346 __rq_for_each_bio(bio, rq)
347 zero_fill_bio(bio);
1da177e4 348 break;
306df071 349 }
1da177e4 350 }
aa4d8616
CH
351
352 ret = 0;
353out_free_page:
354 __free_page(page);
355 return ret;
1da177e4
LT
356}
357
cf655d95
ML
358static int lo_discard(struct loop_device *lo, struct request *rq, loff_t pos)
359{
360 /*
361 * We use punch hole to reclaim the free space used by the
362 * image a.k.a. discard. However we do not support discard if
363 * encryption is enabled, because it may give an attacker
364 * useful information.
365 */
366 struct file *file = lo->lo_backing_file;
367 int mode = FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE;
368 int ret;
369
370 if ((!file->f_op->fallocate) || lo->lo_encrypt_key_size) {
371 ret = -EOPNOTSUPP;
372 goto out;
373 }
374
375 ret = file->f_op->fallocate(file, mode, pos, blk_rq_bytes(rq));
376 if (unlikely(ret && ret != -EINVAL && ret != -EOPNOTSUPP))
377 ret = -EIO;
378 out:
379 return ret;
380}
381
382static int lo_req_flush(struct loop_device *lo, struct request *rq)
383{
384 struct file *file = lo->lo_backing_file;
385 int ret = vfs_fsync(file, 0);
386 if (unlikely(ret && ret != -EINVAL))
387 ret = -EIO;
388
389 return ret;
390}
391
30112013 392static int do_req_filebacked(struct loop_device *lo, struct request *rq)
1da177e4
LT
393{
394 loff_t pos;
395 int ret;
396
30112013 397 pos = ((loff_t) blk_rq_pos(rq) << 9) + lo->lo_offset;
68db1961 398
30112013 399 if (rq->cmd_flags & REQ_WRITE) {
cf655d95
ML
400 if (rq->cmd_flags & REQ_FLUSH)
401 ret = lo_req_flush(lo, rq);
af65aa8e 402 else if (rq->cmd_flags & REQ_DISCARD)
cf655d95 403 ret = lo_discard(lo, rq, pos);
aa4d8616
CH
404 else if (lo->transfer)
405 ret = lo_write_transfer(lo, rq, pos);
af65aa8e 406 else
aa4d8616
CH
407 ret = lo_write_simple(lo, rq, pos);
408
409 } else {
410 if (lo->transfer)
411 ret = lo_read_transfer(lo, rq, pos);
412 else
413 ret = lo_read_simple(lo, rq, pos);
414 }
68db1961 415
1da177e4
LT
416 return ret;
417}
418
1da177e4
LT
419struct switch_request {
420 struct file *file;
421 struct completion wait;
422};
423
1da177e4 424/*
b5dd2f60 425 * Do the actual switch; called from the BIO completion routine
1da177e4 426 */
b5dd2f60 427static void do_loop_switch(struct loop_device *lo, struct switch_request *p)
1da177e4 428{
b5dd2f60
ML
429 struct file *file = p->file;
430 struct file *old_file = lo->lo_backing_file;
431 struct address_space *mapping;
35a82d1a 432
b5dd2f60
ML
433 /* if no new file, only flush of queued bios requested */
434 if (!file)
435 return;
1da177e4 436
b5dd2f60
ML
437 mapping = file->f_mapping;
438 mapping_set_gfp_mask(old_file->f_mapping, lo->old_gfp_mask);
439 lo->lo_backing_file = file;
440 lo->lo_blocksize = S_ISBLK(mapping->host->i_mode) ?
441 mapping->host->i_bdev->bd_block_size : PAGE_SIZE;
442 lo->old_gfp_mask = mapping_gfp_mask(mapping);
443 mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
1da177e4
LT
444}
445
446/*
447 * loop_switch performs the hard work of switching a backing store.
448 * First it needs to flush existing IO, it does this by sending a magic
449 * BIO down the pipe. The completion of this BIO does the actual switch.
450 */
451static int loop_switch(struct loop_device *lo, struct file *file)
452{
453 struct switch_request w;
b5dd2f60 454
1da177e4 455 w.file = file;
b5dd2f60
ML
456
457 /* freeze queue and wait for completion of scheduled requests */
458 blk_mq_freeze_queue(lo->lo_queue);
459
460 /* do the switch action */
461 do_loop_switch(lo, &w);
462
463 /* unfreeze */
464 blk_mq_unfreeze_queue(lo->lo_queue);
465
1da177e4
LT
466 return 0;
467}
468
14f27939
MB
469/*
470 * Helper to flush the IOs in loop, but keeping loop thread running
471 */
472static int loop_flush(struct loop_device *lo)
473{
14f27939
MB
474 return loop_switch(lo, NULL);
475}
476
1da177e4
LT
477/*
478 * loop_change_fd switched the backing store of a loopback device to
479 * a new file. This is useful for operating system installers to free up
480 * the original file and in High Availability environments to switch to
481 * an alternative location for the content in case of server meltdown.
482 * This can only work if the loop device is used read-only, and if the
483 * new backing store is the same size and type as the old backing store.
484 */
bb214884
AV
485static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
486 unsigned int arg)
1da177e4
LT
487{
488 struct file *file, *old_file;
489 struct inode *inode;
490 int error;
491
492 error = -ENXIO;
493 if (lo->lo_state != Lo_bound)
494 goto out;
495
496 /* the loop device has to be read-only */
497 error = -EINVAL;
498 if (!(lo->lo_flags & LO_FLAGS_READ_ONLY))
499 goto out;
500
501 error = -EBADF;
502 file = fget(arg);
503 if (!file)
504 goto out;
505
506 inode = file->f_mapping->host;
507 old_file = lo->lo_backing_file;
508
509 error = -EINVAL;
510
511 if (!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))
512 goto out_putf;
513
1da177e4
LT
514 /* size of the new backing store needs to be the same */
515 if (get_loop_size(lo, file) != get_loop_size(lo, old_file))
516 goto out_putf;
517
518 /* and ... switch */
519 error = loop_switch(lo, file);
520 if (error)
521 goto out_putf;
522
523 fput(old_file);
e03c8dd1 524 if (lo->lo_flags & LO_FLAGS_PARTSCAN)
476a4813 525 ioctl_by_bdev(bdev, BLKRRPART, 0);
1da177e4
LT
526 return 0;
527
528 out_putf:
529 fput(file);
530 out:
531 return error;
532}
533
534static inline int is_loop_device(struct file *file)
535{
536 struct inode *i = file->f_mapping->host;
537
538 return i && S_ISBLK(i->i_mode) && MAJOR(i->i_rdev) == LOOP_MAJOR;
539}
540
ee862730
MB
541/* loop sysfs attributes */
542
543static ssize_t loop_attr_show(struct device *dev, char *page,
544 ssize_t (*callback)(struct loop_device *, char *))
545{
34dd82af
KS
546 struct gendisk *disk = dev_to_disk(dev);
547 struct loop_device *lo = disk->private_data;
ee862730 548
34dd82af 549 return callback(lo, page);
ee862730
MB
550}
551
552#define LOOP_ATTR_RO(_name) \
553static ssize_t loop_attr_##_name##_show(struct loop_device *, char *); \
554static ssize_t loop_attr_do_show_##_name(struct device *d, \
555 struct device_attribute *attr, char *b) \
556{ \
557 return loop_attr_show(d, b, loop_attr_##_name##_show); \
558} \
559static struct device_attribute loop_attr_##_name = \
560 __ATTR(_name, S_IRUGO, loop_attr_do_show_##_name, NULL);
561
562static ssize_t loop_attr_backing_file_show(struct loop_device *lo, char *buf)
563{
564 ssize_t ret;
565 char *p = NULL;
566
05eb0f25 567 spin_lock_irq(&lo->lo_lock);
ee862730
MB
568 if (lo->lo_backing_file)
569 p = d_path(&lo->lo_backing_file->f_path, buf, PAGE_SIZE - 1);
05eb0f25 570 spin_unlock_irq(&lo->lo_lock);
ee862730
MB
571
572 if (IS_ERR_OR_NULL(p))
573 ret = PTR_ERR(p);
574 else {
575 ret = strlen(p);
576 memmove(buf, p, ret);
577 buf[ret++] = '\n';
578 buf[ret] = 0;
579 }
580
581 return ret;
582}
583
584static ssize_t loop_attr_offset_show(struct loop_device *lo, char *buf)
585{
586 return sprintf(buf, "%llu\n", (unsigned long long)lo->lo_offset);
587}
588
589static ssize_t loop_attr_sizelimit_show(struct loop_device *lo, char *buf)
590{
591 return sprintf(buf, "%llu\n", (unsigned long long)lo->lo_sizelimit);
592}
593
594static ssize_t loop_attr_autoclear_show(struct loop_device *lo, char *buf)
595{
596 int autoclear = (lo->lo_flags & LO_FLAGS_AUTOCLEAR);
597
598 return sprintf(buf, "%s\n", autoclear ? "1" : "0");
599}
600
e03c8dd1
KS
601static ssize_t loop_attr_partscan_show(struct loop_device *lo, char *buf)
602{
603 int partscan = (lo->lo_flags & LO_FLAGS_PARTSCAN);
604
605 return sprintf(buf, "%s\n", partscan ? "1" : "0");
606}
607
ee862730
MB
608LOOP_ATTR_RO(backing_file);
609LOOP_ATTR_RO(offset);
610LOOP_ATTR_RO(sizelimit);
611LOOP_ATTR_RO(autoclear);
e03c8dd1 612LOOP_ATTR_RO(partscan);
ee862730
MB
613
614static struct attribute *loop_attrs[] = {
615 &loop_attr_backing_file.attr,
616 &loop_attr_offset.attr,
617 &loop_attr_sizelimit.attr,
618 &loop_attr_autoclear.attr,
e03c8dd1 619 &loop_attr_partscan.attr,
ee862730
MB
620 NULL,
621};
622
623static struct attribute_group loop_attribute_group = {
624 .name = "loop",
625 .attrs= loop_attrs,
626};
627
628static int loop_sysfs_init(struct loop_device *lo)
629{
630 return sysfs_create_group(&disk_to_dev(lo->lo_disk)->kobj,
631 &loop_attribute_group);
632}
633
634static void loop_sysfs_exit(struct loop_device *lo)
635{
636 sysfs_remove_group(&disk_to_dev(lo->lo_disk)->kobj,
637 &loop_attribute_group);
638}
639
dfaa2ef6
LC
640static void loop_config_discard(struct loop_device *lo)
641{
642 struct file *file = lo->lo_backing_file;
643 struct inode *inode = file->f_mapping->host;
644 struct request_queue *q = lo->lo_queue;
645
646 /*
647 * We use punch hole to reclaim the free space used by the
12a64d2f 648 * image a.k.a. discard. However we do not support discard if
dfaa2ef6
LC
649 * encryption is enabled, because it may give an attacker
650 * useful information.
651 */
652 if ((!file->f_op->fallocate) ||
653 lo->lo_encrypt_key_size) {
654 q->limits.discard_granularity = 0;
655 q->limits.discard_alignment = 0;
656 q->limits.max_discard_sectors = 0;
657 q->limits.discard_zeroes_data = 0;
658 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
659 return;
660 }
661
662 q->limits.discard_granularity = inode->i_sb->s_blocksize;
dfaf3c03 663 q->limits.discard_alignment = 0;
dfaa2ef6
LC
664 q->limits.max_discard_sectors = UINT_MAX >> 9;
665 q->limits.discard_zeroes_data = 1;
666 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
667}
668
bb214884 669static int loop_set_fd(struct loop_device *lo, fmode_t mode,
1da177e4
LT
670 struct block_device *bdev, unsigned int arg)
671{
672 struct file *file, *f;
673 struct inode *inode;
674 struct address_space *mapping;
675 unsigned lo_blocksize;
676 int lo_flags = 0;
677 int error;
678 loff_t size;
679
680 /* This is safe, since we have a reference from open(). */
681 __module_get(THIS_MODULE);
682
683 error = -EBADF;
684 file = fget(arg);
685 if (!file)
686 goto out;
687
688 error = -EBUSY;
689 if (lo->lo_state != Lo_unbound)
690 goto out_putf;
691
692 /* Avoid recursion */
693 f = file;
694 while (is_loop_device(f)) {
695 struct loop_device *l;
696
bb214884 697 if (f->f_mapping->host->i_bdev == bdev)
1da177e4
LT
698 goto out_putf;
699
700 l = f->f_mapping->host->i_bdev->bd_disk->private_data;
701 if (l->lo_state == Lo_unbound) {
702 error = -EINVAL;
703 goto out_putf;
704 }
705 f = l->lo_backing_file;
706 }
707
708 mapping = file->f_mapping;
709 inode = mapping->host;
710
1da177e4 711 error = -EINVAL;
456be148
CH
712 if (!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))
713 goto out_putf;
1da177e4 714
456be148 715 if (!(file->f_mode & FMODE_WRITE) || !(mode & FMODE_WRITE) ||
283e7e5d 716 !file->f_op->write_iter)
456be148 717 lo_flags |= LO_FLAGS_READ_ONLY;
ba52de12 718
456be148
CH
719 lo_blocksize = S_ISBLK(inode->i_mode) ?
720 inode->i_bdev->bd_block_size : PAGE_SIZE;
1da177e4 721
456be148 722 error = -EFBIG;
1da177e4 723 size = get_loop_size(lo, file);
456be148 724 if ((loff_t)(sector_t)size != size)
1da177e4 725 goto out_putf;
f4aa4c7b
ML
726 error = -ENOMEM;
727 lo->wq = alloc_workqueue("kloopd%d",
4d4e41ae 728 WQ_MEM_RECLAIM | WQ_HIGHPRI | WQ_UNBOUND, 16,
f4aa4c7b
ML
729 lo->lo_number);
730 if (!lo->wq)
731 goto out_putf;
1da177e4 732
456be148 733 error = 0;
1da177e4
LT
734
735 set_device_ro(bdev, (lo_flags & LO_FLAGS_READ_ONLY) != 0);
736
737 lo->lo_blocksize = lo_blocksize;
738 lo->lo_device = bdev;
739 lo->lo_flags = lo_flags;
740 lo->lo_backing_file = file;
aa4d8616 741 lo->transfer = NULL;
1da177e4
LT
742 lo->ioctl = NULL;
743 lo->lo_sizelimit = 0;
744 lo->old_gfp_mask = mapping_gfp_mask(mapping);
745 mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
746
68db1961 747 if (!(lo_flags & LO_FLAGS_READ_ONLY) && file->f_op->fsync)
4913efe4 748 blk_queue_flush(lo->lo_queue, REQ_FLUSH);
68db1961 749
73285082 750 set_capacity(lo->lo_disk, size);
1da177e4 751 bd_set_size(bdev, size << 9);
ee862730 752 loop_sysfs_init(lo);
c3473c63
DZ
753 /* let user-space know about the new size */
754 kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, KOBJ_CHANGE);
1da177e4
LT
755
756 set_blocksize(bdev, lo_blocksize);
757
6c997918 758 lo->lo_state = Lo_bound;
e03c8dd1
KS
759 if (part_shift)
760 lo->lo_flags |= LO_FLAGS_PARTSCAN;
761 if (lo->lo_flags & LO_FLAGS_PARTSCAN)
476a4813 762 ioctl_by_bdev(bdev, BLKRRPART, 0);
c1681bf8
AP
763
764 /* Grab the block_device to prevent its destruction after we
765 * put /dev/loopXX inode. Later in loop_clr_fd() we bdput(bdev).
766 */
767 bdgrab(bdev);
1da177e4
LT
768 return 0;
769
770 out_putf:
771 fput(file);
772 out:
773 /* This is safe: open() is still holding a reference. */
774 module_put(THIS_MODULE);
775 return error;
776}
777
778static int
779loop_release_xfer(struct loop_device *lo)
780{
781 int err = 0;
782 struct loop_func_table *xfer = lo->lo_encryption;
783
784 if (xfer) {
785 if (xfer->release)
786 err = xfer->release(lo);
787 lo->transfer = NULL;
788 lo->lo_encryption = NULL;
789 module_put(xfer->owner);
790 }
791 return err;
792}
793
794static int
795loop_init_xfer(struct loop_device *lo, struct loop_func_table *xfer,
796 const struct loop_info64 *i)
797{
798 int err = 0;
799
800 if (xfer) {
801 struct module *owner = xfer->owner;
802
803 if (!try_module_get(owner))
804 return -EINVAL;
805 if (xfer->init)
806 err = xfer->init(lo, i);
807 if (err)
808 module_put(owner);
809 else
810 lo->lo_encryption = xfer;
811 }
812 return err;
813}
814
4c823cc3 815static int loop_clr_fd(struct loop_device *lo)
1da177e4
LT
816{
817 struct file *filp = lo->lo_backing_file;
b4e3ca1a 818 gfp_t gfp = lo->old_gfp_mask;
4c823cc3 819 struct block_device *bdev = lo->lo_device;
1da177e4
LT
820
821 if (lo->lo_state != Lo_bound)
822 return -ENXIO;
823
a1ecac3b
DC
824 /*
825 * If we've explicitly asked to tear down the loop device,
826 * and it has an elevated reference count, set it for auto-teardown when
827 * the last reference goes away. This stops $!~#$@ udev from
828 * preventing teardown because it decided that it needs to run blkid on
829 * the loopback device whenever they appear. xfstests is notorious for
830 * failing tests because blkid via udev races with a losetup
831 * <dev>/do something like mkfs/losetup -d <dev> causing the losetup -d
832 * command to fail with EBUSY.
833 */
f8933667 834 if (atomic_read(&lo->lo_refcnt) > 1) {
a1ecac3b
DC
835 lo->lo_flags |= LO_FLAGS_AUTOCLEAR;
836 mutex_unlock(&lo->lo_ctl_mutex);
837 return 0;
838 }
1da177e4
LT
839
840 if (filp == NULL)
841 return -EINVAL;
842
f8933667
ML
843 /* freeze request queue during the transition */
844 blk_mq_freeze_queue(lo->lo_queue);
845
1da177e4
LT
846 spin_lock_irq(&lo->lo_lock);
847 lo->lo_state = Lo_rundown;
1da177e4 848 lo->lo_backing_file = NULL;
05eb0f25 849 spin_unlock_irq(&lo->lo_lock);
1da177e4
LT
850
851 loop_release_xfer(lo);
852 lo->transfer = NULL;
853 lo->ioctl = NULL;
854 lo->lo_device = NULL;
855 lo->lo_encryption = NULL;
856 lo->lo_offset = 0;
857 lo->lo_sizelimit = 0;
858 lo->lo_encrypt_key_size = 0;
1da177e4
LT
859 memset(lo->lo_encrypt_key, 0, LO_KEY_SIZE);
860 memset(lo->lo_crypt_name, 0, LO_NAME_SIZE);
861 memset(lo->lo_file_name, 0, LO_NAME_SIZE);
c1681bf8
AP
862 if (bdev) {
863 bdput(bdev);
bb214884 864 invalidate_bdev(bdev);
c1681bf8 865 }
73285082 866 set_capacity(lo->lo_disk, 0);
51a0bb0c 867 loop_sysfs_exit(lo);
c3473c63 868 if (bdev) {
bb214884 869 bd_set_size(bdev, 0);
c3473c63
DZ
870 /* let user-space know about this change */
871 kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, KOBJ_CHANGE);
872 }
1da177e4
LT
873 mapping_set_gfp_mask(filp->f_mapping, gfp);
874 lo->lo_state = Lo_unbound;
1da177e4
LT
875 /* This is safe: open() is still holding a reference. */
876 module_put(THIS_MODULE);
f8933667
ML
877 blk_mq_unfreeze_queue(lo->lo_queue);
878
c2fccc1c
JA
879 if (lo->lo_flags & LO_FLAGS_PARTSCAN && bdev)
880 ioctl_by_bdev(bdev, BLKRRPART, 0);
e03c8dd1
KS
881 lo->lo_flags = 0;
882 if (!part_shift)
883 lo->lo_disk->flags |= GENHD_FL_NO_PART_SCAN;
f4aa4c7b
ML
884 destroy_workqueue(lo->wq);
885 lo->wq = NULL;
f028f3b2
NK
886 mutex_unlock(&lo->lo_ctl_mutex);
887 /*
888 * Need not hold lo_ctl_mutex to fput backing file.
889 * Calling fput holding lo_ctl_mutex triggers a circular
890 * lock dependency possibility warning as fput can take
891 * bd_mutex which is usually taken before lo_ctl_mutex.
892 */
893 fput(filp);
1da177e4
LT
894 return 0;
895}
896
897static int
898loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
899{
900 int err;
901 struct loop_func_table *xfer;
e4849737 902 kuid_t uid = current_uid();
1da177e4 903
b0fafa81 904 if (lo->lo_encrypt_key_size &&
e4849737 905 !uid_eq(lo->lo_key_owner, uid) &&
1da177e4
LT
906 !capable(CAP_SYS_ADMIN))
907 return -EPERM;
908 if (lo->lo_state != Lo_bound)
909 return -ENXIO;
910 if ((unsigned int) info->lo_encrypt_key_size > LO_KEY_SIZE)
911 return -EINVAL;
912
913 err = loop_release_xfer(lo);
914 if (err)
915 return err;
916
917 if (info->lo_encrypt_type) {
918 unsigned int type = info->lo_encrypt_type;
919
920 if (type >= MAX_LO_CRYPT)
921 return -EINVAL;
922 xfer = xfer_funcs[type];
923 if (xfer == NULL)
924 return -EINVAL;
925 } else
926 xfer = NULL;
927
928 err = loop_init_xfer(lo, xfer, info);
929 if (err)
930 return err;
931
932 if (lo->lo_offset != info->lo_offset ||
7b0576a3 933 lo->lo_sizelimit != info->lo_sizelimit)
7035b5df 934 if (figure_loop_size(lo, info->lo_offset, info->lo_sizelimit))
1da177e4 935 return -EFBIG;
541c742a 936
dfaa2ef6 937 loop_config_discard(lo);
1da177e4
LT
938
939 memcpy(lo->lo_file_name, info->lo_file_name, LO_NAME_SIZE);
940 memcpy(lo->lo_crypt_name, info->lo_crypt_name, LO_NAME_SIZE);
941 lo->lo_file_name[LO_NAME_SIZE-1] = 0;
942 lo->lo_crypt_name[LO_NAME_SIZE-1] = 0;
943
944 if (!xfer)
945 xfer = &none_funcs;
946 lo->transfer = xfer->transfer;
947 lo->ioctl = xfer->ioctl;
948
96c58655
DW
949 if ((lo->lo_flags & LO_FLAGS_AUTOCLEAR) !=
950 (info->lo_flags & LO_FLAGS_AUTOCLEAR))
951 lo->lo_flags ^= LO_FLAGS_AUTOCLEAR;
952
e03c8dd1
KS
953 if ((info->lo_flags & LO_FLAGS_PARTSCAN) &&
954 !(lo->lo_flags & LO_FLAGS_PARTSCAN)) {
955 lo->lo_flags |= LO_FLAGS_PARTSCAN;
956 lo->lo_disk->flags &= ~GENHD_FL_NO_PART_SCAN;
957 ioctl_by_bdev(lo->lo_device, BLKRRPART, 0);
958 }
959
1da177e4
LT
960 lo->lo_encrypt_key_size = info->lo_encrypt_key_size;
961 lo->lo_init[0] = info->lo_init[0];
962 lo->lo_init[1] = info->lo_init[1];
963 if (info->lo_encrypt_key_size) {
964 memcpy(lo->lo_encrypt_key, info->lo_encrypt_key,
965 info->lo_encrypt_key_size);
b0fafa81 966 lo->lo_key_owner = uid;
aa4d8616 967 }
1da177e4
LT
968
969 return 0;
970}
971
972static int
973loop_get_status(struct loop_device *lo, struct loop_info64 *info)
974{
975 struct file *file = lo->lo_backing_file;
976 struct kstat stat;
977 int error;
978
979 if (lo->lo_state != Lo_bound)
980 return -ENXIO;
3dadecce 981 error = vfs_getattr(&file->f_path, &stat);
1da177e4
LT
982 if (error)
983 return error;
984 memset(info, 0, sizeof(*info));
985 info->lo_number = lo->lo_number;
986 info->lo_device = huge_encode_dev(stat.dev);
987 info->lo_inode = stat.ino;
988 info->lo_rdevice = huge_encode_dev(lo->lo_device ? stat.rdev : stat.dev);
989 info->lo_offset = lo->lo_offset;
990 info->lo_sizelimit = lo->lo_sizelimit;
991 info->lo_flags = lo->lo_flags;
992 memcpy(info->lo_file_name, lo->lo_file_name, LO_NAME_SIZE);
993 memcpy(info->lo_crypt_name, lo->lo_crypt_name, LO_NAME_SIZE);
994 info->lo_encrypt_type =
995 lo->lo_encryption ? lo->lo_encryption->number : 0;
996 if (lo->lo_encrypt_key_size && capable(CAP_SYS_ADMIN)) {
997 info->lo_encrypt_key_size = lo->lo_encrypt_key_size;
998 memcpy(info->lo_encrypt_key, lo->lo_encrypt_key,
999 lo->lo_encrypt_key_size);
1000 }
1001 return 0;
1002}
1003
1004static void
1005loop_info64_from_old(const struct loop_info *info, struct loop_info64 *info64)
1006{
1007 memset(info64, 0, sizeof(*info64));
1008 info64->lo_number = info->lo_number;
1009 info64->lo_device = info->lo_device;
1010 info64->lo_inode = info->lo_inode;
1011 info64->lo_rdevice = info->lo_rdevice;
1012 info64->lo_offset = info->lo_offset;
1013 info64->lo_sizelimit = 0;
1014 info64->lo_encrypt_type = info->lo_encrypt_type;
1015 info64->lo_encrypt_key_size = info->lo_encrypt_key_size;
1016 info64->lo_flags = info->lo_flags;
1017 info64->lo_init[0] = info->lo_init[0];
1018 info64->lo_init[1] = info->lo_init[1];
1019 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1020 memcpy(info64->lo_crypt_name, info->lo_name, LO_NAME_SIZE);
1021 else
1022 memcpy(info64->lo_file_name, info->lo_name, LO_NAME_SIZE);
1023 memcpy(info64->lo_encrypt_key, info->lo_encrypt_key, LO_KEY_SIZE);
1024}
1025
1026static int
1027loop_info64_to_old(const struct loop_info64 *info64, struct loop_info *info)
1028{
1029 memset(info, 0, sizeof(*info));
1030 info->lo_number = info64->lo_number;
1031 info->lo_device = info64->lo_device;
1032 info->lo_inode = info64->lo_inode;
1033 info->lo_rdevice = info64->lo_rdevice;
1034 info->lo_offset = info64->lo_offset;
1035 info->lo_encrypt_type = info64->lo_encrypt_type;
1036 info->lo_encrypt_key_size = info64->lo_encrypt_key_size;
1037 info->lo_flags = info64->lo_flags;
1038 info->lo_init[0] = info64->lo_init[0];
1039 info->lo_init[1] = info64->lo_init[1];
1040 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1041 memcpy(info->lo_name, info64->lo_crypt_name, LO_NAME_SIZE);
1042 else
1043 memcpy(info->lo_name, info64->lo_file_name, LO_NAME_SIZE);
1044 memcpy(info->lo_encrypt_key, info64->lo_encrypt_key, LO_KEY_SIZE);
1045
1046 /* error in case values were truncated */
1047 if (info->lo_device != info64->lo_device ||
1048 info->lo_rdevice != info64->lo_rdevice ||
1049 info->lo_inode != info64->lo_inode ||
1050 info->lo_offset != info64->lo_offset)
1051 return -EOVERFLOW;
1052
1053 return 0;
1054}
1055
1056static int
1057loop_set_status_old(struct loop_device *lo, const struct loop_info __user *arg)
1058{
1059 struct loop_info info;
1060 struct loop_info64 info64;
1061
1062 if (copy_from_user(&info, arg, sizeof (struct loop_info)))
1063 return -EFAULT;
1064 loop_info64_from_old(&info, &info64);
1065 return loop_set_status(lo, &info64);
1066}
1067
1068static int
1069loop_set_status64(struct loop_device *lo, const struct loop_info64 __user *arg)
1070{
1071 struct loop_info64 info64;
1072
1073 if (copy_from_user(&info64, arg, sizeof (struct loop_info64)))
1074 return -EFAULT;
1075 return loop_set_status(lo, &info64);
1076}
1077
1078static int
1079loop_get_status_old(struct loop_device *lo, struct loop_info __user *arg) {
1080 struct loop_info info;
1081 struct loop_info64 info64;
1082 int err = 0;
1083
1084 if (!arg)
1085 err = -EINVAL;
1086 if (!err)
1087 err = loop_get_status(lo, &info64);
1088 if (!err)
1089 err = loop_info64_to_old(&info64, &info);
1090 if (!err && copy_to_user(arg, &info, sizeof(info)))
1091 err = -EFAULT;
1092
1093 return err;
1094}
1095
1096static int
1097loop_get_status64(struct loop_device *lo, struct loop_info64 __user *arg) {
1098 struct loop_info64 info64;
1099 int err = 0;
1100
1101 if (!arg)
1102 err = -EINVAL;
1103 if (!err)
1104 err = loop_get_status(lo, &info64);
1105 if (!err && copy_to_user(arg, &info64, sizeof(info64)))
1106 err = -EFAULT;
1107
1108 return err;
1109}
1110
53d66608
O
1111static int loop_set_capacity(struct loop_device *lo, struct block_device *bdev)
1112{
53d66608 1113 if (unlikely(lo->lo_state != Lo_bound))
7b0576a3 1114 return -ENXIO;
53d66608 1115
7b0576a3 1116 return figure_loop_size(lo, lo->lo_offset, lo->lo_sizelimit);
53d66608
O
1117}
1118
bb214884 1119static int lo_ioctl(struct block_device *bdev, fmode_t mode,
1da177e4
LT
1120 unsigned int cmd, unsigned long arg)
1121{
bb214884 1122 struct loop_device *lo = bdev->bd_disk->private_data;
1da177e4
LT
1123 int err;
1124
f028f3b2 1125 mutex_lock_nested(&lo->lo_ctl_mutex, 1);
1da177e4
LT
1126 switch (cmd) {
1127 case LOOP_SET_FD:
bb214884 1128 err = loop_set_fd(lo, mode, bdev, arg);
1da177e4
LT
1129 break;
1130 case LOOP_CHANGE_FD:
bb214884 1131 err = loop_change_fd(lo, bdev, arg);
1da177e4
LT
1132 break;
1133 case LOOP_CLR_FD:
f028f3b2 1134 /* loop_clr_fd would have unlocked lo_ctl_mutex on success */
4c823cc3 1135 err = loop_clr_fd(lo);
f028f3b2
NK
1136 if (!err)
1137 goto out_unlocked;
1da177e4
LT
1138 break;
1139 case LOOP_SET_STATUS:
7035b5df
DM
1140 err = -EPERM;
1141 if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN))
1142 err = loop_set_status_old(lo,
1143 (struct loop_info __user *)arg);
1da177e4
LT
1144 break;
1145 case LOOP_GET_STATUS:
1146 err = loop_get_status_old(lo, (struct loop_info __user *) arg);
1147 break;
1148 case LOOP_SET_STATUS64:
7035b5df
DM
1149 err = -EPERM;
1150 if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN))
1151 err = loop_set_status64(lo,
1152 (struct loop_info64 __user *) arg);
1da177e4
LT
1153 break;
1154 case LOOP_GET_STATUS64:
1155 err = loop_get_status64(lo, (struct loop_info64 __user *) arg);
1156 break;
53d66608
O
1157 case LOOP_SET_CAPACITY:
1158 err = -EPERM;
1159 if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN))
1160 err = loop_set_capacity(lo, bdev);
1161 break;
1da177e4
LT
1162 default:
1163 err = lo->ioctl ? lo->ioctl(lo, cmd, arg) : -EINVAL;
1164 }
f85221dd 1165 mutex_unlock(&lo->lo_ctl_mutex);
f028f3b2
NK
1166
1167out_unlocked:
1da177e4
LT
1168 return err;
1169}
1170
863d5b82
DH
1171#ifdef CONFIG_COMPAT
1172struct compat_loop_info {
1173 compat_int_t lo_number; /* ioctl r/o */
1174 compat_dev_t lo_device; /* ioctl r/o */
1175 compat_ulong_t lo_inode; /* ioctl r/o */
1176 compat_dev_t lo_rdevice; /* ioctl r/o */
1177 compat_int_t lo_offset;
1178 compat_int_t lo_encrypt_type;
1179 compat_int_t lo_encrypt_key_size; /* ioctl w/o */
1180 compat_int_t lo_flags; /* ioctl r/o */
1181 char lo_name[LO_NAME_SIZE];
1182 unsigned char lo_encrypt_key[LO_KEY_SIZE]; /* ioctl w/o */
1183 compat_ulong_t lo_init[2];
1184 char reserved[4];
1185};
1186
1187/*
1188 * Transfer 32-bit compatibility structure in userspace to 64-bit loop info
1189 * - noinlined to reduce stack space usage in main part of driver
1190 */
1191static noinline int
ba674cfc 1192loop_info64_from_compat(const struct compat_loop_info __user *arg,
863d5b82
DH
1193 struct loop_info64 *info64)
1194{
1195 struct compat_loop_info info;
1196
1197 if (copy_from_user(&info, arg, sizeof(info)))
1198 return -EFAULT;
1199
1200 memset(info64, 0, sizeof(*info64));
1201 info64->lo_number = info.lo_number;
1202 info64->lo_device = info.lo_device;
1203 info64->lo_inode = info.lo_inode;
1204 info64->lo_rdevice = info.lo_rdevice;
1205 info64->lo_offset = info.lo_offset;
1206 info64->lo_sizelimit = 0;
1207 info64->lo_encrypt_type = info.lo_encrypt_type;
1208 info64->lo_encrypt_key_size = info.lo_encrypt_key_size;
1209 info64->lo_flags = info.lo_flags;
1210 info64->lo_init[0] = info.lo_init[0];
1211 info64->lo_init[1] = info.lo_init[1];
1212 if (info.lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1213 memcpy(info64->lo_crypt_name, info.lo_name, LO_NAME_SIZE);
1214 else
1215 memcpy(info64->lo_file_name, info.lo_name, LO_NAME_SIZE);
1216 memcpy(info64->lo_encrypt_key, info.lo_encrypt_key, LO_KEY_SIZE);
1217 return 0;
1218}
1219
1220/*
1221 * Transfer 64-bit loop info to 32-bit compatibility structure in userspace
1222 * - noinlined to reduce stack space usage in main part of driver
1223 */
1224static noinline int
1225loop_info64_to_compat(const struct loop_info64 *info64,
1226 struct compat_loop_info __user *arg)
1227{
1228 struct compat_loop_info info;
1229
1230 memset(&info, 0, sizeof(info));
1231 info.lo_number = info64->lo_number;
1232 info.lo_device = info64->lo_device;
1233 info.lo_inode = info64->lo_inode;
1234 info.lo_rdevice = info64->lo_rdevice;
1235 info.lo_offset = info64->lo_offset;
1236 info.lo_encrypt_type = info64->lo_encrypt_type;
1237 info.lo_encrypt_key_size = info64->lo_encrypt_key_size;
1238 info.lo_flags = info64->lo_flags;
1239 info.lo_init[0] = info64->lo_init[0];
1240 info.lo_init[1] = info64->lo_init[1];
1241 if (info.lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1242 memcpy(info.lo_name, info64->lo_crypt_name, LO_NAME_SIZE);
1243 else
1244 memcpy(info.lo_name, info64->lo_file_name, LO_NAME_SIZE);
1245 memcpy(info.lo_encrypt_key, info64->lo_encrypt_key, LO_KEY_SIZE);
1246
1247 /* error in case values were truncated */
1248 if (info.lo_device != info64->lo_device ||
1249 info.lo_rdevice != info64->lo_rdevice ||
1250 info.lo_inode != info64->lo_inode ||
1251 info.lo_offset != info64->lo_offset ||
1252 info.lo_init[0] != info64->lo_init[0] ||
1253 info.lo_init[1] != info64->lo_init[1])
1254 return -EOVERFLOW;
1255
1256 if (copy_to_user(arg, &info, sizeof(info)))
1257 return -EFAULT;
1258 return 0;
1259}
1260
1261static int
1262loop_set_status_compat(struct loop_device *lo,
1263 const struct compat_loop_info __user *arg)
1264{
1265 struct loop_info64 info64;
1266 int ret;
1267
1268 ret = loop_info64_from_compat(arg, &info64);
1269 if (ret < 0)
1270 return ret;
1271 return loop_set_status(lo, &info64);
1272}
1273
1274static int
1275loop_get_status_compat(struct loop_device *lo,
1276 struct compat_loop_info __user *arg)
1277{
1278 struct loop_info64 info64;
1279 int err = 0;
1280
1281 if (!arg)
1282 err = -EINVAL;
1283 if (!err)
1284 err = loop_get_status(lo, &info64);
1285 if (!err)
1286 err = loop_info64_to_compat(&info64, arg);
1287 return err;
1288}
1289
bb214884
AV
1290static int lo_compat_ioctl(struct block_device *bdev, fmode_t mode,
1291 unsigned int cmd, unsigned long arg)
863d5b82 1292{
bb214884 1293 struct loop_device *lo = bdev->bd_disk->private_data;
863d5b82
DH
1294 int err;
1295
863d5b82
DH
1296 switch(cmd) {
1297 case LOOP_SET_STATUS:
1298 mutex_lock(&lo->lo_ctl_mutex);
1299 err = loop_set_status_compat(
1300 lo, (const struct compat_loop_info __user *) arg);
1301 mutex_unlock(&lo->lo_ctl_mutex);
1302 break;
1303 case LOOP_GET_STATUS:
1304 mutex_lock(&lo->lo_ctl_mutex);
1305 err = loop_get_status_compat(
1306 lo, (struct compat_loop_info __user *) arg);
1307 mutex_unlock(&lo->lo_ctl_mutex);
1308 break;
53d66608 1309 case LOOP_SET_CAPACITY:
863d5b82
DH
1310 case LOOP_CLR_FD:
1311 case LOOP_GET_STATUS64:
1312 case LOOP_SET_STATUS64:
1313 arg = (unsigned long) compat_ptr(arg);
1314 case LOOP_SET_FD:
1315 case LOOP_CHANGE_FD:
bb214884 1316 err = lo_ioctl(bdev, mode, cmd, arg);
863d5b82
DH
1317 break;
1318 default:
1319 err = -ENOIOCTLCMD;
1320 break;
1321 }
863d5b82
DH
1322 return err;
1323}
1324#endif
1325
bb214884 1326static int lo_open(struct block_device *bdev, fmode_t mode)
1da177e4 1327{
770fe30a
KS
1328 struct loop_device *lo;
1329 int err = 0;
1330
1331 mutex_lock(&loop_index_mutex);
1332 lo = bdev->bd_disk->private_data;
1333 if (!lo) {
1334 err = -ENXIO;
1335 goto out;
1336 }
1da177e4 1337
f8933667 1338 atomic_inc(&lo->lo_refcnt);
770fe30a
KS
1339out:
1340 mutex_unlock(&loop_index_mutex);
1341 return err;
1da177e4
LT
1342}
1343
db2a144b 1344static void lo_release(struct gendisk *disk, fmode_t mode)
1da177e4 1345{
bb214884 1346 struct loop_device *lo = disk->private_data;
ffcd7dca 1347 int err;
1da177e4 1348
f8933667
ML
1349 if (atomic_dec_return(&lo->lo_refcnt))
1350 return;
14f27939 1351
f8933667 1352 mutex_lock(&lo->lo_ctl_mutex);
14f27939
MB
1353 if (lo->lo_flags & LO_FLAGS_AUTOCLEAR) {
1354 /*
1355 * In autoclear mode, stop the loop thread
1356 * and remove configuration after last close.
1357 */
4c823cc3 1358 err = loop_clr_fd(lo);
ffcd7dca 1359 if (!err)
db2a144b 1360 return;
14f27939
MB
1361 } else {
1362 /*
1363 * Otherwise keep thread (if running) and config,
1364 * but flush possible ongoing bios in thread.
1365 */
1366 loop_flush(lo);
1367 }
96c58655 1368
14f27939 1369out:
f85221dd 1370 mutex_unlock(&lo->lo_ctl_mutex);
1da177e4
LT
1371}
1372
83d5cde4 1373static const struct block_device_operations lo_fops = {
1da177e4 1374 .owner = THIS_MODULE,
bb214884
AV
1375 .open = lo_open,
1376 .release = lo_release,
1377 .ioctl = lo_ioctl,
863d5b82 1378#ifdef CONFIG_COMPAT
bb214884 1379 .compat_ioctl = lo_compat_ioctl,
863d5b82 1380#endif
1da177e4
LT
1381};
1382
1383/*
1384 * And now the modules code and kernel interface.
1385 */
73285082 1386static int max_loop;
ac04fee0 1387module_param(max_loop, int, S_IRUGO);
a47653fc 1388MODULE_PARM_DESC(max_loop, "Maximum number of loop devices");
ac04fee0 1389module_param(max_part, int, S_IRUGO);
476a4813 1390MODULE_PARM_DESC(max_part, "Maximum number of partitions per loop device");
1da177e4
LT
1391MODULE_LICENSE("GPL");
1392MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR);
1393
1394int loop_register_transfer(struct loop_func_table *funcs)
1395{
1396 unsigned int n = funcs->number;
1397
1398 if (n >= MAX_LO_CRYPT || xfer_funcs[n])
1399 return -EINVAL;
1400 xfer_funcs[n] = funcs;
1401 return 0;
1402}
1403
34dd82af
KS
1404static int unregister_transfer_cb(int id, void *ptr, void *data)
1405{
1406 struct loop_device *lo = ptr;
1407 struct loop_func_table *xfer = data;
1408
1409 mutex_lock(&lo->lo_ctl_mutex);
1410 if (lo->lo_encryption == xfer)
1411 loop_release_xfer(lo);
1412 mutex_unlock(&lo->lo_ctl_mutex);
1413 return 0;
1414}
1415
1da177e4
LT
1416int loop_unregister_transfer(int number)
1417{
1418 unsigned int n = number;
1da177e4
LT
1419 struct loop_func_table *xfer;
1420
1421 if (n == 0 || n >= MAX_LO_CRYPT || (xfer = xfer_funcs[n]) == NULL)
1422 return -EINVAL;
1423
1424 xfer_funcs[n] = NULL;
34dd82af 1425 idr_for_each(&loop_index_idr, &unregister_transfer_cb, xfer);
1da177e4
LT
1426 return 0;
1427}
1428
1429EXPORT_SYMBOL(loop_register_transfer);
1430EXPORT_SYMBOL(loop_unregister_transfer);
1431
b5dd2f60
ML
1432static int loop_queue_rq(struct blk_mq_hw_ctx *hctx,
1433 const struct blk_mq_queue_data *bd)
1434{
1435 struct loop_cmd *cmd = blk_mq_rq_to_pdu(bd->rq);
f4aa4c7b 1436 struct loop_device *lo = cmd->rq->q->queuedata;
b5dd2f60
ML
1437
1438 blk_mq_start_request(bd->rq);
1439
f4aa4c7b
ML
1440 if (lo->lo_state != Lo_bound)
1441 return -EIO;
1442
b5dd2f60
ML
1443 if (cmd->rq->cmd_flags & REQ_WRITE) {
1444 struct loop_device *lo = cmd->rq->q->queuedata;
1445 bool need_sched = true;
1446
1447 spin_lock_irq(&lo->lo_lock);
1448 if (lo->write_started)
1449 need_sched = false;
1450 else
1451 lo->write_started = true;
1452 list_add_tail(&cmd->list, &lo->write_cmd_head);
1453 spin_unlock_irq(&lo->lo_lock);
1454
1455 if (need_sched)
f4aa4c7b 1456 queue_work(lo->wq, &lo->write_work);
b5dd2f60 1457 } else {
f4aa4c7b 1458 queue_work(lo->wq, &cmd->read_work);
b5dd2f60
ML
1459 }
1460
1461 return BLK_MQ_RQ_QUEUE_OK;
1462}
1463
1464static void loop_handle_cmd(struct loop_cmd *cmd)
1465{
1466 const bool write = cmd->rq->cmd_flags & REQ_WRITE;
1467 struct loop_device *lo = cmd->rq->q->queuedata;
1468 int ret = -EIO;
b5dd2f60 1469
b5dd2f60
ML
1470 if (write && (lo->lo_flags & LO_FLAGS_READ_ONLY))
1471 goto failed;
1472
30112013 1473 ret = do_req_filebacked(lo, cmd->rq);
b5dd2f60
ML
1474
1475 failed:
1476 if (ret)
1477 cmd->rq->errors = -EIO;
1478 blk_mq_complete_request(cmd->rq);
1479}
1480
1481static void loop_queue_write_work(struct work_struct *work)
1482{
1483 struct loop_device *lo =
1484 container_of(work, struct loop_device, write_work);
1485 LIST_HEAD(cmd_list);
1486
1487 spin_lock_irq(&lo->lo_lock);
1488 repeat:
1489 list_splice_init(&lo->write_cmd_head, &cmd_list);
1490 spin_unlock_irq(&lo->lo_lock);
1491
1492 while (!list_empty(&cmd_list)) {
1493 struct loop_cmd *cmd = list_first_entry(&cmd_list,
1494 struct loop_cmd, list);
1495 list_del_init(&cmd->list);
1496 loop_handle_cmd(cmd);
1497 }
1498
1499 spin_lock_irq(&lo->lo_lock);
1500 if (!list_empty(&lo->write_cmd_head))
1501 goto repeat;
1502 lo->write_started = false;
1503 spin_unlock_irq(&lo->lo_lock);
1504}
1505
1506static void loop_queue_read_work(struct work_struct *work)
1507{
1508 struct loop_cmd *cmd =
1509 container_of(work, struct loop_cmd, read_work);
1510
1511 loop_handle_cmd(cmd);
1512}
1513
1514static int loop_init_request(void *data, struct request *rq,
1515 unsigned int hctx_idx, unsigned int request_idx,
1516 unsigned int numa_node)
1517{
1518 struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
1519
1520 cmd->rq = rq;
1521 INIT_WORK(&cmd->read_work, loop_queue_read_work);
1522
1523 return 0;
1524}
1525
1526static struct blk_mq_ops loop_mq_ops = {
1527 .queue_rq = loop_queue_rq,
1528 .map_queue = blk_mq_map_queue,
1529 .init_request = loop_init_request,
1530};
1531
34dd82af 1532static int loop_add(struct loop_device **l, int i)
73285082
KC
1533{
1534 struct loop_device *lo;
1535 struct gendisk *disk;
34dd82af 1536 int err;
73285082 1537
68d740d7 1538 err = -ENOMEM;
73285082 1539 lo = kzalloc(sizeof(*lo), GFP_KERNEL);
68d740d7 1540 if (!lo)
73285082 1541 goto out;
34dd82af 1542
ef7e7c82
MP
1543 lo->lo_state = Lo_unbound;
1544
c718aa65 1545 /* allocate id, if @id >= 0, we're requesting that specific id */
34dd82af 1546 if (i >= 0) {
c718aa65
TH
1547 err = idr_alloc(&loop_index_idr, lo, i, i + 1, GFP_KERNEL);
1548 if (err == -ENOSPC)
34dd82af 1549 err = -EEXIST;
34dd82af 1550 } else {
c718aa65 1551 err = idr_alloc(&loop_index_idr, lo, 0, 0, GFP_KERNEL);
34dd82af
KS
1552 }
1553 if (err < 0)
1554 goto out_free_dev;
c718aa65 1555 i = err;
73285082 1556
183cfb57 1557 err = -ENOMEM;
b5dd2f60
ML
1558 lo->tag_set.ops = &loop_mq_ops;
1559 lo->tag_set.nr_hw_queues = 1;
1560 lo->tag_set.queue_depth = 128;
1561 lo->tag_set.numa_node = NUMA_NO_NODE;
1562 lo->tag_set.cmd_size = sizeof(struct loop_cmd);
1563 lo->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
1564 lo->tag_set.driver_data = lo;
1565
1566 err = blk_mq_alloc_tag_set(&lo->tag_set);
1567 if (err)
3ec981e3 1568 goto out_free_idr;
73285082 1569
b5dd2f60
ML
1570 lo->lo_queue = blk_mq_init_queue(&lo->tag_set);
1571 if (IS_ERR_OR_NULL(lo->lo_queue)) {
1572 err = PTR_ERR(lo->lo_queue);
1573 goto out_cleanup_tags;
1574 }
ef7e7c82
MP
1575 lo->lo_queue->queuedata = lo;
1576
b5dd2f60
ML
1577 INIT_LIST_HEAD(&lo->write_cmd_head);
1578 INIT_WORK(&lo->write_work, loop_queue_write_work);
1579
476a4813 1580 disk = lo->lo_disk = alloc_disk(1 << part_shift);
73285082
KC
1581 if (!disk)
1582 goto out_free_queue;
1583
e03c8dd1
KS
1584 /*
1585 * Disable partition scanning by default. The in-kernel partition
1586 * scanning can be requested individually per-device during its
1587 * setup. Userspace can always add and remove partitions from all
1588 * devices. The needed partition minors are allocated from the
1589 * extended minor space, the main loop device numbers will continue
1590 * to match the loop minors, regardless of the number of partitions
1591 * used.
1592 *
1593 * If max_part is given, partition scanning is globally enabled for
1594 * all loop devices. The minors for the main loop devices will be
1595 * multiples of max_part.
1596 *
1597 * Note: Global-for-all-devices, set-only-at-init, read-only module
1598 * parameteters like 'max_loop' and 'max_part' make things needlessly
1599 * complicated, are too static, inflexible and may surprise
1600 * userspace tools. Parameters like this in general should be avoided.
1601 */
1602 if (!part_shift)
1603 disk->flags |= GENHD_FL_NO_PART_SCAN;
1604 disk->flags |= GENHD_FL_EXT_DEVT;
73285082 1605 mutex_init(&lo->lo_ctl_mutex);
f8933667 1606 atomic_set(&lo->lo_refcnt, 0);
73285082 1607 lo->lo_number = i;
73285082
KC
1608 spin_lock_init(&lo->lo_lock);
1609 disk->major = LOOP_MAJOR;
476a4813 1610 disk->first_minor = i << part_shift;
73285082
KC
1611 disk->fops = &lo_fops;
1612 disk->private_data = lo;
1613 disk->queue = lo->lo_queue;
1614 sprintf(disk->disk_name, "loop%d", i);
34dd82af
KS
1615 add_disk(disk);
1616 *l = lo;
1617 return lo->lo_number;
73285082
KC
1618
1619out_free_queue:
1620 blk_cleanup_queue(lo->lo_queue);
b5dd2f60
ML
1621out_cleanup_tags:
1622 blk_mq_free_tag_set(&lo->tag_set);
3ec981e3
MP
1623out_free_idr:
1624 idr_remove(&loop_index_idr, i);
73285082
KC
1625out_free_dev:
1626 kfree(lo);
1627out:
34dd82af 1628 return err;
73285082
KC
1629}
1630
34dd82af 1631static void loop_remove(struct loop_device *lo)
1da177e4 1632{
34dd82af 1633 del_gendisk(lo->lo_disk);
73285082 1634 blk_cleanup_queue(lo->lo_queue);
b5dd2f60 1635 blk_mq_free_tag_set(&lo->tag_set);
73285082 1636 put_disk(lo->lo_disk);
73285082
KC
1637 kfree(lo);
1638}
1da177e4 1639
770fe30a
KS
1640static int find_free_cb(int id, void *ptr, void *data)
1641{
1642 struct loop_device *lo = ptr;
1643 struct loop_device **l = data;
1644
1645 if (lo->lo_state == Lo_unbound) {
1646 *l = lo;
1647 return 1;
1648 }
1649 return 0;
1650}
1651
34dd82af 1652static int loop_lookup(struct loop_device **l, int i)
a47653fc
KC
1653{
1654 struct loop_device *lo;
34dd82af 1655 int ret = -ENODEV;
a47653fc 1656
770fe30a
KS
1657 if (i < 0) {
1658 int err;
1659
1660 err = idr_for_each(&loop_index_idr, &find_free_cb, &lo);
1661 if (err == 1) {
1662 *l = lo;
1663 ret = lo->lo_number;
1664 }
1665 goto out;
a47653fc
KC
1666 }
1667
770fe30a 1668 /* lookup and return a specific i */
34dd82af 1669 lo = idr_find(&loop_index_idr, i);
a47653fc 1670 if (lo) {
34dd82af
KS
1671 *l = lo;
1672 ret = lo->lo_number;
a47653fc 1673 }
770fe30a 1674out:
34dd82af 1675 return ret;
a47653fc
KC
1676}
1677
73285082
KC
1678static struct kobject *loop_probe(dev_t dev, int *part, void *data)
1679{
705962cc 1680 struct loop_device *lo;
07002e99 1681 struct kobject *kobj;
34dd82af 1682 int err;
73285082 1683
34dd82af
KS
1684 mutex_lock(&loop_index_mutex);
1685 err = loop_lookup(&lo, MINOR(dev) >> part_shift);
1686 if (err < 0)
1687 err = loop_add(&lo, MINOR(dev) >> part_shift);
1688 if (err < 0)
a207f593 1689 kobj = NULL;
34dd82af
KS
1690 else
1691 kobj = get_disk(lo->lo_disk);
1692 mutex_unlock(&loop_index_mutex);
73285082
KC
1693
1694 *part = 0;
07002e99 1695 return kobj;
73285082
KC
1696}
1697
770fe30a
KS
1698static long loop_control_ioctl(struct file *file, unsigned int cmd,
1699 unsigned long parm)
1700{
1701 struct loop_device *lo;
1702 int ret = -ENOSYS;
1703
1704 mutex_lock(&loop_index_mutex);
1705 switch (cmd) {
1706 case LOOP_CTL_ADD:
1707 ret = loop_lookup(&lo, parm);
1708 if (ret >= 0) {
1709 ret = -EEXIST;
1710 break;
1711 }
1712 ret = loop_add(&lo, parm);
1713 break;
1714 case LOOP_CTL_REMOVE:
1715 ret = loop_lookup(&lo, parm);
1716 if (ret < 0)
1717 break;
1718 mutex_lock(&lo->lo_ctl_mutex);
1719 if (lo->lo_state != Lo_unbound) {
1720 ret = -EBUSY;
1721 mutex_unlock(&lo->lo_ctl_mutex);
1722 break;
1723 }
f8933667 1724 if (atomic_read(&lo->lo_refcnt) > 0) {
770fe30a
KS
1725 ret = -EBUSY;
1726 mutex_unlock(&lo->lo_ctl_mutex);
1727 break;
1728 }
1729 lo->lo_disk->private_data = NULL;
1730 mutex_unlock(&lo->lo_ctl_mutex);
1731 idr_remove(&loop_index_idr, lo->lo_number);
1732 loop_remove(lo);
1733 break;
1734 case LOOP_CTL_GET_FREE:
1735 ret = loop_lookup(&lo, -1);
1736 if (ret >= 0)
1737 break;
1738 ret = loop_add(&lo, -1);
1739 }
1740 mutex_unlock(&loop_index_mutex);
1741
1742 return ret;
1743}
1744
1745static const struct file_operations loop_ctl_fops = {
1746 .open = nonseekable_open,
1747 .unlocked_ioctl = loop_control_ioctl,
1748 .compat_ioctl = loop_control_ioctl,
1749 .owner = THIS_MODULE,
1750 .llseek = noop_llseek,
1751};
1752
1753static struct miscdevice loop_misc = {
1754 .minor = LOOP_CTRL_MINOR,
1755 .name = "loop-control",
1756 .fops = &loop_ctl_fops,
1757};
1758
1759MODULE_ALIAS_MISCDEV(LOOP_CTRL_MINOR);
1760MODULE_ALIAS("devname:loop-control");
1761
73285082
KC
1762static int __init loop_init(void)
1763{
a47653fc
KC
1764 int i, nr;
1765 unsigned long range;
34dd82af 1766 struct loop_device *lo;
770fe30a 1767 int err;
a47653fc 1768
770fe30a
KS
1769 err = misc_register(&loop_misc);
1770 if (err < 0)
1771 return err;
476a4813
LV
1772
1773 part_shift = 0;
ac04fee0 1774 if (max_part > 0) {
476a4813
LV
1775 part_shift = fls(max_part);
1776
ac04fee0
NK
1777 /*
1778 * Adjust max_part according to part_shift as it is exported
1779 * to user space so that user can decide correct minor number
1780 * if [s]he want to create more devices.
1781 *
1782 * Note that -1 is required because partition 0 is reserved
1783 * for the whole disk.
1784 */
1785 max_part = (1UL << part_shift) - 1;
1786 }
1787
b1a66504
GC
1788 if ((1UL << part_shift) > DISK_MAX_PARTS) {
1789 err = -EINVAL;
1790 goto misc_out;
1791 }
78f4bb36 1792
b1a66504
GC
1793 if (max_loop > 1UL << (MINORBITS - part_shift)) {
1794 err = -EINVAL;
1795 goto misc_out;
1796 }
1da177e4 1797
d134b00b
KS
1798 /*
1799 * If max_loop is specified, create that many devices upfront.
1800 * This also becomes a hard limit. If max_loop is not specified,
1801 * create CONFIG_BLK_DEV_LOOP_MIN_COUNT loop devices at module
1802 * init time. Loop devices can be requested on-demand with the
1803 * /dev/loop-control interface, or be instantiated by accessing
1804 * a 'dead' device node.
1805 */
73285082 1806 if (max_loop) {
a47653fc 1807 nr = max_loop;
a1c15c59 1808 range = max_loop << part_shift;
a47653fc 1809 } else {
d134b00b 1810 nr = CONFIG_BLK_DEV_LOOP_MIN_COUNT;
a1c15c59 1811 range = 1UL << MINORBITS;
a47653fc
KC
1812 }
1813
b1a66504
GC
1814 if (register_blkdev(LOOP_MAJOR, "loop")) {
1815 err = -EIO;
1816 goto misc_out;
1817 }
1da177e4 1818
a47653fc
KC
1819 blk_register_region(MKDEV(LOOP_MAJOR, 0), range,
1820 THIS_MODULE, loop_probe, NULL, NULL);
1821
d134b00b 1822 /* pre-create number of devices given by config or max_loop */
34dd82af
KS
1823 mutex_lock(&loop_index_mutex);
1824 for (i = 0; i < nr; i++)
1825 loop_add(&lo, i);
1826 mutex_unlock(&loop_index_mutex);
1827
73285082 1828 printk(KERN_INFO "loop: module loaded\n");
1da177e4 1829 return 0;
b1a66504
GC
1830
1831misc_out:
1832 misc_deregister(&loop_misc);
1833 return err;
34dd82af 1834}
a47653fc 1835
34dd82af
KS
1836static int loop_exit_cb(int id, void *ptr, void *data)
1837{
1838 struct loop_device *lo = ptr;
a47653fc 1839
34dd82af
KS
1840 loop_remove(lo);
1841 return 0;
1da177e4
LT
1842}
1843
73285082 1844static void __exit loop_exit(void)
1da177e4 1845{
a47653fc 1846 unsigned long range;
1da177e4 1847
a1c15c59 1848 range = max_loop ? max_loop << part_shift : 1UL << MINORBITS;
a47653fc 1849
34dd82af 1850 idr_for_each(&loop_index_idr, &loop_exit_cb, NULL);
34dd82af 1851 idr_destroy(&loop_index_idr);
73285082 1852
a47653fc 1853 blk_unregister_region(MKDEV(LOOP_MAJOR, 0), range);
00d59405 1854 unregister_blkdev(LOOP_MAJOR, "loop");
770fe30a
KS
1855
1856 misc_deregister(&loop_misc);
1da177e4
LT
1857}
1858
1859module_init(loop_init);
1860module_exit(loop_exit);
1861
1862#ifndef MODULE
1863static int __init max_loop_setup(char *str)
1864{
1865 max_loop = simple_strtol(str, NULL, 0);
1866 return 1;
1867}
1868
1869__setup("max_loop=", max_loop_setup);
1870#endif