xref: /openbmc/linux/drivers/block/loop.c (revision d292dc80)
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.
32  * Erik I. Bolsø, <eriki@himolde.no>, Oct 31, 1999
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
43  * operations write_begin is not available on the backing filesystem.
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 
52 #include <linux/module.h>
53 #include <linux/moduleparam.h>
54 #include <linux/sched.h>
55 #include <linux/fs.h>
56 #include <linux/pagemap.h>
57 #include <linux/file.h>
58 #include <linux/stat.h>
59 #include <linux/errno.h>
60 #include <linux/major.h>
61 #include <linux/wait.h>
62 #include <linux/blkdev.h>
63 #include <linux/blkpg.h>
64 #include <linux/init.h>
65 #include <linux/swap.h>
66 #include <linux/slab.h>
67 #include <linux/compat.h>
68 #include <linux/suspend.h>
69 #include <linux/freezer.h>
70 #include <linux/mutex.h>
71 #include <linux/writeback.h>
72 #include <linux/completion.h>
73 #include <linux/highmem.h>
74 #include <linux/splice.h>
75 #include <linux/sysfs.h>
76 #include <linux/miscdevice.h>
77 #include <linux/falloc.h>
78 #include <linux/uio.h>
79 #include <linux/ioprio.h>
80 #include <linux/blk-cgroup.h>
81 #include <linux/sched/mm.h>
82 #include <linux/statfs.h>
83 
84 #include "loop.h"
85 
86 #include <linux/uaccess.h>
87 
88 #define LOOP_IDLE_WORKER_TIMEOUT (60 * HZ)
89 #define LOOP_DEFAULT_HW_Q_DEPTH (128)
90 
91 static DEFINE_IDR(loop_index_idr);
92 static DEFINE_MUTEX(loop_ctl_mutex);
93 static DEFINE_MUTEX(loop_validate_mutex);
94 
95 /**
96  * loop_global_lock_killable() - take locks for safe loop_validate_file() test
97  *
98  * @lo: struct loop_device
99  * @global: true if @lo is about to bind another "struct loop_device", false otherwise
100  *
101  * Returns 0 on success, -EINTR otherwise.
102  *
103  * Since loop_validate_file() traverses on other "struct loop_device" if
104  * is_loop_device() is true, we need a global lock for serializing concurrent
105  * loop_configure()/loop_change_fd()/__loop_clr_fd() calls.
106  */
107 static int loop_global_lock_killable(struct loop_device *lo, bool global)
108 {
109 	int err;
110 
111 	if (global) {
112 		err = mutex_lock_killable(&loop_validate_mutex);
113 		if (err)
114 			return err;
115 	}
116 	err = mutex_lock_killable(&lo->lo_mutex);
117 	if (err && global)
118 		mutex_unlock(&loop_validate_mutex);
119 	return err;
120 }
121 
122 /**
123  * loop_global_unlock() - release locks taken by loop_global_lock_killable()
124  *
125  * @lo: struct loop_device
126  * @global: true if @lo was about to bind another "struct loop_device", false otherwise
127  */
128 static void loop_global_unlock(struct loop_device *lo, bool global)
129 {
130 	mutex_unlock(&lo->lo_mutex);
131 	if (global)
132 		mutex_unlock(&loop_validate_mutex);
133 }
134 
135 static int max_part;
136 static int part_shift;
137 
138 static loff_t get_size(loff_t offset, loff_t sizelimit, struct file *file)
139 {
140 	loff_t loopsize;
141 
142 	/* Compute loopsize in bytes */
143 	loopsize = i_size_read(file->f_mapping->host);
144 	if (offset > 0)
145 		loopsize -= offset;
146 	/* offset is beyond i_size, weird but possible */
147 	if (loopsize < 0)
148 		return 0;
149 
150 	if (sizelimit > 0 && sizelimit < loopsize)
151 		loopsize = sizelimit;
152 	/*
153 	 * Unfortunately, if we want to do I/O on the device,
154 	 * the number of 512-byte sectors has to fit into a sector_t.
155 	 */
156 	return loopsize >> 9;
157 }
158 
159 static loff_t get_loop_size(struct loop_device *lo, struct file *file)
160 {
161 	return get_size(lo->lo_offset, lo->lo_sizelimit, file);
162 }
163 
164 static void __loop_update_dio(struct loop_device *lo, bool dio)
165 {
166 	struct file *file = lo->lo_backing_file;
167 	struct address_space *mapping = file->f_mapping;
168 	struct inode *inode = mapping->host;
169 	unsigned short sb_bsize = 0;
170 	unsigned dio_align = 0;
171 	bool use_dio;
172 
173 	if (inode->i_sb->s_bdev) {
174 		sb_bsize = bdev_logical_block_size(inode->i_sb->s_bdev);
175 		dio_align = sb_bsize - 1;
176 	}
177 
178 	/*
179 	 * We support direct I/O only if lo_offset is aligned with the
180 	 * logical I/O size of backing device, and the logical block
181 	 * size of loop is bigger than the backing device's.
182 	 *
183 	 * TODO: the above condition may be loosed in the future, and
184 	 * direct I/O may be switched runtime at that time because most
185 	 * of requests in sane applications should be PAGE_SIZE aligned
186 	 */
187 	if (dio) {
188 		if (queue_logical_block_size(lo->lo_queue) >= sb_bsize &&
189 				!(lo->lo_offset & dio_align) &&
190 				mapping->a_ops->direct_IO)
191 			use_dio = true;
192 		else
193 			use_dio = false;
194 	} else {
195 		use_dio = false;
196 	}
197 
198 	if (lo->use_dio == use_dio)
199 		return;
200 
201 	/* flush dirty pages before changing direct IO */
202 	vfs_fsync(file, 0);
203 
204 	/*
205 	 * The flag of LO_FLAGS_DIRECT_IO is handled similarly with
206 	 * LO_FLAGS_READ_ONLY, both are set from kernel, and losetup
207 	 * will get updated by ioctl(LOOP_GET_STATUS)
208 	 */
209 	if (lo->lo_state == Lo_bound)
210 		blk_mq_freeze_queue(lo->lo_queue);
211 	lo->use_dio = use_dio;
212 	if (use_dio) {
213 		blk_queue_flag_clear(QUEUE_FLAG_NOMERGES, lo->lo_queue);
214 		lo->lo_flags |= LO_FLAGS_DIRECT_IO;
215 	} else {
216 		blk_queue_flag_set(QUEUE_FLAG_NOMERGES, lo->lo_queue);
217 		lo->lo_flags &= ~LO_FLAGS_DIRECT_IO;
218 	}
219 	if (lo->lo_state == Lo_bound)
220 		blk_mq_unfreeze_queue(lo->lo_queue);
221 }
222 
223 /**
224  * loop_set_size() - sets device size and notifies userspace
225  * @lo: struct loop_device to set the size for
226  * @size: new size of the loop device
227  *
228  * Callers must validate that the size passed into this function fits into
229  * a sector_t, eg using loop_validate_size()
230  */
231 static void loop_set_size(struct loop_device *lo, loff_t size)
232 {
233 	if (!set_capacity_and_notify(lo->lo_disk, size))
234 		kobject_uevent(&disk_to_dev(lo->lo_disk)->kobj, KOBJ_CHANGE);
235 }
236 
237 static int lo_write_bvec(struct file *file, struct bio_vec *bvec, loff_t *ppos)
238 {
239 	struct iov_iter i;
240 	ssize_t bw;
241 
242 	iov_iter_bvec(&i, WRITE, bvec, 1, bvec->bv_len);
243 
244 	file_start_write(file);
245 	bw = vfs_iter_write(file, &i, ppos, 0);
246 	file_end_write(file);
247 
248 	if (likely(bw ==  bvec->bv_len))
249 		return 0;
250 
251 	printk_ratelimited(KERN_ERR
252 		"loop: Write error at byte offset %llu, length %i.\n",
253 		(unsigned long long)*ppos, bvec->bv_len);
254 	if (bw >= 0)
255 		bw = -EIO;
256 	return bw;
257 }
258 
259 static int lo_write_simple(struct loop_device *lo, struct request *rq,
260 		loff_t pos)
261 {
262 	struct bio_vec bvec;
263 	struct req_iterator iter;
264 	int ret = 0;
265 
266 	rq_for_each_segment(bvec, rq, iter) {
267 		ret = lo_write_bvec(lo->lo_backing_file, &bvec, &pos);
268 		if (ret < 0)
269 			break;
270 		cond_resched();
271 	}
272 
273 	return ret;
274 }
275 
276 static int lo_read_simple(struct loop_device *lo, struct request *rq,
277 		loff_t pos)
278 {
279 	struct bio_vec bvec;
280 	struct req_iterator iter;
281 	struct iov_iter i;
282 	ssize_t len;
283 
284 	rq_for_each_segment(bvec, rq, iter) {
285 		iov_iter_bvec(&i, READ, &bvec, 1, bvec.bv_len);
286 		len = vfs_iter_read(lo->lo_backing_file, &i, &pos, 0);
287 		if (len < 0)
288 			return len;
289 
290 		flush_dcache_page(bvec.bv_page);
291 
292 		if (len != bvec.bv_len) {
293 			struct bio *bio;
294 
295 			__rq_for_each_bio(bio, rq)
296 				zero_fill_bio(bio);
297 			break;
298 		}
299 		cond_resched();
300 	}
301 
302 	return 0;
303 }
304 
305 static int lo_fallocate(struct loop_device *lo, struct request *rq, loff_t pos,
306 			int mode)
307 {
308 	/*
309 	 * We use fallocate to manipulate the space mappings used by the image
310 	 * a.k.a. discard/zerorange.
311 	 */
312 	struct file *file = lo->lo_backing_file;
313 	int ret;
314 
315 	mode |= FALLOC_FL_KEEP_SIZE;
316 
317 	if (!bdev_max_discard_sectors(lo->lo_device))
318 		return -EOPNOTSUPP;
319 
320 	ret = file->f_op->fallocate(file, mode, pos, blk_rq_bytes(rq));
321 	if (unlikely(ret && ret != -EINVAL && ret != -EOPNOTSUPP))
322 		return -EIO;
323 	return ret;
324 }
325 
326 static int lo_req_flush(struct loop_device *lo, struct request *rq)
327 {
328 	int ret = vfs_fsync(lo->lo_backing_file, 0);
329 	if (unlikely(ret && ret != -EINVAL))
330 		ret = -EIO;
331 
332 	return ret;
333 }
334 
335 static void lo_complete_rq(struct request *rq)
336 {
337 	struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
338 	blk_status_t ret = BLK_STS_OK;
339 
340 	if (!cmd->use_aio || cmd->ret < 0 || cmd->ret == blk_rq_bytes(rq) ||
341 	    req_op(rq) != REQ_OP_READ) {
342 		if (cmd->ret < 0)
343 			ret = errno_to_blk_status(cmd->ret);
344 		goto end_io;
345 	}
346 
347 	/*
348 	 * Short READ - if we got some data, advance our request and
349 	 * retry it. If we got no data, end the rest with EIO.
350 	 */
351 	if (cmd->ret) {
352 		blk_update_request(rq, BLK_STS_OK, cmd->ret);
353 		cmd->ret = 0;
354 		blk_mq_requeue_request(rq, true);
355 	} else {
356 		if (cmd->use_aio) {
357 			struct bio *bio = rq->bio;
358 
359 			while (bio) {
360 				zero_fill_bio(bio);
361 				bio = bio->bi_next;
362 			}
363 		}
364 		ret = BLK_STS_IOERR;
365 end_io:
366 		blk_mq_end_request(rq, ret);
367 	}
368 }
369 
370 static void lo_rw_aio_do_completion(struct loop_cmd *cmd)
371 {
372 	struct request *rq = blk_mq_rq_from_pdu(cmd);
373 
374 	if (!atomic_dec_and_test(&cmd->ref))
375 		return;
376 	kfree(cmd->bvec);
377 	cmd->bvec = NULL;
378 	if (likely(!blk_should_fake_timeout(rq->q)))
379 		blk_mq_complete_request(rq);
380 }
381 
382 static void lo_rw_aio_complete(struct kiocb *iocb, long ret)
383 {
384 	struct loop_cmd *cmd = container_of(iocb, struct loop_cmd, iocb);
385 
386 	cmd->ret = ret;
387 	lo_rw_aio_do_completion(cmd);
388 }
389 
390 static int lo_rw_aio(struct loop_device *lo, struct loop_cmd *cmd,
391 		     loff_t pos, bool rw)
392 {
393 	struct iov_iter iter;
394 	struct req_iterator rq_iter;
395 	struct bio_vec *bvec;
396 	struct request *rq = blk_mq_rq_from_pdu(cmd);
397 	struct bio *bio = rq->bio;
398 	struct file *file = lo->lo_backing_file;
399 	struct bio_vec tmp;
400 	unsigned int offset;
401 	int nr_bvec = 0;
402 	int ret;
403 
404 	rq_for_each_bvec(tmp, rq, rq_iter)
405 		nr_bvec++;
406 
407 	if (rq->bio != rq->biotail) {
408 
409 		bvec = kmalloc_array(nr_bvec, sizeof(struct bio_vec),
410 				     GFP_NOIO);
411 		if (!bvec)
412 			return -EIO;
413 		cmd->bvec = bvec;
414 
415 		/*
416 		 * The bios of the request may be started from the middle of
417 		 * the 'bvec' because of bio splitting, so we can't directly
418 		 * copy bio->bi_iov_vec to new bvec. The rq_for_each_bvec
419 		 * API will take care of all details for us.
420 		 */
421 		rq_for_each_bvec(tmp, rq, rq_iter) {
422 			*bvec = tmp;
423 			bvec++;
424 		}
425 		bvec = cmd->bvec;
426 		offset = 0;
427 	} else {
428 		/*
429 		 * Same here, this bio may be started from the middle of the
430 		 * 'bvec' because of bio splitting, so offset from the bvec
431 		 * must be passed to iov iterator
432 		 */
433 		offset = bio->bi_iter.bi_bvec_done;
434 		bvec = __bvec_iter_bvec(bio->bi_io_vec, bio->bi_iter);
435 	}
436 	atomic_set(&cmd->ref, 2);
437 
438 	iov_iter_bvec(&iter, rw, bvec, nr_bvec, blk_rq_bytes(rq));
439 	iter.iov_offset = offset;
440 
441 	cmd->iocb.ki_pos = pos;
442 	cmd->iocb.ki_filp = file;
443 	cmd->iocb.ki_complete = lo_rw_aio_complete;
444 	cmd->iocb.ki_flags = IOCB_DIRECT;
445 	cmd->iocb.ki_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE, 0);
446 
447 	if (rw == WRITE)
448 		ret = call_write_iter(file, &cmd->iocb, &iter);
449 	else
450 		ret = call_read_iter(file, &cmd->iocb, &iter);
451 
452 	lo_rw_aio_do_completion(cmd);
453 
454 	if (ret != -EIOCBQUEUED)
455 		lo_rw_aio_complete(&cmd->iocb, ret);
456 	return 0;
457 }
458 
459 static int do_req_filebacked(struct loop_device *lo, struct request *rq)
460 {
461 	struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
462 	loff_t pos = ((loff_t) blk_rq_pos(rq) << 9) + lo->lo_offset;
463 
464 	/*
465 	 * lo_write_simple and lo_read_simple should have been covered
466 	 * by io submit style function like lo_rw_aio(), one blocker
467 	 * is that lo_read_simple() need to call flush_dcache_page after
468 	 * the page is written from kernel, and it isn't easy to handle
469 	 * this in io submit style function which submits all segments
470 	 * of the req at one time. And direct read IO doesn't need to
471 	 * run flush_dcache_page().
472 	 */
473 	switch (req_op(rq)) {
474 	case REQ_OP_FLUSH:
475 		return lo_req_flush(lo, rq);
476 	case REQ_OP_WRITE_ZEROES:
477 		/*
478 		 * If the caller doesn't want deallocation, call zeroout to
479 		 * write zeroes the range.  Otherwise, punch them out.
480 		 */
481 		return lo_fallocate(lo, rq, pos,
482 			(rq->cmd_flags & REQ_NOUNMAP) ?
483 				FALLOC_FL_ZERO_RANGE :
484 				FALLOC_FL_PUNCH_HOLE);
485 	case REQ_OP_DISCARD:
486 		return lo_fallocate(lo, rq, pos, FALLOC_FL_PUNCH_HOLE);
487 	case REQ_OP_WRITE:
488 		if (cmd->use_aio)
489 			return lo_rw_aio(lo, cmd, pos, WRITE);
490 		else
491 			return lo_write_simple(lo, rq, pos);
492 	case REQ_OP_READ:
493 		if (cmd->use_aio)
494 			return lo_rw_aio(lo, cmd, pos, READ);
495 		else
496 			return lo_read_simple(lo, rq, pos);
497 	default:
498 		WARN_ON_ONCE(1);
499 		return -EIO;
500 	}
501 }
502 
503 static inline void loop_update_dio(struct loop_device *lo)
504 {
505 	__loop_update_dio(lo, (lo->lo_backing_file->f_flags & O_DIRECT) |
506 				lo->use_dio);
507 }
508 
509 static void loop_reread_partitions(struct loop_device *lo)
510 {
511 	int rc;
512 
513 	mutex_lock(&lo->lo_disk->open_mutex);
514 	rc = bdev_disk_changed(lo->lo_disk, false);
515 	mutex_unlock(&lo->lo_disk->open_mutex);
516 	if (rc)
517 		pr_warn("%s: partition scan of loop%d (%s) failed (rc=%d)\n",
518 			__func__, lo->lo_number, lo->lo_file_name, rc);
519 }
520 
521 static inline int is_loop_device(struct file *file)
522 {
523 	struct inode *i = file->f_mapping->host;
524 
525 	return i && S_ISBLK(i->i_mode) && imajor(i) == LOOP_MAJOR;
526 }
527 
528 static int loop_validate_file(struct file *file, struct block_device *bdev)
529 {
530 	struct inode	*inode = file->f_mapping->host;
531 	struct file	*f = file;
532 
533 	/* Avoid recursion */
534 	while (is_loop_device(f)) {
535 		struct loop_device *l;
536 
537 		lockdep_assert_held(&loop_validate_mutex);
538 		if (f->f_mapping->host->i_rdev == bdev->bd_dev)
539 			return -EBADF;
540 
541 		l = I_BDEV(f->f_mapping->host)->bd_disk->private_data;
542 		if (l->lo_state != Lo_bound)
543 			return -EINVAL;
544 		/* Order wrt setting lo->lo_backing_file in loop_configure(). */
545 		rmb();
546 		f = l->lo_backing_file;
547 	}
548 	if (!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))
549 		return -EINVAL;
550 	return 0;
551 }
552 
553 /*
554  * loop_change_fd switched the backing store of a loopback device to
555  * a new file. This is useful for operating system installers to free up
556  * the original file and in High Availability environments to switch to
557  * an alternative location for the content in case of server meltdown.
558  * This can only work if the loop device is used read-only, and if the
559  * new backing store is the same size and type as the old backing store.
560  */
561 static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
562 			  unsigned int arg)
563 {
564 	struct file *file = fget(arg);
565 	struct file *old_file;
566 	int error;
567 	bool partscan;
568 	bool is_loop;
569 
570 	if (!file)
571 		return -EBADF;
572 
573 	/* suppress uevents while reconfiguring the device */
574 	dev_set_uevent_suppress(disk_to_dev(lo->lo_disk), 1);
575 
576 	is_loop = is_loop_device(file);
577 	error = loop_global_lock_killable(lo, is_loop);
578 	if (error)
579 		goto out_putf;
580 	error = -ENXIO;
581 	if (lo->lo_state != Lo_bound)
582 		goto out_err;
583 
584 	/* the loop device has to be read-only */
585 	error = -EINVAL;
586 	if (!(lo->lo_flags & LO_FLAGS_READ_ONLY))
587 		goto out_err;
588 
589 	error = loop_validate_file(file, bdev);
590 	if (error)
591 		goto out_err;
592 
593 	old_file = lo->lo_backing_file;
594 
595 	error = -EINVAL;
596 
597 	/* size of the new backing store needs to be the same */
598 	if (get_loop_size(lo, file) != get_loop_size(lo, old_file))
599 		goto out_err;
600 
601 	/* and ... switch */
602 	disk_force_media_change(lo->lo_disk, DISK_EVENT_MEDIA_CHANGE);
603 	blk_mq_freeze_queue(lo->lo_queue);
604 	mapping_set_gfp_mask(old_file->f_mapping, lo->old_gfp_mask);
605 	lo->lo_backing_file = file;
606 	lo->old_gfp_mask = mapping_gfp_mask(file->f_mapping);
607 	mapping_set_gfp_mask(file->f_mapping,
608 			     lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
609 	loop_update_dio(lo);
610 	blk_mq_unfreeze_queue(lo->lo_queue);
611 	partscan = lo->lo_flags & LO_FLAGS_PARTSCAN;
612 	loop_global_unlock(lo, is_loop);
613 
614 	/*
615 	 * Flush loop_validate_file() before fput(), for l->lo_backing_file
616 	 * might be pointing at old_file which might be the last reference.
617 	 */
618 	if (!is_loop) {
619 		mutex_lock(&loop_validate_mutex);
620 		mutex_unlock(&loop_validate_mutex);
621 	}
622 	/*
623 	 * We must drop file reference outside of lo_mutex as dropping
624 	 * the file ref can take open_mutex which creates circular locking
625 	 * dependency.
626 	 */
627 	fput(old_file);
628 	if (partscan)
629 		loop_reread_partitions(lo);
630 
631 	error = 0;
632 done:
633 	/* enable and uncork uevent now that we are done */
634 	dev_set_uevent_suppress(disk_to_dev(lo->lo_disk), 0);
635 	return error;
636 
637 out_err:
638 	loop_global_unlock(lo, is_loop);
639 out_putf:
640 	fput(file);
641 	goto done;
642 }
643 
644 /* loop sysfs attributes */
645 
646 static ssize_t loop_attr_show(struct device *dev, char *page,
647 			      ssize_t (*callback)(struct loop_device *, char *))
648 {
649 	struct gendisk *disk = dev_to_disk(dev);
650 	struct loop_device *lo = disk->private_data;
651 
652 	return callback(lo, page);
653 }
654 
655 #define LOOP_ATTR_RO(_name)						\
656 static ssize_t loop_attr_##_name##_show(struct loop_device *, char *);	\
657 static ssize_t loop_attr_do_show_##_name(struct device *d,		\
658 				struct device_attribute *attr, char *b)	\
659 {									\
660 	return loop_attr_show(d, b, loop_attr_##_name##_show);		\
661 }									\
662 static struct device_attribute loop_attr_##_name =			\
663 	__ATTR(_name, 0444, loop_attr_do_show_##_name, NULL);
664 
665 static ssize_t loop_attr_backing_file_show(struct loop_device *lo, char *buf)
666 {
667 	ssize_t ret;
668 	char *p = NULL;
669 
670 	spin_lock_irq(&lo->lo_lock);
671 	if (lo->lo_backing_file)
672 		p = file_path(lo->lo_backing_file, buf, PAGE_SIZE - 1);
673 	spin_unlock_irq(&lo->lo_lock);
674 
675 	if (IS_ERR_OR_NULL(p))
676 		ret = PTR_ERR(p);
677 	else {
678 		ret = strlen(p);
679 		memmove(buf, p, ret);
680 		buf[ret++] = '\n';
681 		buf[ret] = 0;
682 	}
683 
684 	return ret;
685 }
686 
687 static ssize_t loop_attr_offset_show(struct loop_device *lo, char *buf)
688 {
689 	return sysfs_emit(buf, "%llu\n", (unsigned long long)lo->lo_offset);
690 }
691 
692 static ssize_t loop_attr_sizelimit_show(struct loop_device *lo, char *buf)
693 {
694 	return sysfs_emit(buf, "%llu\n", (unsigned long long)lo->lo_sizelimit);
695 }
696 
697 static ssize_t loop_attr_autoclear_show(struct loop_device *lo, char *buf)
698 {
699 	int autoclear = (lo->lo_flags & LO_FLAGS_AUTOCLEAR);
700 
701 	return sysfs_emit(buf, "%s\n", autoclear ? "1" : "0");
702 }
703 
704 static ssize_t loop_attr_partscan_show(struct loop_device *lo, char *buf)
705 {
706 	int partscan = (lo->lo_flags & LO_FLAGS_PARTSCAN);
707 
708 	return sysfs_emit(buf, "%s\n", partscan ? "1" : "0");
709 }
710 
711 static ssize_t loop_attr_dio_show(struct loop_device *lo, char *buf)
712 {
713 	int dio = (lo->lo_flags & LO_FLAGS_DIRECT_IO);
714 
715 	return sysfs_emit(buf, "%s\n", dio ? "1" : "0");
716 }
717 
718 LOOP_ATTR_RO(backing_file);
719 LOOP_ATTR_RO(offset);
720 LOOP_ATTR_RO(sizelimit);
721 LOOP_ATTR_RO(autoclear);
722 LOOP_ATTR_RO(partscan);
723 LOOP_ATTR_RO(dio);
724 
725 static struct attribute *loop_attrs[] = {
726 	&loop_attr_backing_file.attr,
727 	&loop_attr_offset.attr,
728 	&loop_attr_sizelimit.attr,
729 	&loop_attr_autoclear.attr,
730 	&loop_attr_partscan.attr,
731 	&loop_attr_dio.attr,
732 	NULL,
733 };
734 
735 static struct attribute_group loop_attribute_group = {
736 	.name = "loop",
737 	.attrs= loop_attrs,
738 };
739 
740 static void loop_sysfs_init(struct loop_device *lo)
741 {
742 	lo->sysfs_inited = !sysfs_create_group(&disk_to_dev(lo->lo_disk)->kobj,
743 						&loop_attribute_group);
744 }
745 
746 static void loop_sysfs_exit(struct loop_device *lo)
747 {
748 	if (lo->sysfs_inited)
749 		sysfs_remove_group(&disk_to_dev(lo->lo_disk)->kobj,
750 				   &loop_attribute_group);
751 }
752 
753 static void loop_config_discard(struct loop_device *lo)
754 {
755 	struct file *file = lo->lo_backing_file;
756 	struct inode *inode = file->f_mapping->host;
757 	struct request_queue *q = lo->lo_queue;
758 	u32 granularity, max_discard_sectors;
759 
760 	/*
761 	 * If the backing device is a block device, mirror its zeroing
762 	 * capability. Set the discard sectors to the block device's zeroing
763 	 * capabilities because loop discards result in blkdev_issue_zeroout(),
764 	 * not blkdev_issue_discard(). This maintains consistent behavior with
765 	 * file-backed loop devices: discarded regions read back as zero.
766 	 */
767 	if (S_ISBLK(inode->i_mode)) {
768 		struct request_queue *backingq = bdev_get_queue(I_BDEV(inode));
769 
770 		max_discard_sectors = backingq->limits.max_write_zeroes_sectors;
771 		granularity = bdev_discard_granularity(I_BDEV(inode)) ?:
772 			queue_physical_block_size(backingq);
773 
774 	/*
775 	 * We use punch hole to reclaim the free space used by the
776 	 * image a.k.a. discard.
777 	 */
778 	} else if (!file->f_op->fallocate) {
779 		max_discard_sectors = 0;
780 		granularity = 0;
781 
782 	} else {
783 		struct kstatfs sbuf;
784 
785 		max_discard_sectors = UINT_MAX >> 9;
786 		if (!vfs_statfs(&file->f_path, &sbuf))
787 			granularity = sbuf.f_bsize;
788 		else
789 			max_discard_sectors = 0;
790 	}
791 
792 	if (max_discard_sectors) {
793 		q->limits.discard_granularity = granularity;
794 		blk_queue_max_discard_sectors(q, max_discard_sectors);
795 		blk_queue_max_write_zeroes_sectors(q, max_discard_sectors);
796 	} else {
797 		q->limits.discard_granularity = 0;
798 		blk_queue_max_discard_sectors(q, 0);
799 		blk_queue_max_write_zeroes_sectors(q, 0);
800 	}
801 	q->limits.discard_alignment = 0;
802 }
803 
804 struct loop_worker {
805 	struct rb_node rb_node;
806 	struct work_struct work;
807 	struct list_head cmd_list;
808 	struct list_head idle_list;
809 	struct loop_device *lo;
810 	struct cgroup_subsys_state *blkcg_css;
811 	unsigned long last_ran_at;
812 };
813 
814 static void loop_workfn(struct work_struct *work);
815 
816 #ifdef CONFIG_BLK_CGROUP
817 static inline int queue_on_root_worker(struct cgroup_subsys_state *css)
818 {
819 	return !css || css == blkcg_root_css;
820 }
821 #else
822 static inline int queue_on_root_worker(struct cgroup_subsys_state *css)
823 {
824 	return !css;
825 }
826 #endif
827 
828 static void loop_queue_work(struct loop_device *lo, struct loop_cmd *cmd)
829 {
830 	struct rb_node **node, *parent = NULL;
831 	struct loop_worker *cur_worker, *worker = NULL;
832 	struct work_struct *work;
833 	struct list_head *cmd_list;
834 
835 	spin_lock_irq(&lo->lo_work_lock);
836 
837 	if (queue_on_root_worker(cmd->blkcg_css))
838 		goto queue_work;
839 
840 	node = &lo->worker_tree.rb_node;
841 
842 	while (*node) {
843 		parent = *node;
844 		cur_worker = container_of(*node, struct loop_worker, rb_node);
845 		if (cur_worker->blkcg_css == cmd->blkcg_css) {
846 			worker = cur_worker;
847 			break;
848 		} else if ((long)cur_worker->blkcg_css < (long)cmd->blkcg_css) {
849 			node = &(*node)->rb_left;
850 		} else {
851 			node = &(*node)->rb_right;
852 		}
853 	}
854 	if (worker)
855 		goto queue_work;
856 
857 	worker = kzalloc(sizeof(struct loop_worker), GFP_NOWAIT | __GFP_NOWARN);
858 	/*
859 	 * In the event we cannot allocate a worker, just queue on the
860 	 * rootcg worker and issue the I/O as the rootcg
861 	 */
862 	if (!worker) {
863 		cmd->blkcg_css = NULL;
864 		if (cmd->memcg_css)
865 			css_put(cmd->memcg_css);
866 		cmd->memcg_css = NULL;
867 		goto queue_work;
868 	}
869 
870 	worker->blkcg_css = cmd->blkcg_css;
871 	css_get(worker->blkcg_css);
872 	INIT_WORK(&worker->work, loop_workfn);
873 	INIT_LIST_HEAD(&worker->cmd_list);
874 	INIT_LIST_HEAD(&worker->idle_list);
875 	worker->lo = lo;
876 	rb_link_node(&worker->rb_node, parent, node);
877 	rb_insert_color(&worker->rb_node, &lo->worker_tree);
878 queue_work:
879 	if (worker) {
880 		/*
881 		 * We need to remove from the idle list here while
882 		 * holding the lock so that the idle timer doesn't
883 		 * free the worker
884 		 */
885 		if (!list_empty(&worker->idle_list))
886 			list_del_init(&worker->idle_list);
887 		work = &worker->work;
888 		cmd_list = &worker->cmd_list;
889 	} else {
890 		work = &lo->rootcg_work;
891 		cmd_list = &lo->rootcg_cmd_list;
892 	}
893 	list_add_tail(&cmd->list_entry, cmd_list);
894 	queue_work(lo->workqueue, work);
895 	spin_unlock_irq(&lo->lo_work_lock);
896 }
897 
898 static void loop_set_timer(struct loop_device *lo)
899 {
900 	timer_reduce(&lo->timer, jiffies + LOOP_IDLE_WORKER_TIMEOUT);
901 }
902 
903 static void loop_free_idle_workers(struct loop_device *lo, bool delete_all)
904 {
905 	struct loop_worker *pos, *worker;
906 
907 	spin_lock_irq(&lo->lo_work_lock);
908 	list_for_each_entry_safe(worker, pos, &lo->idle_worker_list,
909 				idle_list) {
910 		if (!delete_all &&
911 		    time_is_after_jiffies(worker->last_ran_at +
912 					  LOOP_IDLE_WORKER_TIMEOUT))
913 			break;
914 		list_del(&worker->idle_list);
915 		rb_erase(&worker->rb_node, &lo->worker_tree);
916 		css_put(worker->blkcg_css);
917 		kfree(worker);
918 	}
919 	if (!list_empty(&lo->idle_worker_list))
920 		loop_set_timer(lo);
921 	spin_unlock_irq(&lo->lo_work_lock);
922 }
923 
924 static void loop_free_idle_workers_timer(struct timer_list *timer)
925 {
926 	struct loop_device *lo = container_of(timer, struct loop_device, timer);
927 
928 	return loop_free_idle_workers(lo, false);
929 }
930 
931 static void loop_update_rotational(struct loop_device *lo)
932 {
933 	struct file *file = lo->lo_backing_file;
934 	struct inode *file_inode = file->f_mapping->host;
935 	struct block_device *file_bdev = file_inode->i_sb->s_bdev;
936 	struct request_queue *q = lo->lo_queue;
937 	bool nonrot = true;
938 
939 	/* not all filesystems (e.g. tmpfs) have a sb->s_bdev */
940 	if (file_bdev)
941 		nonrot = bdev_nonrot(file_bdev);
942 
943 	if (nonrot)
944 		blk_queue_flag_set(QUEUE_FLAG_NONROT, q);
945 	else
946 		blk_queue_flag_clear(QUEUE_FLAG_NONROT, q);
947 }
948 
949 /**
950  * loop_set_status_from_info - configure device from loop_info
951  * @lo: struct loop_device to configure
952  * @info: struct loop_info64 to configure the device with
953  *
954  * Configures the loop device parameters according to the passed
955  * in loop_info64 configuration.
956  */
957 static int
958 loop_set_status_from_info(struct loop_device *lo,
959 			  const struct loop_info64 *info)
960 {
961 	if ((unsigned int) info->lo_encrypt_key_size > LO_KEY_SIZE)
962 		return -EINVAL;
963 
964 	switch (info->lo_encrypt_type) {
965 	case LO_CRYPT_NONE:
966 		break;
967 	case LO_CRYPT_XOR:
968 		pr_warn("support for the xor transformation has been removed.\n");
969 		return -EINVAL;
970 	case LO_CRYPT_CRYPTOAPI:
971 		pr_warn("support for cryptoloop has been removed.  Use dm-crypt instead.\n");
972 		return -EINVAL;
973 	default:
974 		return -EINVAL;
975 	}
976 
977 	lo->lo_offset = info->lo_offset;
978 	lo->lo_sizelimit = info->lo_sizelimit;
979 	memcpy(lo->lo_file_name, info->lo_file_name, LO_NAME_SIZE);
980 	lo->lo_file_name[LO_NAME_SIZE-1] = 0;
981 	lo->lo_flags = info->lo_flags;
982 	return 0;
983 }
984 
985 static int loop_configure(struct loop_device *lo, fmode_t mode,
986 			  struct block_device *bdev,
987 			  const struct loop_config *config)
988 {
989 	struct file *file = fget(config->fd);
990 	struct inode *inode;
991 	struct address_space *mapping;
992 	int error;
993 	loff_t size;
994 	bool partscan;
995 	unsigned short bsize;
996 	bool is_loop;
997 
998 	if (!file)
999 		return -EBADF;
1000 	is_loop = is_loop_device(file);
1001 
1002 	/* This is safe, since we have a reference from open(). */
1003 	__module_get(THIS_MODULE);
1004 
1005 	/* suppress uevents while reconfiguring the device */
1006 	dev_set_uevent_suppress(disk_to_dev(lo->lo_disk), 1);
1007 
1008 	/*
1009 	 * If we don't hold exclusive handle for the device, upgrade to it
1010 	 * here to avoid changing device under exclusive owner.
1011 	 */
1012 	if (!(mode & FMODE_EXCL)) {
1013 		error = bd_prepare_to_claim(bdev, loop_configure);
1014 		if (error)
1015 			goto out_putf;
1016 	}
1017 
1018 	error = loop_global_lock_killable(lo, is_loop);
1019 	if (error)
1020 		goto out_bdev;
1021 
1022 	error = -EBUSY;
1023 	if (lo->lo_state != Lo_unbound)
1024 		goto out_unlock;
1025 
1026 	error = loop_validate_file(file, bdev);
1027 	if (error)
1028 		goto out_unlock;
1029 
1030 	mapping = file->f_mapping;
1031 	inode = mapping->host;
1032 
1033 	if ((config->info.lo_flags & ~LOOP_CONFIGURE_SETTABLE_FLAGS) != 0) {
1034 		error = -EINVAL;
1035 		goto out_unlock;
1036 	}
1037 
1038 	if (config->block_size) {
1039 		error = blk_validate_block_size(config->block_size);
1040 		if (error)
1041 			goto out_unlock;
1042 	}
1043 
1044 	error = loop_set_status_from_info(lo, &config->info);
1045 	if (error)
1046 		goto out_unlock;
1047 
1048 	if (!(file->f_mode & FMODE_WRITE) || !(mode & FMODE_WRITE) ||
1049 	    !file->f_op->write_iter)
1050 		lo->lo_flags |= LO_FLAGS_READ_ONLY;
1051 
1052 	if (!lo->workqueue) {
1053 		lo->workqueue = alloc_workqueue("loop%d",
1054 						WQ_UNBOUND | WQ_FREEZABLE,
1055 						0, lo->lo_number);
1056 		if (!lo->workqueue) {
1057 			error = -ENOMEM;
1058 			goto out_unlock;
1059 		}
1060 	}
1061 
1062 	disk_force_media_change(lo->lo_disk, DISK_EVENT_MEDIA_CHANGE);
1063 	set_disk_ro(lo->lo_disk, (lo->lo_flags & LO_FLAGS_READ_ONLY) != 0);
1064 
1065 	lo->use_dio = lo->lo_flags & LO_FLAGS_DIRECT_IO;
1066 	lo->lo_device = bdev;
1067 	lo->lo_backing_file = file;
1068 	lo->old_gfp_mask = mapping_gfp_mask(mapping);
1069 	mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
1070 
1071 	if (!(lo->lo_flags & LO_FLAGS_READ_ONLY) && file->f_op->fsync)
1072 		blk_queue_write_cache(lo->lo_queue, true, false);
1073 
1074 	if (config->block_size)
1075 		bsize = config->block_size;
1076 	else if ((lo->lo_backing_file->f_flags & O_DIRECT) && inode->i_sb->s_bdev)
1077 		/* In case of direct I/O, match underlying block size */
1078 		bsize = bdev_logical_block_size(inode->i_sb->s_bdev);
1079 	else
1080 		bsize = 512;
1081 
1082 	blk_queue_logical_block_size(lo->lo_queue, bsize);
1083 	blk_queue_physical_block_size(lo->lo_queue, bsize);
1084 	blk_queue_io_min(lo->lo_queue, bsize);
1085 
1086 	loop_config_discard(lo);
1087 	loop_update_rotational(lo);
1088 	loop_update_dio(lo);
1089 	loop_sysfs_init(lo);
1090 
1091 	size = get_loop_size(lo, file);
1092 	loop_set_size(lo, size);
1093 
1094 	/* Order wrt reading lo_state in loop_validate_file(). */
1095 	wmb();
1096 
1097 	lo->lo_state = Lo_bound;
1098 	if (part_shift)
1099 		lo->lo_flags |= LO_FLAGS_PARTSCAN;
1100 	partscan = lo->lo_flags & LO_FLAGS_PARTSCAN;
1101 	if (partscan)
1102 		lo->lo_disk->flags &= ~GENHD_FL_NO_PART;
1103 
1104 	loop_global_unlock(lo, is_loop);
1105 	if (partscan)
1106 		loop_reread_partitions(lo);
1107 	if (!(mode & FMODE_EXCL))
1108 		bd_abort_claiming(bdev, loop_configure);
1109 
1110 	error = 0;
1111 done:
1112 	/* enable and uncork uevent now that we are done */
1113 	dev_set_uevent_suppress(disk_to_dev(lo->lo_disk), 0);
1114 	return error;
1115 
1116 out_unlock:
1117 	loop_global_unlock(lo, is_loop);
1118 out_bdev:
1119 	if (!(mode & FMODE_EXCL))
1120 		bd_abort_claiming(bdev, loop_configure);
1121 out_putf:
1122 	fput(file);
1123 	/* This is safe: open() is still holding a reference. */
1124 	module_put(THIS_MODULE);
1125 	goto done;
1126 }
1127 
1128 static void __loop_clr_fd(struct loop_device *lo, bool release)
1129 {
1130 	struct file *filp;
1131 	gfp_t gfp = lo->old_gfp_mask;
1132 
1133 	if (test_bit(QUEUE_FLAG_WC, &lo->lo_queue->queue_flags))
1134 		blk_queue_write_cache(lo->lo_queue, false, false);
1135 
1136 	/*
1137 	 * Freeze the request queue when unbinding on a live file descriptor and
1138 	 * thus an open device.  When called from ->release we are guaranteed
1139 	 * that there is no I/O in progress already.
1140 	 */
1141 	if (!release)
1142 		blk_mq_freeze_queue(lo->lo_queue);
1143 
1144 	spin_lock_irq(&lo->lo_lock);
1145 	filp = lo->lo_backing_file;
1146 	lo->lo_backing_file = NULL;
1147 	spin_unlock_irq(&lo->lo_lock);
1148 
1149 	lo->lo_device = NULL;
1150 	lo->lo_offset = 0;
1151 	lo->lo_sizelimit = 0;
1152 	memset(lo->lo_file_name, 0, LO_NAME_SIZE);
1153 	blk_queue_logical_block_size(lo->lo_queue, 512);
1154 	blk_queue_physical_block_size(lo->lo_queue, 512);
1155 	blk_queue_io_min(lo->lo_queue, 512);
1156 	invalidate_disk(lo->lo_disk);
1157 	loop_sysfs_exit(lo);
1158 	/* let user-space know about this change */
1159 	kobject_uevent(&disk_to_dev(lo->lo_disk)->kobj, KOBJ_CHANGE);
1160 	mapping_set_gfp_mask(filp->f_mapping, gfp);
1161 	/* This is safe: open() is still holding a reference. */
1162 	module_put(THIS_MODULE);
1163 	if (!release)
1164 		blk_mq_unfreeze_queue(lo->lo_queue);
1165 
1166 	disk_force_media_change(lo->lo_disk, DISK_EVENT_MEDIA_CHANGE);
1167 
1168 	if (lo->lo_flags & LO_FLAGS_PARTSCAN) {
1169 		int err;
1170 
1171 		/*
1172 		 * open_mutex has been held already in release path, so don't
1173 		 * acquire it if this function is called in such case.
1174 		 *
1175 		 * If the reread partition isn't from release path, lo_refcnt
1176 		 * must be at least one and it can only become zero when the
1177 		 * current holder is released.
1178 		 */
1179 		if (!release)
1180 			mutex_lock(&lo->lo_disk->open_mutex);
1181 		err = bdev_disk_changed(lo->lo_disk, false);
1182 		if (!release)
1183 			mutex_unlock(&lo->lo_disk->open_mutex);
1184 		if (err)
1185 			pr_warn("%s: partition scan of loop%d failed (rc=%d)\n",
1186 				__func__, lo->lo_number, err);
1187 		/* Device is gone, no point in returning error */
1188 	}
1189 
1190 	/*
1191 	 * lo->lo_state is set to Lo_unbound here after above partscan has
1192 	 * finished. There cannot be anybody else entering __loop_clr_fd() as
1193 	 * Lo_rundown state protects us from all the other places trying to
1194 	 * change the 'lo' device.
1195 	 */
1196 	lo->lo_flags = 0;
1197 	if (!part_shift)
1198 		lo->lo_disk->flags |= GENHD_FL_NO_PART;
1199 	mutex_lock(&lo->lo_mutex);
1200 	lo->lo_state = Lo_unbound;
1201 	mutex_unlock(&lo->lo_mutex);
1202 
1203 	/*
1204 	 * Need not hold lo_mutex to fput backing file. Calling fput holding
1205 	 * lo_mutex triggers a circular lock dependency possibility warning as
1206 	 * fput can take open_mutex which is usually taken before lo_mutex.
1207 	 */
1208 	fput(filp);
1209 }
1210 
1211 static int loop_clr_fd(struct loop_device *lo)
1212 {
1213 	int err;
1214 
1215 	/*
1216 	 * Since lo_ioctl() is called without locks held, it is possible that
1217 	 * loop_configure()/loop_change_fd() and loop_clr_fd() run in parallel.
1218 	 *
1219 	 * Therefore, use global lock when setting Lo_rundown state in order to
1220 	 * make sure that loop_validate_file() will fail if the "struct file"
1221 	 * which loop_configure()/loop_change_fd() found via fget() was this
1222 	 * loop device.
1223 	 */
1224 	err = loop_global_lock_killable(lo, true);
1225 	if (err)
1226 		return err;
1227 	if (lo->lo_state != Lo_bound) {
1228 		loop_global_unlock(lo, true);
1229 		return -ENXIO;
1230 	}
1231 	/*
1232 	 * If we've explicitly asked to tear down the loop device,
1233 	 * and it has an elevated reference count, set it for auto-teardown when
1234 	 * the last reference goes away. This stops $!~#$@ udev from
1235 	 * preventing teardown because it decided that it needs to run blkid on
1236 	 * the loopback device whenever they appear. xfstests is notorious for
1237 	 * failing tests because blkid via udev races with a losetup
1238 	 * <dev>/do something like mkfs/losetup -d <dev> causing the losetup -d
1239 	 * command to fail with EBUSY.
1240 	 */
1241 	if (disk_openers(lo->lo_disk) > 1) {
1242 		lo->lo_flags |= LO_FLAGS_AUTOCLEAR;
1243 		loop_global_unlock(lo, true);
1244 		return 0;
1245 	}
1246 	lo->lo_state = Lo_rundown;
1247 	loop_global_unlock(lo, true);
1248 
1249 	__loop_clr_fd(lo, false);
1250 	return 0;
1251 }
1252 
1253 static int
1254 loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
1255 {
1256 	int err;
1257 	int prev_lo_flags;
1258 	bool partscan = false;
1259 	bool size_changed = false;
1260 
1261 	err = mutex_lock_killable(&lo->lo_mutex);
1262 	if (err)
1263 		return err;
1264 	if (lo->lo_state != Lo_bound) {
1265 		err = -ENXIO;
1266 		goto out_unlock;
1267 	}
1268 
1269 	if (lo->lo_offset != info->lo_offset ||
1270 	    lo->lo_sizelimit != info->lo_sizelimit) {
1271 		size_changed = true;
1272 		sync_blockdev(lo->lo_device);
1273 		invalidate_bdev(lo->lo_device);
1274 	}
1275 
1276 	/* I/O need to be drained during transfer transition */
1277 	blk_mq_freeze_queue(lo->lo_queue);
1278 
1279 	prev_lo_flags = lo->lo_flags;
1280 
1281 	err = loop_set_status_from_info(lo, info);
1282 	if (err)
1283 		goto out_unfreeze;
1284 
1285 	/* Mask out flags that can't be set using LOOP_SET_STATUS. */
1286 	lo->lo_flags &= LOOP_SET_STATUS_SETTABLE_FLAGS;
1287 	/* For those flags, use the previous values instead */
1288 	lo->lo_flags |= prev_lo_flags & ~LOOP_SET_STATUS_SETTABLE_FLAGS;
1289 	/* For flags that can't be cleared, use previous values too */
1290 	lo->lo_flags |= prev_lo_flags & ~LOOP_SET_STATUS_CLEARABLE_FLAGS;
1291 
1292 	if (size_changed) {
1293 		loff_t new_size = get_size(lo->lo_offset, lo->lo_sizelimit,
1294 					   lo->lo_backing_file);
1295 		loop_set_size(lo, new_size);
1296 	}
1297 
1298 	loop_config_discard(lo);
1299 
1300 	/* update dio if lo_offset or transfer is changed */
1301 	__loop_update_dio(lo, lo->use_dio);
1302 
1303 out_unfreeze:
1304 	blk_mq_unfreeze_queue(lo->lo_queue);
1305 
1306 	if (!err && (lo->lo_flags & LO_FLAGS_PARTSCAN) &&
1307 	     !(prev_lo_flags & LO_FLAGS_PARTSCAN)) {
1308 		lo->lo_disk->flags &= ~GENHD_FL_NO_PART;
1309 		partscan = true;
1310 	}
1311 out_unlock:
1312 	mutex_unlock(&lo->lo_mutex);
1313 	if (partscan)
1314 		loop_reread_partitions(lo);
1315 
1316 	return err;
1317 }
1318 
1319 static int
1320 loop_get_status(struct loop_device *lo, struct loop_info64 *info)
1321 {
1322 	struct path path;
1323 	struct kstat stat;
1324 	int ret;
1325 
1326 	ret = mutex_lock_killable(&lo->lo_mutex);
1327 	if (ret)
1328 		return ret;
1329 	if (lo->lo_state != Lo_bound) {
1330 		mutex_unlock(&lo->lo_mutex);
1331 		return -ENXIO;
1332 	}
1333 
1334 	memset(info, 0, sizeof(*info));
1335 	info->lo_number = lo->lo_number;
1336 	info->lo_offset = lo->lo_offset;
1337 	info->lo_sizelimit = lo->lo_sizelimit;
1338 	info->lo_flags = lo->lo_flags;
1339 	memcpy(info->lo_file_name, lo->lo_file_name, LO_NAME_SIZE);
1340 
1341 	/* Drop lo_mutex while we call into the filesystem. */
1342 	path = lo->lo_backing_file->f_path;
1343 	path_get(&path);
1344 	mutex_unlock(&lo->lo_mutex);
1345 	ret = vfs_getattr(&path, &stat, STATX_INO, AT_STATX_SYNC_AS_STAT);
1346 	if (!ret) {
1347 		info->lo_device = huge_encode_dev(stat.dev);
1348 		info->lo_inode = stat.ino;
1349 		info->lo_rdevice = huge_encode_dev(stat.rdev);
1350 	}
1351 	path_put(&path);
1352 	return ret;
1353 }
1354 
1355 static void
1356 loop_info64_from_old(const struct loop_info *info, struct loop_info64 *info64)
1357 {
1358 	memset(info64, 0, sizeof(*info64));
1359 	info64->lo_number = info->lo_number;
1360 	info64->lo_device = info->lo_device;
1361 	info64->lo_inode = info->lo_inode;
1362 	info64->lo_rdevice = info->lo_rdevice;
1363 	info64->lo_offset = info->lo_offset;
1364 	info64->lo_sizelimit = 0;
1365 	info64->lo_flags = info->lo_flags;
1366 	memcpy(info64->lo_file_name, info->lo_name, LO_NAME_SIZE);
1367 }
1368 
1369 static int
1370 loop_info64_to_old(const struct loop_info64 *info64, struct loop_info *info)
1371 {
1372 	memset(info, 0, sizeof(*info));
1373 	info->lo_number = info64->lo_number;
1374 	info->lo_device = info64->lo_device;
1375 	info->lo_inode = info64->lo_inode;
1376 	info->lo_rdevice = info64->lo_rdevice;
1377 	info->lo_offset = info64->lo_offset;
1378 	info->lo_flags = info64->lo_flags;
1379 	memcpy(info->lo_name, info64->lo_file_name, LO_NAME_SIZE);
1380 
1381 	/* error in case values were truncated */
1382 	if (info->lo_device != info64->lo_device ||
1383 	    info->lo_rdevice != info64->lo_rdevice ||
1384 	    info->lo_inode != info64->lo_inode ||
1385 	    info->lo_offset != info64->lo_offset)
1386 		return -EOVERFLOW;
1387 
1388 	return 0;
1389 }
1390 
1391 static int
1392 loop_set_status_old(struct loop_device *lo, const struct loop_info __user *arg)
1393 {
1394 	struct loop_info info;
1395 	struct loop_info64 info64;
1396 
1397 	if (copy_from_user(&info, arg, sizeof (struct loop_info)))
1398 		return -EFAULT;
1399 	loop_info64_from_old(&info, &info64);
1400 	return loop_set_status(lo, &info64);
1401 }
1402 
1403 static int
1404 loop_set_status64(struct loop_device *lo, const struct loop_info64 __user *arg)
1405 {
1406 	struct loop_info64 info64;
1407 
1408 	if (copy_from_user(&info64, arg, sizeof (struct loop_info64)))
1409 		return -EFAULT;
1410 	return loop_set_status(lo, &info64);
1411 }
1412 
1413 static int
1414 loop_get_status_old(struct loop_device *lo, struct loop_info __user *arg) {
1415 	struct loop_info info;
1416 	struct loop_info64 info64;
1417 	int err;
1418 
1419 	if (!arg)
1420 		return -EINVAL;
1421 	err = loop_get_status(lo, &info64);
1422 	if (!err)
1423 		err = loop_info64_to_old(&info64, &info);
1424 	if (!err && copy_to_user(arg, &info, sizeof(info)))
1425 		err = -EFAULT;
1426 
1427 	return err;
1428 }
1429 
1430 static int
1431 loop_get_status64(struct loop_device *lo, struct loop_info64 __user *arg) {
1432 	struct loop_info64 info64;
1433 	int err;
1434 
1435 	if (!arg)
1436 		return -EINVAL;
1437 	err = loop_get_status(lo, &info64);
1438 	if (!err && copy_to_user(arg, &info64, sizeof(info64)))
1439 		err = -EFAULT;
1440 
1441 	return err;
1442 }
1443 
1444 static int loop_set_capacity(struct loop_device *lo)
1445 {
1446 	loff_t size;
1447 
1448 	if (unlikely(lo->lo_state != Lo_bound))
1449 		return -ENXIO;
1450 
1451 	size = get_loop_size(lo, lo->lo_backing_file);
1452 	loop_set_size(lo, size);
1453 
1454 	return 0;
1455 }
1456 
1457 static int loop_set_dio(struct loop_device *lo, unsigned long arg)
1458 {
1459 	int error = -ENXIO;
1460 	if (lo->lo_state != Lo_bound)
1461 		goto out;
1462 
1463 	__loop_update_dio(lo, !!arg);
1464 	if (lo->use_dio == !!arg)
1465 		return 0;
1466 	error = -EINVAL;
1467  out:
1468 	return error;
1469 }
1470 
1471 static int loop_set_block_size(struct loop_device *lo, unsigned long arg)
1472 {
1473 	int err = 0;
1474 
1475 	if (lo->lo_state != Lo_bound)
1476 		return -ENXIO;
1477 
1478 	err = blk_validate_block_size(arg);
1479 	if (err)
1480 		return err;
1481 
1482 	if (lo->lo_queue->limits.logical_block_size == arg)
1483 		return 0;
1484 
1485 	sync_blockdev(lo->lo_device);
1486 	invalidate_bdev(lo->lo_device);
1487 
1488 	blk_mq_freeze_queue(lo->lo_queue);
1489 	blk_queue_logical_block_size(lo->lo_queue, arg);
1490 	blk_queue_physical_block_size(lo->lo_queue, arg);
1491 	blk_queue_io_min(lo->lo_queue, arg);
1492 	loop_update_dio(lo);
1493 	blk_mq_unfreeze_queue(lo->lo_queue);
1494 
1495 	return err;
1496 }
1497 
1498 static int lo_simple_ioctl(struct loop_device *lo, unsigned int cmd,
1499 			   unsigned long arg)
1500 {
1501 	int err;
1502 
1503 	err = mutex_lock_killable(&lo->lo_mutex);
1504 	if (err)
1505 		return err;
1506 	switch (cmd) {
1507 	case LOOP_SET_CAPACITY:
1508 		err = loop_set_capacity(lo);
1509 		break;
1510 	case LOOP_SET_DIRECT_IO:
1511 		err = loop_set_dio(lo, arg);
1512 		break;
1513 	case LOOP_SET_BLOCK_SIZE:
1514 		err = loop_set_block_size(lo, arg);
1515 		break;
1516 	default:
1517 		err = -EINVAL;
1518 	}
1519 	mutex_unlock(&lo->lo_mutex);
1520 	return err;
1521 }
1522 
1523 static int lo_ioctl(struct block_device *bdev, fmode_t mode,
1524 	unsigned int cmd, unsigned long arg)
1525 {
1526 	struct loop_device *lo = bdev->bd_disk->private_data;
1527 	void __user *argp = (void __user *) arg;
1528 	int err;
1529 
1530 	switch (cmd) {
1531 	case LOOP_SET_FD: {
1532 		/*
1533 		 * Legacy case - pass in a zeroed out struct loop_config with
1534 		 * only the file descriptor set , which corresponds with the
1535 		 * default parameters we'd have used otherwise.
1536 		 */
1537 		struct loop_config config;
1538 
1539 		memset(&config, 0, sizeof(config));
1540 		config.fd = arg;
1541 
1542 		return loop_configure(lo, mode, bdev, &config);
1543 	}
1544 	case LOOP_CONFIGURE: {
1545 		struct loop_config config;
1546 
1547 		if (copy_from_user(&config, argp, sizeof(config)))
1548 			return -EFAULT;
1549 
1550 		return loop_configure(lo, mode, bdev, &config);
1551 	}
1552 	case LOOP_CHANGE_FD:
1553 		return loop_change_fd(lo, bdev, arg);
1554 	case LOOP_CLR_FD:
1555 		return loop_clr_fd(lo);
1556 	case LOOP_SET_STATUS:
1557 		err = -EPERM;
1558 		if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN)) {
1559 			err = loop_set_status_old(lo, argp);
1560 		}
1561 		break;
1562 	case LOOP_GET_STATUS:
1563 		return loop_get_status_old(lo, argp);
1564 	case LOOP_SET_STATUS64:
1565 		err = -EPERM;
1566 		if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN)) {
1567 			err = loop_set_status64(lo, argp);
1568 		}
1569 		break;
1570 	case LOOP_GET_STATUS64:
1571 		return loop_get_status64(lo, argp);
1572 	case LOOP_SET_CAPACITY:
1573 	case LOOP_SET_DIRECT_IO:
1574 	case LOOP_SET_BLOCK_SIZE:
1575 		if (!(mode & FMODE_WRITE) && !capable(CAP_SYS_ADMIN))
1576 			return -EPERM;
1577 		fallthrough;
1578 	default:
1579 		err = lo_simple_ioctl(lo, cmd, arg);
1580 		break;
1581 	}
1582 
1583 	return err;
1584 }
1585 
1586 #ifdef CONFIG_COMPAT
1587 struct compat_loop_info {
1588 	compat_int_t	lo_number;      /* ioctl r/o */
1589 	compat_dev_t	lo_device;      /* ioctl r/o */
1590 	compat_ulong_t	lo_inode;       /* ioctl r/o */
1591 	compat_dev_t	lo_rdevice;     /* ioctl r/o */
1592 	compat_int_t	lo_offset;
1593 	compat_int_t	lo_encrypt_type;        /* obsolete, ignored */
1594 	compat_int_t	lo_encrypt_key_size;    /* ioctl w/o */
1595 	compat_int_t	lo_flags;       /* ioctl r/o */
1596 	char		lo_name[LO_NAME_SIZE];
1597 	unsigned char	lo_encrypt_key[LO_KEY_SIZE]; /* ioctl w/o */
1598 	compat_ulong_t	lo_init[2];
1599 	char		reserved[4];
1600 };
1601 
1602 /*
1603  * Transfer 32-bit compatibility structure in userspace to 64-bit loop info
1604  * - noinlined to reduce stack space usage in main part of driver
1605  */
1606 static noinline int
1607 loop_info64_from_compat(const struct compat_loop_info __user *arg,
1608 			struct loop_info64 *info64)
1609 {
1610 	struct compat_loop_info info;
1611 
1612 	if (copy_from_user(&info, arg, sizeof(info)))
1613 		return -EFAULT;
1614 
1615 	memset(info64, 0, sizeof(*info64));
1616 	info64->lo_number = info.lo_number;
1617 	info64->lo_device = info.lo_device;
1618 	info64->lo_inode = info.lo_inode;
1619 	info64->lo_rdevice = info.lo_rdevice;
1620 	info64->lo_offset = info.lo_offset;
1621 	info64->lo_sizelimit = 0;
1622 	info64->lo_flags = info.lo_flags;
1623 	memcpy(info64->lo_file_name, info.lo_name, LO_NAME_SIZE);
1624 	return 0;
1625 }
1626 
1627 /*
1628  * Transfer 64-bit loop info to 32-bit compatibility structure in userspace
1629  * - noinlined to reduce stack space usage in main part of driver
1630  */
1631 static noinline int
1632 loop_info64_to_compat(const struct loop_info64 *info64,
1633 		      struct compat_loop_info __user *arg)
1634 {
1635 	struct compat_loop_info info;
1636 
1637 	memset(&info, 0, sizeof(info));
1638 	info.lo_number = info64->lo_number;
1639 	info.lo_device = info64->lo_device;
1640 	info.lo_inode = info64->lo_inode;
1641 	info.lo_rdevice = info64->lo_rdevice;
1642 	info.lo_offset = info64->lo_offset;
1643 	info.lo_flags = info64->lo_flags;
1644 	memcpy(info.lo_name, info64->lo_file_name, LO_NAME_SIZE);
1645 
1646 	/* error in case values were truncated */
1647 	if (info.lo_device != info64->lo_device ||
1648 	    info.lo_rdevice != info64->lo_rdevice ||
1649 	    info.lo_inode != info64->lo_inode ||
1650 	    info.lo_offset != info64->lo_offset)
1651 		return -EOVERFLOW;
1652 
1653 	if (copy_to_user(arg, &info, sizeof(info)))
1654 		return -EFAULT;
1655 	return 0;
1656 }
1657 
1658 static int
1659 loop_set_status_compat(struct loop_device *lo,
1660 		       const struct compat_loop_info __user *arg)
1661 {
1662 	struct loop_info64 info64;
1663 	int ret;
1664 
1665 	ret = loop_info64_from_compat(arg, &info64);
1666 	if (ret < 0)
1667 		return ret;
1668 	return loop_set_status(lo, &info64);
1669 }
1670 
1671 static int
1672 loop_get_status_compat(struct loop_device *lo,
1673 		       struct compat_loop_info __user *arg)
1674 {
1675 	struct loop_info64 info64;
1676 	int err;
1677 
1678 	if (!arg)
1679 		return -EINVAL;
1680 	err = loop_get_status(lo, &info64);
1681 	if (!err)
1682 		err = loop_info64_to_compat(&info64, arg);
1683 	return err;
1684 }
1685 
1686 static int lo_compat_ioctl(struct block_device *bdev, fmode_t mode,
1687 			   unsigned int cmd, unsigned long arg)
1688 {
1689 	struct loop_device *lo = bdev->bd_disk->private_data;
1690 	int err;
1691 
1692 	switch(cmd) {
1693 	case LOOP_SET_STATUS:
1694 		err = loop_set_status_compat(lo,
1695 			     (const struct compat_loop_info __user *)arg);
1696 		break;
1697 	case LOOP_GET_STATUS:
1698 		err = loop_get_status_compat(lo,
1699 				     (struct compat_loop_info __user *)arg);
1700 		break;
1701 	case LOOP_SET_CAPACITY:
1702 	case LOOP_CLR_FD:
1703 	case LOOP_GET_STATUS64:
1704 	case LOOP_SET_STATUS64:
1705 	case LOOP_CONFIGURE:
1706 		arg = (unsigned long) compat_ptr(arg);
1707 		fallthrough;
1708 	case LOOP_SET_FD:
1709 	case LOOP_CHANGE_FD:
1710 	case LOOP_SET_BLOCK_SIZE:
1711 	case LOOP_SET_DIRECT_IO:
1712 		err = lo_ioctl(bdev, mode, cmd, arg);
1713 		break;
1714 	default:
1715 		err = -ENOIOCTLCMD;
1716 		break;
1717 	}
1718 	return err;
1719 }
1720 #endif
1721 
1722 static void lo_release(struct gendisk *disk, fmode_t mode)
1723 {
1724 	struct loop_device *lo = disk->private_data;
1725 
1726 	if (disk_openers(disk) > 0)
1727 		return;
1728 
1729 	mutex_lock(&lo->lo_mutex);
1730 	if (lo->lo_state == Lo_bound && (lo->lo_flags & LO_FLAGS_AUTOCLEAR)) {
1731 		lo->lo_state = Lo_rundown;
1732 		mutex_unlock(&lo->lo_mutex);
1733 		/*
1734 		 * In autoclear mode, stop the loop thread
1735 		 * and remove configuration after last close.
1736 		 */
1737 		__loop_clr_fd(lo, true);
1738 		return;
1739 	}
1740 	mutex_unlock(&lo->lo_mutex);
1741 }
1742 
1743 static void lo_free_disk(struct gendisk *disk)
1744 {
1745 	struct loop_device *lo = disk->private_data;
1746 
1747 	if (lo->workqueue)
1748 		destroy_workqueue(lo->workqueue);
1749 	loop_free_idle_workers(lo, true);
1750 	del_timer_sync(&lo->timer);
1751 	mutex_destroy(&lo->lo_mutex);
1752 	kfree(lo);
1753 }
1754 
1755 static const struct block_device_operations lo_fops = {
1756 	.owner =	THIS_MODULE,
1757 	.release =	lo_release,
1758 	.ioctl =	lo_ioctl,
1759 #ifdef CONFIG_COMPAT
1760 	.compat_ioctl =	lo_compat_ioctl,
1761 #endif
1762 	.free_disk =	lo_free_disk,
1763 };
1764 
1765 /*
1766  * And now the modules code and kernel interface.
1767  */
1768 static int max_loop;
1769 module_param(max_loop, int, 0444);
1770 MODULE_PARM_DESC(max_loop, "Maximum number of loop devices");
1771 module_param(max_part, int, 0444);
1772 MODULE_PARM_DESC(max_part, "Maximum number of partitions per loop device");
1773 
1774 static int hw_queue_depth = LOOP_DEFAULT_HW_Q_DEPTH;
1775 
1776 static int loop_set_hw_queue_depth(const char *s, const struct kernel_param *p)
1777 {
1778 	int ret = kstrtoint(s, 10, &hw_queue_depth);
1779 
1780 	return (ret || (hw_queue_depth < 1)) ? -EINVAL : 0;
1781 }
1782 
1783 static const struct kernel_param_ops loop_hw_qdepth_param_ops = {
1784 	.set	= loop_set_hw_queue_depth,
1785 	.get	= param_get_int,
1786 };
1787 
1788 device_param_cb(hw_queue_depth, &loop_hw_qdepth_param_ops, &hw_queue_depth, 0444);
1789 MODULE_PARM_DESC(hw_queue_depth, "Queue depth for each hardware queue. Default: 128");
1790 
1791 MODULE_LICENSE("GPL");
1792 MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR);
1793 
1794 static blk_status_t loop_queue_rq(struct blk_mq_hw_ctx *hctx,
1795 		const struct blk_mq_queue_data *bd)
1796 {
1797 	struct request *rq = bd->rq;
1798 	struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
1799 	struct loop_device *lo = rq->q->queuedata;
1800 
1801 	blk_mq_start_request(rq);
1802 
1803 	if (lo->lo_state != Lo_bound)
1804 		return BLK_STS_IOERR;
1805 
1806 	switch (req_op(rq)) {
1807 	case REQ_OP_FLUSH:
1808 	case REQ_OP_DISCARD:
1809 	case REQ_OP_WRITE_ZEROES:
1810 		cmd->use_aio = false;
1811 		break;
1812 	default:
1813 		cmd->use_aio = lo->use_dio;
1814 		break;
1815 	}
1816 
1817 	/* always use the first bio's css */
1818 	cmd->blkcg_css = NULL;
1819 	cmd->memcg_css = NULL;
1820 #ifdef CONFIG_BLK_CGROUP
1821 	if (rq->bio && rq->bio->bi_blkg) {
1822 		cmd->blkcg_css = &bio_blkcg(rq->bio)->css;
1823 #ifdef CONFIG_MEMCG
1824 		cmd->memcg_css =
1825 			cgroup_get_e_css(cmd->blkcg_css->cgroup,
1826 					&memory_cgrp_subsys);
1827 #endif
1828 	}
1829 #endif
1830 	loop_queue_work(lo, cmd);
1831 
1832 	return BLK_STS_OK;
1833 }
1834 
1835 static void loop_handle_cmd(struct loop_cmd *cmd)
1836 {
1837 	struct request *rq = blk_mq_rq_from_pdu(cmd);
1838 	const bool write = op_is_write(req_op(rq));
1839 	struct loop_device *lo = rq->q->queuedata;
1840 	int ret = 0;
1841 	struct mem_cgroup *old_memcg = NULL;
1842 
1843 	if (write && (lo->lo_flags & LO_FLAGS_READ_ONLY)) {
1844 		ret = -EIO;
1845 		goto failed;
1846 	}
1847 
1848 	if (cmd->blkcg_css)
1849 		kthread_associate_blkcg(cmd->blkcg_css);
1850 	if (cmd->memcg_css)
1851 		old_memcg = set_active_memcg(
1852 			mem_cgroup_from_css(cmd->memcg_css));
1853 
1854 	ret = do_req_filebacked(lo, rq);
1855 
1856 	if (cmd->blkcg_css)
1857 		kthread_associate_blkcg(NULL);
1858 
1859 	if (cmd->memcg_css) {
1860 		set_active_memcg(old_memcg);
1861 		css_put(cmd->memcg_css);
1862 	}
1863  failed:
1864 	/* complete non-aio request */
1865 	if (!cmd->use_aio || ret) {
1866 		if (ret == -EOPNOTSUPP)
1867 			cmd->ret = ret;
1868 		else
1869 			cmd->ret = ret ? -EIO : 0;
1870 		if (likely(!blk_should_fake_timeout(rq->q)))
1871 			blk_mq_complete_request(rq);
1872 	}
1873 }
1874 
1875 static void loop_process_work(struct loop_worker *worker,
1876 			struct list_head *cmd_list, struct loop_device *lo)
1877 {
1878 	int orig_flags = current->flags;
1879 	struct loop_cmd *cmd;
1880 
1881 	current->flags |= PF_LOCAL_THROTTLE | PF_MEMALLOC_NOIO;
1882 	spin_lock_irq(&lo->lo_work_lock);
1883 	while (!list_empty(cmd_list)) {
1884 		cmd = container_of(
1885 			cmd_list->next, struct loop_cmd, list_entry);
1886 		list_del(cmd_list->next);
1887 		spin_unlock_irq(&lo->lo_work_lock);
1888 
1889 		loop_handle_cmd(cmd);
1890 		cond_resched();
1891 
1892 		spin_lock_irq(&lo->lo_work_lock);
1893 	}
1894 
1895 	/*
1896 	 * We only add to the idle list if there are no pending cmds
1897 	 * *and* the worker will not run again which ensures that it
1898 	 * is safe to free any worker on the idle list
1899 	 */
1900 	if (worker && !work_pending(&worker->work)) {
1901 		worker->last_ran_at = jiffies;
1902 		list_add_tail(&worker->idle_list, &lo->idle_worker_list);
1903 		loop_set_timer(lo);
1904 	}
1905 	spin_unlock_irq(&lo->lo_work_lock);
1906 	current->flags = orig_flags;
1907 }
1908 
1909 static void loop_workfn(struct work_struct *work)
1910 {
1911 	struct loop_worker *worker =
1912 		container_of(work, struct loop_worker, work);
1913 	loop_process_work(worker, &worker->cmd_list, worker->lo);
1914 }
1915 
1916 static void loop_rootcg_workfn(struct work_struct *work)
1917 {
1918 	struct loop_device *lo =
1919 		container_of(work, struct loop_device, rootcg_work);
1920 	loop_process_work(NULL, &lo->rootcg_cmd_list, lo);
1921 }
1922 
1923 static const struct blk_mq_ops loop_mq_ops = {
1924 	.queue_rq       = loop_queue_rq,
1925 	.complete	= lo_complete_rq,
1926 };
1927 
1928 static int loop_add(int i)
1929 {
1930 	struct loop_device *lo;
1931 	struct gendisk *disk;
1932 	int err;
1933 
1934 	err = -ENOMEM;
1935 	lo = kzalloc(sizeof(*lo), GFP_KERNEL);
1936 	if (!lo)
1937 		goto out;
1938 	lo->worker_tree = RB_ROOT;
1939 	INIT_LIST_HEAD(&lo->idle_worker_list);
1940 	timer_setup(&lo->timer, loop_free_idle_workers_timer, TIMER_DEFERRABLE);
1941 	lo->lo_state = Lo_unbound;
1942 
1943 	err = mutex_lock_killable(&loop_ctl_mutex);
1944 	if (err)
1945 		goto out_free_dev;
1946 
1947 	/* allocate id, if @id >= 0, we're requesting that specific id */
1948 	if (i >= 0) {
1949 		err = idr_alloc(&loop_index_idr, lo, i, i + 1, GFP_KERNEL);
1950 		if (err == -ENOSPC)
1951 			err = -EEXIST;
1952 	} else {
1953 		err = idr_alloc(&loop_index_idr, lo, 0, 0, GFP_KERNEL);
1954 	}
1955 	mutex_unlock(&loop_ctl_mutex);
1956 	if (err < 0)
1957 		goto out_free_dev;
1958 	i = err;
1959 
1960 	lo->tag_set.ops = &loop_mq_ops;
1961 	lo->tag_set.nr_hw_queues = 1;
1962 	lo->tag_set.queue_depth = hw_queue_depth;
1963 	lo->tag_set.numa_node = NUMA_NO_NODE;
1964 	lo->tag_set.cmd_size = sizeof(struct loop_cmd);
1965 	lo->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_STACKING |
1966 		BLK_MQ_F_NO_SCHED_BY_DEFAULT;
1967 	lo->tag_set.driver_data = lo;
1968 
1969 	err = blk_mq_alloc_tag_set(&lo->tag_set);
1970 	if (err)
1971 		goto out_free_idr;
1972 
1973 	disk = lo->lo_disk = blk_mq_alloc_disk(&lo->tag_set, lo);
1974 	if (IS_ERR(disk)) {
1975 		err = PTR_ERR(disk);
1976 		goto out_cleanup_tags;
1977 	}
1978 	lo->lo_queue = lo->lo_disk->queue;
1979 
1980 	blk_queue_max_hw_sectors(lo->lo_queue, BLK_DEF_MAX_SECTORS);
1981 
1982 	/*
1983 	 * By default, we do buffer IO, so it doesn't make sense to enable
1984 	 * merge because the I/O submitted to backing file is handled page by
1985 	 * page. For directio mode, merge does help to dispatch bigger request
1986 	 * to underlayer disk. We will enable merge once directio is enabled.
1987 	 */
1988 	blk_queue_flag_set(QUEUE_FLAG_NOMERGES, lo->lo_queue);
1989 
1990 	/*
1991 	 * Disable partition scanning by default. The in-kernel partition
1992 	 * scanning can be requested individually per-device during its
1993 	 * setup. Userspace can always add and remove partitions from all
1994 	 * devices. The needed partition minors are allocated from the
1995 	 * extended minor space, the main loop device numbers will continue
1996 	 * to match the loop minors, regardless of the number of partitions
1997 	 * used.
1998 	 *
1999 	 * If max_part is given, partition scanning is globally enabled for
2000 	 * all loop devices. The minors for the main loop devices will be
2001 	 * multiples of max_part.
2002 	 *
2003 	 * Note: Global-for-all-devices, set-only-at-init, read-only module
2004 	 * parameteters like 'max_loop' and 'max_part' make things needlessly
2005 	 * complicated, are too static, inflexible and may surprise
2006 	 * userspace tools. Parameters like this in general should be avoided.
2007 	 */
2008 	if (!part_shift)
2009 		disk->flags |= GENHD_FL_NO_PART;
2010 	mutex_init(&lo->lo_mutex);
2011 	lo->lo_number		= i;
2012 	spin_lock_init(&lo->lo_lock);
2013 	spin_lock_init(&lo->lo_work_lock);
2014 	INIT_WORK(&lo->rootcg_work, loop_rootcg_workfn);
2015 	INIT_LIST_HEAD(&lo->rootcg_cmd_list);
2016 	disk->major		= LOOP_MAJOR;
2017 	disk->first_minor	= i << part_shift;
2018 	disk->minors		= 1 << part_shift;
2019 	disk->fops		= &lo_fops;
2020 	disk->private_data	= lo;
2021 	disk->queue		= lo->lo_queue;
2022 	disk->events		= DISK_EVENT_MEDIA_CHANGE;
2023 	disk->event_flags	= DISK_EVENT_FLAG_UEVENT;
2024 	sprintf(disk->disk_name, "loop%d", i);
2025 	/* Make this loop device reachable from pathname. */
2026 	err = add_disk(disk);
2027 	if (err)
2028 		goto out_cleanup_disk;
2029 
2030 	/* Show this loop device. */
2031 	mutex_lock(&loop_ctl_mutex);
2032 	lo->idr_visible = true;
2033 	mutex_unlock(&loop_ctl_mutex);
2034 
2035 	return i;
2036 
2037 out_cleanup_disk:
2038 	blk_cleanup_disk(disk);
2039 out_cleanup_tags:
2040 	blk_mq_free_tag_set(&lo->tag_set);
2041 out_free_idr:
2042 	mutex_lock(&loop_ctl_mutex);
2043 	idr_remove(&loop_index_idr, i);
2044 	mutex_unlock(&loop_ctl_mutex);
2045 out_free_dev:
2046 	kfree(lo);
2047 out:
2048 	return err;
2049 }
2050 
2051 static void loop_remove(struct loop_device *lo)
2052 {
2053 	/* Make this loop device unreachable from pathname. */
2054 	del_gendisk(lo->lo_disk);
2055 	blk_cleanup_queue(lo->lo_disk->queue);
2056 	blk_mq_free_tag_set(&lo->tag_set);
2057 
2058 	mutex_lock(&loop_ctl_mutex);
2059 	idr_remove(&loop_index_idr, lo->lo_number);
2060 	mutex_unlock(&loop_ctl_mutex);
2061 
2062 	put_disk(lo->lo_disk);
2063 }
2064 
2065 static void loop_probe(dev_t dev)
2066 {
2067 	int idx = MINOR(dev) >> part_shift;
2068 
2069 	if (max_loop && idx >= max_loop)
2070 		return;
2071 	loop_add(idx);
2072 }
2073 
2074 static int loop_control_remove(int idx)
2075 {
2076 	struct loop_device *lo;
2077 	int ret;
2078 
2079 	if (idx < 0) {
2080 		pr_warn_once("deleting an unspecified loop device is not supported.\n");
2081 		return -EINVAL;
2082 	}
2083 
2084 	/* Hide this loop device for serialization. */
2085 	ret = mutex_lock_killable(&loop_ctl_mutex);
2086 	if (ret)
2087 		return ret;
2088 	lo = idr_find(&loop_index_idr, idx);
2089 	if (!lo || !lo->idr_visible)
2090 		ret = -ENODEV;
2091 	else
2092 		lo->idr_visible = false;
2093 	mutex_unlock(&loop_ctl_mutex);
2094 	if (ret)
2095 		return ret;
2096 
2097 	/* Check whether this loop device can be removed. */
2098 	ret = mutex_lock_killable(&lo->lo_mutex);
2099 	if (ret)
2100 		goto mark_visible;
2101 	if (lo->lo_state != Lo_unbound || disk_openers(lo->lo_disk) > 0) {
2102 		mutex_unlock(&lo->lo_mutex);
2103 		ret = -EBUSY;
2104 		goto mark_visible;
2105 	}
2106 	/* Mark this loop device as no more bound, but not quite unbound yet */
2107 	lo->lo_state = Lo_deleting;
2108 	mutex_unlock(&lo->lo_mutex);
2109 
2110 	loop_remove(lo);
2111 	return 0;
2112 
2113 mark_visible:
2114 	/* Show this loop device again. */
2115 	mutex_lock(&loop_ctl_mutex);
2116 	lo->idr_visible = true;
2117 	mutex_unlock(&loop_ctl_mutex);
2118 	return ret;
2119 }
2120 
2121 static int loop_control_get_free(int idx)
2122 {
2123 	struct loop_device *lo;
2124 	int id, ret;
2125 
2126 	ret = mutex_lock_killable(&loop_ctl_mutex);
2127 	if (ret)
2128 		return ret;
2129 	idr_for_each_entry(&loop_index_idr, lo, id) {
2130 		/* Hitting a race results in creating a new loop device which is harmless. */
2131 		if (lo->idr_visible && data_race(lo->lo_state) == Lo_unbound)
2132 			goto found;
2133 	}
2134 	mutex_unlock(&loop_ctl_mutex);
2135 	return loop_add(-1);
2136 found:
2137 	mutex_unlock(&loop_ctl_mutex);
2138 	return id;
2139 }
2140 
2141 static long loop_control_ioctl(struct file *file, unsigned int cmd,
2142 			       unsigned long parm)
2143 {
2144 	switch (cmd) {
2145 	case LOOP_CTL_ADD:
2146 		return loop_add(parm);
2147 	case LOOP_CTL_REMOVE:
2148 		return loop_control_remove(parm);
2149 	case LOOP_CTL_GET_FREE:
2150 		return loop_control_get_free(parm);
2151 	default:
2152 		return -ENOSYS;
2153 	}
2154 }
2155 
2156 static const struct file_operations loop_ctl_fops = {
2157 	.open		= nonseekable_open,
2158 	.unlocked_ioctl	= loop_control_ioctl,
2159 	.compat_ioctl	= loop_control_ioctl,
2160 	.owner		= THIS_MODULE,
2161 	.llseek		= noop_llseek,
2162 };
2163 
2164 static struct miscdevice loop_misc = {
2165 	.minor		= LOOP_CTRL_MINOR,
2166 	.name		= "loop-control",
2167 	.fops		= &loop_ctl_fops,
2168 };
2169 
2170 MODULE_ALIAS_MISCDEV(LOOP_CTRL_MINOR);
2171 MODULE_ALIAS("devname:loop-control");
2172 
2173 static int __init loop_init(void)
2174 {
2175 	int i, nr;
2176 	int err;
2177 
2178 	part_shift = 0;
2179 	if (max_part > 0) {
2180 		part_shift = fls(max_part);
2181 
2182 		/*
2183 		 * Adjust max_part according to part_shift as it is exported
2184 		 * to user space so that user can decide correct minor number
2185 		 * if [s]he want to create more devices.
2186 		 *
2187 		 * Note that -1 is required because partition 0 is reserved
2188 		 * for the whole disk.
2189 		 */
2190 		max_part = (1UL << part_shift) - 1;
2191 	}
2192 
2193 	if ((1UL << part_shift) > DISK_MAX_PARTS) {
2194 		err = -EINVAL;
2195 		goto err_out;
2196 	}
2197 
2198 	if (max_loop > 1UL << (MINORBITS - part_shift)) {
2199 		err = -EINVAL;
2200 		goto err_out;
2201 	}
2202 
2203 	/*
2204 	 * If max_loop is specified, create that many devices upfront.
2205 	 * This also becomes a hard limit. If max_loop is not specified,
2206 	 * create CONFIG_BLK_DEV_LOOP_MIN_COUNT loop devices at module
2207 	 * init time. Loop devices can be requested on-demand with the
2208 	 * /dev/loop-control interface, or be instantiated by accessing
2209 	 * a 'dead' device node.
2210 	 */
2211 	if (max_loop)
2212 		nr = max_loop;
2213 	else
2214 		nr = CONFIG_BLK_DEV_LOOP_MIN_COUNT;
2215 
2216 	err = misc_register(&loop_misc);
2217 	if (err < 0)
2218 		goto err_out;
2219 
2220 
2221 	if (__register_blkdev(LOOP_MAJOR, "loop", loop_probe)) {
2222 		err = -EIO;
2223 		goto misc_out;
2224 	}
2225 
2226 	/* pre-create number of devices given by config or max_loop */
2227 	for (i = 0; i < nr; i++)
2228 		loop_add(i);
2229 
2230 	printk(KERN_INFO "loop: module loaded\n");
2231 	return 0;
2232 
2233 misc_out:
2234 	misc_deregister(&loop_misc);
2235 err_out:
2236 	return err;
2237 }
2238 
2239 static void __exit loop_exit(void)
2240 {
2241 	struct loop_device *lo;
2242 	int id;
2243 
2244 	unregister_blkdev(LOOP_MAJOR, "loop");
2245 	misc_deregister(&loop_misc);
2246 
2247 	/*
2248 	 * There is no need to use loop_ctl_mutex here, for nobody else can
2249 	 * access loop_index_idr when this module is unloading (unless forced
2250 	 * module unloading is requested). If this is not a clean unloading,
2251 	 * we have no means to avoid kernel crash.
2252 	 */
2253 	idr_for_each_entry(&loop_index_idr, lo, id)
2254 		loop_remove(lo);
2255 
2256 	idr_destroy(&loop_index_idr);
2257 }
2258 
2259 module_init(loop_init);
2260 module_exit(loop_exit);
2261 
2262 #ifndef MODULE
2263 static int __init max_loop_setup(char *str)
2264 {
2265 	max_loop = simple_strtol(str, NULL, 0);
2266 	return 1;
2267 }
2268 
2269 __setup("max_loop=", max_loop_setup);
2270 #endif
2271