blob: fb2237c73e618ed78eaa5ea2835817e9a53222cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Al Viro83a87612013-05-12 10:14:07 -04002 * loop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 */
David Howells607ca462012-10-13 10:46:48 +01009#ifndef _LINUX_LOOP_H
10#define _LINUX_LOOP_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/bio.h>
13#include <linux/blkdev.h>
Jens Axboe78e367a2015-01-02 15:20:25 -070014#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/spinlock.h>
Ingo Molnarf85221d2006-03-23 03:00:38 -080016#include <linux/mutex.h>
Ming Leie03a3d72015-08-17 10:31:48 +080017#include <linux/kthread.h>
David Howells607ca462012-10-13 10:46:48 +010018#include <uapi/linux/loop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/* Possible states of device */
21enum {
22 Lo_unbound,
23 Lo_bound,
24 Lo_rundown,
25};
26
27struct loop_func_table;
28
29struct loop_device {
30 int lo_number;
Ming Leif8933662015-05-06 12:26:23 +080031 atomic_t lo_refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 loff_t lo_offset;
33 loff_t lo_sizelimit;
34 int lo_flags;
35 int (*transfer)(struct loop_device *, int cmd,
36 struct page *raw_page, unsigned raw_off,
37 struct page *loop_page, unsigned loop_off,
38 int size, sector_t real_block);
39 char lo_file_name[LO_NAME_SIZE];
40 char lo_crypt_name[LO_NAME_SIZE];
41 char lo_encrypt_key[LO_KEY_SIZE];
42 int lo_encrypt_key_size;
43 struct loop_func_table *lo_encryption;
44 __u32 lo_init[2];
Eric W. Biedermane4849732012-02-11 11:23:51 -080045 kuid_t lo_key_owner; /* Who set the key */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 int (*ioctl)(struct loop_device *, int cmd,
47 unsigned long arg);
48
49 struct file * lo_backing_file;
50 struct block_device *lo_device;
51 unsigned lo_blocksize;
52 void *key_data;
53
Al Virob4e3ca12005-10-21 03:22:34 -040054 gfp_t old_gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 spinlock_t lo_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int lo_state;
Ingo Molnarf85221d2006-03-23 03:00:38 -080058 struct mutex lo_ctl_mutex;
Ming Leie03a3d72015-08-17 10:31:48 +080059 struct kthread_worker worker;
60 struct task_struct *worker_task;
Ming Lei2e5ab5f2015-08-17 10:31:49 +080061 bool use_dio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Arnd Bergmann01e457c2007-07-23 18:44:00 -070063 struct request_queue *lo_queue;
Ming Leib5dd2f62014-12-31 13:22:57 +000064 struct blk_mq_tag_set tag_set;
Ken Chen73285082007-05-08 00:28:20 -070065 struct gendisk *lo_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Ming Leib5dd2f62014-12-31 13:22:57 +000068struct loop_cmd {
Ming Leie03a3d72015-08-17 10:31:48 +080069 struct kthread_work work;
Ming Leib5dd2f62014-12-31 13:22:57 +000070 struct request *rq;
71 struct list_head list;
Ming Leibc07c102015-08-17 10:31:51 +080072 bool use_aio; /* use AIO interface to handle I/O */
73 struct kiocb iocb;
Ming Leib5dd2f62014-12-31 13:22:57 +000074};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* Support for loadable transfer modules */
77struct loop_func_table {
78 int number; /* filter type */
79 int (*transfer)(struct loop_device *lo, int cmd,
80 struct page *raw_page, unsigned raw_off,
81 struct page *loop_page, unsigned loop_off,
82 int size, sector_t real_block);
83 int (*init)(struct loop_device *, const struct loop_info64 *);
84 /* release is called from loop_unregister_transfer or clr_fd */
85 int (*release)(struct loop_device *);
86 int (*ioctl)(struct loop_device *, int cmd, unsigned long arg);
87 struct module *owner;
88};
89
90int loop_register_transfer(struct loop_func_table *funcs);
91int loop_unregister_transfer(int number);
92
93#endif