blob: 1dd8fd6613b8d20e2292b73d001396efe1a6f718 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * gendisk handling
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
6#include <linux/fs.h>
7#include <linux/genhd.h>
Andrew Mortonb446b602007-02-20 13:57:48 -08008#include <linux/kdev_t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040011#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13#include <linux/spinlock.h>
Alexey Dobriyanf5009752008-10-04 23:53:21 +040014#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/seq_file.h>
16#include <linux/slab.h>
17#include <linux/kmod.h>
18#include <linux/kobj_map.h>
Jes Sorensen58383af2006-02-06 14:12:43 -080019#include <linux/mutex.h>
Tejun Heobcce3de2008-08-25 19:47:22 +090020#include <linux/idr.h>
Tejun Heo77ea8872010-12-08 20:57:37 +010021#include <linux/log2.h>
Ming Lei25e823c2013-02-22 16:34:13 -080022#include <linux/pm_runtime.h>
Vishal Verma99e66082016-01-09 08:36:51 -080023#include <linux/badblocks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Adrian Bunkff889722008-03-04 11:23:45 +010025#include "blk.h"
26
Kay Sieversedfaa7c2007-05-21 22:08:01 +020027static DEFINE_MUTEX(block_class_lock);
Kay Sieversedfaa7c2007-05-21 22:08:01 +020028struct kobject *block_depr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Tejun Heobcce3de2008-08-25 19:47:22 +090030/* for extended dynamic devt allocation, currently only one major is used */
Tejun Heoce23bba2013-02-27 17:03:56 -080031#define NR_EXT_DEVT (1 << MINORBITS)
Tejun Heobcce3de2008-08-25 19:47:22 +090032
Keith Busch2da78092014-08-26 09:05:36 -060033/* For extended devt allocation. ext_devt_lock prevents look up
Tejun Heobcce3de2008-08-25 19:47:22 +090034 * results from going away underneath its user.
35 */
Keith Busch2da78092014-08-26 09:05:36 -060036static DEFINE_SPINLOCK(ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +090037static DEFINE_IDR(ext_devt_idr);
38
Bart Van Asscheedf8ff52017-06-20 11:15:48 -070039static const struct device_type disk_type;
Adrian Bunk1826ead2008-03-04 11:23:46 +010040
Derek Basehore12c2bdb2012-12-18 12:27:20 -080041static void disk_check_events(struct disk_events *ev,
42 unsigned int *clearing_ptr);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +010043static void disk_alloc_events(struct gendisk *disk);
Tejun Heo77ea8872010-12-08 20:57:37 +010044static void disk_add_events(struct gendisk *disk);
45static void disk_del_events(struct gendisk *disk);
46static void disk_release_events(struct gendisk *disk);
47
Jens Axboef299b7c2017-08-08 17:51:45 -060048void part_inc_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
49{
Jens Axboe344e9ff2018-11-15 12:22:51 -070050 if (queue_is_mq(q))
Jens Axboef299b7c2017-08-08 17:51:45 -060051 return;
52
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050053 part_stat_local_inc(part, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060054 if (part->partno)
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050055 part_stat_local_inc(&part_to_disk(part)->part0, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060056}
57
58void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
59{
Jens Axboe344e9ff2018-11-15 12:22:51 -070060 if (queue_is_mq(q))
Jens Axboef299b7c2017-08-08 17:51:45 -060061 return;
62
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050063 part_stat_local_dec(part, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060064 if (part->partno)
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050065 part_stat_local_dec(&part_to_disk(part)->part0, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060066}
67
Mikulas Patockae016b782018-12-06 11:41:21 -050068unsigned int part_in_flight(struct request_queue *q, struct hd_struct *part)
Jens Axboef299b7c2017-08-08 17:51:45 -060069{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050070 int cpu;
Mikulas Patockae016b782018-12-06 11:41:21 -050071 unsigned int inflight;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050072
Jens Axboe344e9ff2018-11-15 12:22:51 -070073 if (queue_is_mq(q)) {
Mikulas Patockae016b782018-12-06 11:41:21 -050074 return blk_mq_in_flight(q, part);
Jens Axboef299b7c2017-08-08 17:51:45 -060075 }
76
Mikulas Patockae016b782018-12-06 11:41:21 -050077 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050078 for_each_possible_cpu(cpu) {
Mikulas Patockae016b782018-12-06 11:41:21 -050079 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
80 part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050081 }
Mikulas Patockae016b782018-12-06 11:41:21 -050082 if ((int)inflight < 0)
83 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050084
Mikulas Patockae016b782018-12-06 11:41:21 -050085 return inflight;
Jens Axboef299b7c2017-08-08 17:51:45 -060086}
87
Omar Sandovalbf0ddab2018-04-26 00:21:59 -070088void part_in_flight_rw(struct request_queue *q, struct hd_struct *part,
89 unsigned int inflight[2])
90{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050091 int cpu;
92
Jens Axboe344e9ff2018-11-15 12:22:51 -070093 if (queue_is_mq(q)) {
Omar Sandovalbf0ddab2018-04-26 00:21:59 -070094 blk_mq_in_flight_rw(q, part, inflight);
95 return;
96 }
97
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050098 inflight[0] = 0;
99 inflight[1] = 0;
100 for_each_possible_cpu(cpu) {
101 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
102 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
103 }
104 if ((int)inflight[0] < 0)
105 inflight[0] = 0;
106 if ((int)inflight[1] < 0)
107 inflight[1] = 0;
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700108}
109
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200110struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
111{
112 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
113
114 if (unlikely(partno < 0 || partno >= ptbl->len))
115 return NULL;
116 return rcu_dereference(ptbl->part[partno]);
117}
118
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200119/**
120 * disk_get_part - get partition
121 * @disk: disk to look partition from
122 * @partno: partition number
123 *
124 * Look for partition @partno from @disk. If found, increment
125 * reference count and return it.
126 *
127 * CONTEXT:
128 * Don't care.
129 *
130 * RETURNS:
131 * Pointer to the found partition on success, NULL if not found.
132 */
133struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
134{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200135 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900136
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200137 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200138 part = __disk_get_part(disk, partno);
139 if (part)
140 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200141 rcu_read_unlock();
142
143 return part;
144}
145EXPORT_SYMBOL_GPL(disk_get_part);
146
147/**
148 * disk_part_iter_init - initialize partition iterator
149 * @piter: iterator to initialize
150 * @disk: disk to iterate over
151 * @flags: DISK_PITER_* flags
152 *
153 * Initialize @piter so that it iterates over partitions of @disk.
154 *
155 * CONTEXT:
156 * Don't care.
157 */
158void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
159 unsigned int flags)
160{
Tejun Heo540eed52008-08-25 19:56:15 +0900161 struct disk_part_tbl *ptbl;
162
163 rcu_read_lock();
164 ptbl = rcu_dereference(disk->part_tbl);
165
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200166 piter->disk = disk;
167 piter->part = NULL;
168
169 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900170 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200171 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200172 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200173 else
174 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200175
176 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900177
178 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200179}
180EXPORT_SYMBOL_GPL(disk_part_iter_init);
181
182/**
183 * disk_part_iter_next - proceed iterator to the next partition and return it
184 * @piter: iterator of interest
185 *
186 * Proceed @piter to the next partition and return it.
187 *
188 * CONTEXT:
189 * Don't care.
190 */
191struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
192{
Tejun Heo540eed52008-08-25 19:56:15 +0900193 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200194 int inc, end;
195
196 /* put the last partition */
197 disk_put_part(piter->part);
198 piter->part = NULL;
199
Tejun Heo540eed52008-08-25 19:56:15 +0900200 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200201 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900202 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200203
204 /* determine iteration parameters */
205 if (piter->flags & DISK_PITER_REVERSE) {
206 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200207 if (piter->flags & (DISK_PITER_INCL_PART0 |
208 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200209 end = -1;
210 else
211 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200212 } else {
213 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900214 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200215 }
216
217 /* iterate to the next partition */
218 for (; piter->idx != end; piter->idx += inc) {
219 struct hd_struct *part;
220
Tejun Heo540eed52008-08-25 19:56:15 +0900221 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200222 if (!part)
223 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200224 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200225 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
226 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
227 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200228 continue;
229
Tejun Heoed9e1982008-08-25 19:56:05 +0900230 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200231 piter->part = part;
232 piter->idx += inc;
233 break;
234 }
235
236 rcu_read_unlock();
237
238 return piter->part;
239}
240EXPORT_SYMBOL_GPL(disk_part_iter_next);
241
242/**
243 * disk_part_iter_exit - finish up partition iteration
244 * @piter: iter of interest
245 *
246 * Called when iteration is over. Cleans up @piter.
247 *
248 * CONTEXT:
249 * Don't care.
250 */
251void disk_part_iter_exit(struct disk_part_iter *piter)
252{
253 disk_put_part(piter->part);
254 piter->part = NULL;
255}
256EXPORT_SYMBOL_GPL(disk_part_iter_exit);
257
Jens Axboea6f23652008-10-24 12:52:42 +0200258static inline int sector_in_part(struct hd_struct *part, sector_t sector)
259{
260 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200261 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200262}
263
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200264/**
265 * disk_map_sector_rcu - map sector to partition
266 * @disk: gendisk of interest
267 * @sector: sector to map
268 *
269 * Find out which partition @sector maps to on @disk. This is
270 * primarily used for stats accounting.
271 *
272 * CONTEXT:
273 * RCU read locked. The returned partition pointer is valid only
274 * while preemption is disabled.
275 *
276 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900277 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200278 */
279struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
280{
Tejun Heo540eed52008-08-25 19:56:15 +0900281 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200282 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200283 int i;
284
Tejun Heo540eed52008-08-25 19:56:15 +0900285 ptbl = rcu_dereference(disk->part_tbl);
286
Jens Axboea6f23652008-10-24 12:52:42 +0200287 part = rcu_dereference(ptbl->last_lookup);
288 if (part && sector_in_part(part, sector))
289 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200290
Jens Axboea6f23652008-10-24 12:52:42 +0200291 for (i = 1; i < ptbl->len; i++) {
292 part = rcu_dereference(ptbl->part[i]);
293
294 if (part && sector_in_part(part, sector)) {
295 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200296 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200297 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200298 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900299 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200300}
301EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * Can be deleted altogether. Later.
305 *
306 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600307#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308static struct blk_major_name {
309 struct blk_major_name *next;
310 int major;
311 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800312} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100315static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Joe Korty68eef3b2006-03-31 02:30:32 -0800317 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Joe Korty68eef3b2006-03-31 02:30:32 -0800320#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200321void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800322{
Joe Korty68eef3b2006-03-31 02:30:32 -0800323 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800324
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600325 mutex_lock(&block_class_lock);
326 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
327 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200328 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600329 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
Joe Korty68eef3b2006-03-31 02:30:32 -0800331#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100333/**
334 * register_blkdev - register a new block device
335 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800336 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
337 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100338 * @name: the name of the new block device as a zero terminated string
339 *
340 * The @name must be unique within the system.
341 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300342 * The return value depends on the @major input parameter:
343 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800344 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
345 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300346 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100347 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800348 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
349 *
350 * See Documentation/admin-guide/devices.txt for the list of allocated
351 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100352 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353int register_blkdev(unsigned int major, const char *name)
354{
355 struct blk_major_name **n, *p;
356 int index, ret = 0;
357
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200358 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* temporary */
361 if (major == 0) {
362 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
363 if (major_names[index] == NULL)
364 break;
365 }
366
367 if (index == 0) {
368 printk("register_blkdev: failed to get major for %s\n",
369 name);
370 ret = -EBUSY;
371 goto out;
372 }
373 major = index;
374 ret = major;
375 }
376
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600377 if (major >= BLKDEV_MAJOR_MAX) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800378 pr_err("register_blkdev: major requested (%u) is greater than the maximum (%u) for %s\n",
379 major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600380
381 ret = -EINVAL;
382 goto out;
383 }
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
386 if (p == NULL) {
387 ret = -ENOMEM;
388 goto out;
389 }
390
391 p->major = major;
392 strlcpy(p->name, name, sizeof(p->name));
393 p->next = NULL;
394 index = major_to_index(major);
395
396 for (n = &major_names[index]; *n; n = &(*n)->next) {
397 if ((*n)->major == major)
398 break;
399 }
400 if (!*n)
401 *n = p;
402 else
403 ret = -EBUSY;
404
405 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800406 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 major, name);
408 kfree(p);
409 }
410out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200411 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ret;
413}
414
415EXPORT_SYMBOL(register_blkdev);
416
Akinobu Mitaf4480242007-07-17 04:03:47 -0700417void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 struct blk_major_name **n;
420 struct blk_major_name *p = NULL;
421 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200423 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 for (n = &major_names[index]; *n; n = &(*n)->next)
425 if ((*n)->major == major)
426 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700427 if (!*n || strcmp((*n)->name, name)) {
428 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700429 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 p = *n;
431 *n = p->next;
432 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200433 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
437EXPORT_SYMBOL(unregister_blkdev);
438
439static struct kobj_map *bdev_map;
440
Tejun Heobcce3de2008-08-25 19:47:22 +0900441/**
Tejun Heo870d6652008-08-25 19:47:25 +0900442 * blk_mangle_minor - scatter minor numbers apart
443 * @minor: minor number to mangle
444 *
445 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
446 * is enabled. Mangling twice gives the original value.
447 *
448 * RETURNS:
449 * Mangled value.
450 *
451 * CONTEXT:
452 * Don't care.
453 */
454static int blk_mangle_minor(int minor)
455{
456#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
457 int i;
458
459 for (i = 0; i < MINORBITS / 2; i++) {
460 int low = minor & (1 << i);
461 int high = minor & (1 << (MINORBITS - 1 - i));
462 int distance = MINORBITS - 1 - 2 * i;
463
464 minor ^= low | high; /* clear both bits */
465 low <<= distance; /* swap the positions */
466 high >>= distance;
467 minor |= low | high; /* and set */
468 }
469#endif
470 return minor;
471}
472
473/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900474 * blk_alloc_devt - allocate a dev_t for a partition
475 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900476 * @devt: out parameter for resulting dev_t
477 *
478 * Allocate a dev_t for block device.
479 *
480 * RETURNS:
481 * 0 on success, allocated dev_t is returned in *@devt. -errno on
482 * failure.
483 *
484 * CONTEXT:
485 * Might sleep.
486 */
487int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
488{
489 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800490 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900491
492 /* in consecutive minor range? */
493 if (part->partno < disk->minors) {
494 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
495 return 0;
496 }
497
498 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600499 idr_preload(GFP_KERNEL);
500
Dan Williams4d66e5e2015-06-10 23:47:14 -0400501 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600502 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400503 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600504
505 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800506 if (idx < 0)
507 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900508
Tejun Heo870d6652008-08-25 19:47:25 +0900509 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900510 return 0;
511}
512
513/**
514 * blk_free_devt - free a dev_t
515 * @devt: dev_t to free
516 *
517 * Free @devt which was allocated using blk_alloc_devt().
518 *
519 * CONTEXT:
520 * Might sleep.
521 */
522void blk_free_devt(dev_t devt)
523{
Tejun Heobcce3de2008-08-25 19:47:22 +0900524 if (devt == MKDEV(0, 0))
525 return;
526
527 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400528 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900529 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400530 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900531 }
532}
533
Tejun Heo1f014292008-08-25 19:47:23 +0900534static char *bdevt_str(dev_t devt, char *buf)
535{
536 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
537 char tbuf[BDEVT_SIZE];
538 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
539 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
540 } else
541 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
542
543 return buf;
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
547 * Register device numbers dev..(dev+range-1)
548 * range must be nonzero
549 * The hash chain is sorted on range, so that subranges can override.
550 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200551void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 struct kobject *(*probe)(dev_t, int *, void *),
553 int (*lock)(dev_t, void *), void *data)
554{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200555 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558EXPORT_SYMBOL(blk_register_region);
559
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200560void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200562 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565EXPORT_SYMBOL(blk_unregister_region);
566
Tejun Heocf771cb2008-09-03 09:01:09 +0200567static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200570
Tejun Heoed9e1982008-08-25 19:56:05 +0900571 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200574static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 struct gendisk *p = data;
577
Jan Kara3079c222018-02-26 13:01:38 +0100578 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return -1;
580 return 0;
581}
582
Hannes Reineckefef912b2018-09-28 08:17:19 +0200583static void register_disk(struct device *parent, struct gendisk *disk,
584 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100585{
586 struct device *ddev = disk_to_dev(disk);
587 struct block_device *bdev;
588 struct disk_part_iter piter;
589 struct hd_struct *part;
590 int err;
591
Dan Williamse63a46b2016-06-15 18:17:27 -0700592 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100593
Kees Cookffc8b302013-07-03 15:01:14 -0700594 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100595
596 /* delay uevents, until we scanned partition table */
597 dev_set_uevent_suppress(ddev, 1);
598
Hannes Reineckefef912b2018-09-28 08:17:19 +0200599 if (groups) {
600 WARN_ON(ddev->groups);
601 ddev->groups = groups;
602 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100603 if (device_add(ddev))
604 return;
605 if (!sysfs_deprecated) {
606 err = sysfs_create_link(block_depr, &ddev->kobj,
607 kobject_name(&ddev->kobj));
608 if (err) {
609 device_del(ddev);
610 return;
611 }
612 }
Ming Lei25e823c2013-02-22 16:34:13 -0800613
614 /*
615 * avoid probable deadlock caused by allocating memory with
616 * GFP_KERNEL in runtime_resume callback of its all ancestor
617 * devices
618 */
619 pm_runtime_set_memalloc_noio(ddev, true);
620
Tejun Heod2bf1b62010-12-08 20:57:36 +0100621 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
622 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
623
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300624 if (disk->flags & GENHD_FL_HIDDEN) {
625 dev_set_uevent_suppress(ddev, 0);
626 return;
627 }
628
Tejun Heod2bf1b62010-12-08 20:57:36 +0100629 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200630 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100631 goto exit;
632
633 /* No such device (e.g., media were just removed) */
634 if (!get_capacity(disk))
635 goto exit;
636
637 bdev = bdget_disk(disk, 0);
638 if (!bdev)
639 goto exit;
640
641 bdev->bd_invalidated = 1;
642 err = blkdev_get(bdev, FMODE_READ, NULL);
643 if (err < 0)
644 goto exit;
645 blkdev_put(bdev, FMODE_READ);
646
647exit:
648 /* announce disk after possible partitions are created */
649 dev_set_uevent_suppress(ddev, 0);
650 kobject_uevent(&ddev->kobj, KOBJ_ADD);
651
652 /* announce possible partitions */
653 disk_part_iter_init(&piter, disk, 0);
654 while ((part = disk_part_iter_next(&piter)))
655 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
656 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300657
658 err = sysfs_create_link(&ddev->kobj,
659 &disk->queue->backing_dev_info->dev->kobj,
660 "bdi");
661 WARN_ON(err);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500665 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700666 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200668 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500669 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 *
671 * This function registers the partitioning information in @disk
672 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900673 *
674 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500676static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200677 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500678 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900680 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400681 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700682
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900683 /* minors == 0 indicates to use ext devt from part0 and should
684 * be accompanied with EXT_DEVT flag. Make sure all
685 * parameters make sense.
686 */
687 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300688 WARN_ON(!disk->minors &&
689 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900692
693 retval = blk_alloc_devt(&disk->part0, &devt);
694 if (retval) {
695 WARN_ON(1);
696 return;
697 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900698 disk->major = MAJOR(devt);
699 disk->first_minor = MINOR(devt);
700
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100701 disk_alloc_events(disk);
702
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300703 if (disk->flags & GENHD_FL_HIDDEN) {
704 /*
705 * Don't let hidden disks show up in /proc/partitions,
706 * and don't bother scanning for partitions either.
707 */
708 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
709 disk->flags |= GENHD_FL_NO_PART_SCAN;
710 } else {
weiping zhang3a921682017-10-31 18:38:59 +0800711 int ret;
712
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300713 /* Register BDI before referencing it from bdev */
714 disk_to_dev(disk)->devt = devt;
weiping zhang3a921682017-10-31 18:38:59 +0800715 ret = bdi_register_owner(disk->queue->backing_dev_info,
716 disk_to_dev(disk));
717 WARN_ON(ret);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300718 blk_register_region(disk_devt(disk), disk->minors, NULL,
719 exact_match, exact_lock, disk);
720 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200721 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500722 if (register_queue)
723 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700724
Tejun Heo523e1d32011-10-19 14:31:07 +0200725 /*
726 * Take an extra ref on queue which will be put on disk_release()
727 * so that it sticks around as long as @disk is there.
728 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100729 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200730
Tejun Heo77ea8872010-12-08 20:57:37 +0100731 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400732 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500734
Hannes Reineckefef912b2018-09-28 08:17:19 +0200735void device_add_disk(struct device *parent, struct gendisk *disk,
736 const struct attribute_group **groups)
737
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500738{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200739 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500740}
Dan Williamse63a46b2016-06-15 18:17:27 -0700741EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500743void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
744{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200745 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500746}
747EXPORT_SYMBOL(device_add_disk_no_queue_reg);
748
Tejun Heod2bf1b62010-12-08 20:57:36 +0100749void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100751 struct disk_part_iter piter;
752 struct hd_struct *part;
753
Martin K. Petersen25520d52015-10-21 13:19:49 -0400754 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100755 disk_del_events(disk);
756
Jan Kara56c09082018-02-26 13:01:41 +0100757 /*
758 * Block lookups of the disk until all bdevs are unhashed and the
759 * disk is marked as dead (GENHD_FL_UP cleared).
760 */
761 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100762 /* invalidate stuff */
763 disk_part_iter_init(&piter, disk,
764 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
765 while ((part = disk_part_iter_next(&piter))) {
766 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100767 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100768 delete_partition(disk, part->partno);
769 }
770 disk_part_iter_exit(&piter);
771
772 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100773 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100774 set_capacity(disk, 0);
775 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100776 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100777
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300778 if (!(disk->flags & GENHD_FL_HIDDEN))
779 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100780 if (disk->queue) {
781 /*
782 * Unregister bdi before releasing device numbers (as they can
783 * get reused and we'd get clashes in sysfs).
784 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500785 if (!(disk->flags & GENHD_FL_HIDDEN))
786 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100787 blk_unregister_queue(disk);
788 } else {
789 WARN_ON(1);
790 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100791
Hannes Reinecke17eac092017-11-09 17:57:06 +0100792 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300793 blk_unregister_region(disk_devt(disk), disk->minors);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100794
795 kobject_put(disk->part0.holder_dir);
796 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900799 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100800 if (!sysfs_deprecated)
801 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800802 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100803 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100805EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Vishal Verma99e66082016-01-09 08:36:51 -0800807/* sysfs access to bad-blocks list. */
808static ssize_t disk_badblocks_show(struct device *dev,
809 struct device_attribute *attr,
810 char *page)
811{
812 struct gendisk *disk = dev_to_disk(dev);
813
814 if (!disk->bb)
815 return sprintf(page, "\n");
816
817 return badblocks_show(disk->bb, page, 0);
818}
819
820static ssize_t disk_badblocks_store(struct device *dev,
821 struct device_attribute *attr,
822 const char *page, size_t len)
823{
824 struct gendisk *disk = dev_to_disk(dev);
825
826 if (!disk->bb)
827 return -ENXIO;
828
829 return badblocks_store(disk->bb, page, len, 0);
830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/**
833 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200834 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200835 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 *
837 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200838 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200840struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Tejun Heobcce3de2008-08-25 19:47:22 +0900842 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200843
Tejun Heobcce3de2008-08-25 19:47:22 +0900844 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
845 struct kobject *kobj;
846
847 kobj = kobj_lookup(bdev_map, devt, partno);
848 if (kobj)
849 disk = dev_to_disk(kobj_to_dev(kobj));
850 } else {
851 struct hd_struct *part;
852
Dan Williams4d66e5e2015-06-10 23:47:14 -0400853 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900854 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +0100855 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +0900856 *partno = part->partno;
857 disk = part_to_disk(part);
858 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400859 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900860 }
861
Jan Kara56c09082018-02-26 13:01:41 +0100862 if (!disk)
863 return NULL;
864
865 /*
866 * Synchronize with del_gendisk() to not return disk that is being
867 * destroyed.
868 */
869 down_read(&disk->lookup_sem);
870 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
871 !(disk->flags & GENHD_FL_UP))) {
872 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +0100873 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300874 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +0100875 } else {
876 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300877 }
Tejun Heobcce3de2008-08-25 19:47:22 +0900878 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200880EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Tejun Heof331c022008-09-03 09:01:48 +0200882/**
883 * bdget_disk - do bdget() by gendisk and partition number
884 * @disk: gendisk of interest
885 * @partno: partition number
886 *
887 * Find partition @partno from @disk, do bdget() on it.
888 *
889 * CONTEXT:
890 * Don't care.
891 *
892 * RETURNS:
893 * Resulting block_device on success, NULL on failure.
894 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200895struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200896{
Tejun Heo548b10e2008-08-29 09:01:47 +0200897 struct hd_struct *part;
898 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200899
Tejun Heo548b10e2008-08-29 09:01:47 +0200900 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200901 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200902 bdev = bdget(part_devt(part));
903 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200904
Tejun Heo548b10e2008-08-29 09:01:47 +0200905 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200906}
907EXPORT_SYMBOL(bdget_disk);
908
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700909/*
910 * print a full list of all partitions - intended for places where the root
911 * filesystem can't be mounted and thus to give the victim some idea of what
912 * went wrong
913 */
914void __init printk_all_partitions(void)
915{
Tejun Heodef4e382008-09-03 08:57:12 +0200916 struct class_dev_iter iter;
917 struct device *dev;
918
919 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
920 while ((dev = class_dev_iter_next(&iter))) {
921 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200922 struct disk_part_iter piter;
923 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900924 char name_buf[BDEVNAME_SIZE];
925 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200926
927 /*
928 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300929 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200930 */
931 if (get_capacity(disk) == 0 ||
932 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
933 continue;
934
935 /*
936 * Note, unlike /proc/partitions, I am showing the
937 * numbers in hex - the same format as the root=
938 * option takes.
939 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900940 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
941 while ((part = disk_part_iter_next(&piter))) {
942 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200943
Will Drewryb5af9212010-08-31 15:47:07 -0500944 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900945 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200946 (unsigned long long)part_nr_sects_read(part) >> 1
947 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800948 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900949 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700950 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900951 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700952 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900953 else
954 printk(" (driver?)\n");
955 } else
956 printk("\n");
957 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200958 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200959 }
960 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700961}
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963#ifdef CONFIG_PROC_FS
964/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200965static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400966{
Tejun Heodef4e382008-09-03 08:57:12 +0200967 loff_t skip = *pos;
968 struct class_dev_iter *iter;
969 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400970
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200971 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200972 if (!iter)
973 return ERR_PTR(-ENOMEM);
974
975 seqf->private = iter;
976 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
977 do {
978 dev = class_dev_iter_next(iter);
979 if (!dev)
980 return NULL;
981 } while (skip--);
982
983 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400984}
985
Tejun Heodef4e382008-09-03 08:57:12 +0200986static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200988 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400989
Tejun Heodef4e382008-09-03 08:57:12 +0200990 (*pos)++;
991 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200992 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400993 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return NULL;
996}
997
Tejun Heodef4e382008-09-03 08:57:12 +0200998static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400999{
Tejun Heodef4e382008-09-03 08:57:12 +02001000 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001001
Tejun Heodef4e382008-09-03 08:57:12 +02001002 /* stop is called even after start failed :-( */
1003 if (iter) {
1004 class_dev_iter_exit(iter);
1005 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001006 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Tejun Heodef4e382008-09-03 08:57:12 +02001010static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Jianpeng Ma06768062012-08-03 10:42:00 +02001012 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001013
1014 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001015 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001016 seq_puts(seqf, "major minor #blocks name\n\n");
1017 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Tejun Heocf771cb2008-09-03 09:01:09 +02001020static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001023 struct disk_part_iter piter;
1024 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 char buf[BDEVNAME_SIZE];
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001028 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001029 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return 0;
1031 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1032 return 0;
1033
1034 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001035 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001036 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001037 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001038 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001039 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001040 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001041 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 return 0;
1044}
1045
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001046static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001047 .start = show_partition_start,
1048 .next = disk_seqf_next,
1049 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001050 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051};
1052#endif
1053
1054
Tejun Heocf771cb2008-09-03 09:01:09 +02001055static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001057 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001059 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return NULL;
1061}
1062
1063static int __init genhd_device_init(void)
1064{
Dan Williamse105b8b2008-04-21 10:51:07 -07001065 int error;
1066
1067 block_class.dev_kobj = sysfs_dev_block_kobj;
1068 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001069 if (unlikely(error))
1070 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001071 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001073
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001074 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1075
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001076 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001077 if (!sysfs_deprecated)
1078 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082subsys_initcall(genhd_device_init);
1083
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001084static ssize_t disk_range_show(struct device *dev,
1085 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001087 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001089 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
Tejun Heo1f014292008-08-25 19:47:23 +09001092static ssize_t disk_ext_range_show(struct device *dev,
1093 struct device_attribute *attr, char *buf)
1094{
1095 struct gendisk *disk = dev_to_disk(dev);
1096
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001097 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001098}
1099
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001100static ssize_t disk_removable_show(struct device *dev,
1101 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001102{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001103 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001104
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001105 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001107}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001109static ssize_t disk_hidden_show(struct device *dev,
1110 struct device_attribute *attr, char *buf)
1111{
1112 struct gendisk *disk = dev_to_disk(dev);
1113
1114 return sprintf(buf, "%d\n",
1115 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1116}
1117
Kay Sievers1c9ce522008-06-13 09:41:00 +02001118static ssize_t disk_ro_show(struct device *dev,
1119 struct device_attribute *attr, char *buf)
1120{
1121 struct gendisk *disk = dev_to_disk(dev);
1122
Tejun Heob7db9952008-08-25 19:56:10 +09001123 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001124}
1125
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001126static ssize_t disk_capability_show(struct device *dev,
1127 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001128{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001129 struct gendisk *disk = dev_to_disk(dev);
1130
1131 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001132}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001133
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001134static ssize_t disk_alignment_offset_show(struct device *dev,
1135 struct device_attribute *attr,
1136 char *buf)
1137{
1138 struct gendisk *disk = dev_to_disk(dev);
1139
1140 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1141}
1142
Martin K. Petersen86b37282009-11-10 11:50:21 +01001143static ssize_t disk_discard_alignment_show(struct device *dev,
1144 struct device_attribute *attr,
1145 char *buf)
1146{
1147 struct gendisk *disk = dev_to_disk(dev);
1148
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001149 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001150}
1151
Joe Perches5657a812018-05-24 13:38:59 -06001152static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1153static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1154static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1155static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1156static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1157static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1158static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1159static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1160static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1161static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1162static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1163static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001164#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001165static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001166 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001167#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001168#ifdef CONFIG_FAIL_IO_TIMEOUT
1169static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001170 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001171#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001172
1173static struct attribute *disk_attrs[] = {
1174 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001175 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001176 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001177 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001178 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001179 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001180 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001181 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001182 &dev_attr_capability.attr,
1183 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001184 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001185 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001186#ifdef CONFIG_FAIL_MAKE_REQUEST
1187 &dev_attr_fail.attr,
1188#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001189#ifdef CONFIG_FAIL_IO_TIMEOUT
1190 &dev_attr_fail_timeout.attr,
1191#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001192 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193};
1194
Dan Williams9438b3e02017-04-27 14:46:26 -07001195static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1196{
1197 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1198 struct gendisk *disk = dev_to_disk(dev);
1199
1200 if (a == &dev_attr_badblocks.attr && !disk->bb)
1201 return 0;
1202 return a->mode;
1203}
1204
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001205static struct attribute_group disk_attr_group = {
1206 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001207 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001208};
1209
David Brownella4dbd672009-06-24 10:06:31 -07001210static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001211 &disk_attr_group,
1212 NULL
1213};
1214
Tejun Heo540eed52008-08-25 19:56:15 +09001215/**
1216 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1217 * @disk: disk to replace part_tbl for
1218 * @new_ptbl: new part_tbl to install
1219 *
1220 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1221 * original ptbl is freed using RCU callback.
1222 *
1223 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001224 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001225 */
1226static void disk_replace_part_tbl(struct gendisk *disk,
1227 struct disk_part_tbl *new_ptbl)
1228{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001229 struct disk_part_tbl *old_ptbl =
1230 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001231
1232 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001233
1234 if (old_ptbl) {
1235 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001236 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001237 }
Tejun Heo540eed52008-08-25 19:56:15 +09001238}
1239
1240/**
1241 * disk_expand_part_tbl - expand disk->part_tbl
1242 * @disk: disk to expand part_tbl for
1243 * @partno: expand such that this partno can fit in
1244 *
1245 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1246 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1247 *
1248 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001249 * Matching bd_mutex locked or the caller is the only user of @disk.
1250 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001251 *
1252 * RETURNS:
1253 * 0 on success, -errno on failure.
1254 */
1255int disk_expand_part_tbl(struct gendisk *disk, int partno)
1256{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001257 struct disk_part_tbl *old_ptbl =
1258 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001259 struct disk_part_tbl *new_ptbl;
1260 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001261 int i, target;
Tejun Heo540eed52008-08-25 19:56:15 +09001262 size_t size;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001263
1264 /*
1265 * check for int overflow, since we can get here from blkpg_ioctl()
1266 * with a user passed 'partno'.
1267 */
1268 target = partno + 1;
1269 if (target < 0)
1270 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001271
1272 /* disk_max_parts() is zero during initialization, ignore if so */
1273 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1274 return -EINVAL;
1275
1276 if (target <= len)
1277 return 0;
1278
1279 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1280 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1281 if (!new_ptbl)
1282 return -ENOMEM;
1283
Tejun Heo540eed52008-08-25 19:56:15 +09001284 new_ptbl->len = target;
1285
1286 for (i = 0; i < len; i++)
1287 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1288
1289 disk_replace_part_tbl(disk, new_ptbl);
1290 return 0;
1291}
1292
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001293static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001295 struct gendisk *disk = dev_to_disk(dev);
1296
Keith Busch2da78092014-08-26 09:05:36 -06001297 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001298 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001300 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001301 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001302 if (disk->queue)
1303 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 kfree(disk);
1305}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001306struct class block_class = {
1307 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308};
1309
Kay Sievers3c2670e2013-04-06 09:56:00 -07001310static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001311 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001312{
1313 struct gendisk *disk = dev_to_disk(dev);
1314
Kay Sieverse454cea2009-09-18 23:01:12 +02001315 if (disk->devnode)
1316 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001317 return NULL;
1318}
1319
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001320static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001321 .name = "disk",
1322 .groups = disk_attr_groups,
1323 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001324 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325};
1326
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001327#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001328/*
1329 * aggregate disk stat collector. Uses the same stats that the sysfs
1330 * entries do, above, but makes them available through one seq_file.
1331 *
1332 * The output looks suspiciously like /proc/partitions with a bunch of
1333 * extra fields.
1334 */
1335static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001338 struct disk_part_iter piter;
1339 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001341 unsigned int inflight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001344 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001345 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 " rio rmerge rsect ruse wio wmerge "
1347 "wsect wuse running use aveq"
1348 "\n\n");
1349 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001350
Tejun Heo71982a42009-04-17 08:34:48 +02001351 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001352 while ((hd = disk_part_iter_next(&piter))) {
Mikulas Patockae016b782018-12-06 11:41:21 -05001353 inflight = part_in_flight(gp->queue, hd);
Michael Callahanbdca3c82018-07-18 04:47:40 -07001354 seq_printf(seqf, "%4d %7d %s "
1355 "%lu %lu %lu %u "
1356 "%lu %lu %lu %u "
1357 "%u %u %u "
1358 "%lu %lu %lu %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001359 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1360 disk_name(gp, hd->partno, buf),
Michael Callahandbae2c52018-07-18 04:47:38 -07001361 part_stat_read(hd, ios[STAT_READ]),
1362 part_stat_read(hd, merges[STAT_READ]),
1363 part_stat_read(hd, sectors[STAT_READ]),
Omar Sandovalb57e99b2018-09-21 16:44:34 -07001364 (unsigned int)part_stat_read_msecs(hd, STAT_READ),
Michael Callahandbae2c52018-07-18 04:47:38 -07001365 part_stat_read(hd, ios[STAT_WRITE]),
1366 part_stat_read(hd, merges[STAT_WRITE]),
1367 part_stat_read(hd, sectors[STAT_WRITE]),
Omar Sandovalb57e99b2018-09-21 16:44:34 -07001368 (unsigned int)part_stat_read_msecs(hd, STAT_WRITE),
Mikulas Patockae016b782018-12-06 11:41:21 -05001369 inflight,
Jerome Marchand28f39d52008-02-08 11:04:56 +01001370 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
Michael Callahanbdca3c82018-07-18 04:47:40 -07001371 jiffies_to_msecs(part_stat_read(hd, time_in_queue)),
1372 part_stat_read(hd, ios[STAT_DISCARD]),
1373 part_stat_read(hd, merges[STAT_DISCARD]),
1374 part_stat_read(hd, sectors[STAT_DISCARD]),
Omar Sandovalb57e99b2018-09-21 16:44:34 -07001375 (unsigned int)part_stat_read_msecs(hd, STAT_DISCARD)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001376 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001378 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return 0;
1381}
1382
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001383static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001384 .start = disk_seqf_start,
1385 .next = disk_seqf_next,
1386 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 .show = diskstats_show
1388};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001389
1390static int __init proc_genhd_init(void)
1391{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001392 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1393 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001394 return 0;
1395}
1396module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001397#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Tejun Heocf771cb2008-09-03 09:01:09 +02001399dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001400{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001401 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001402 struct class_dev_iter iter;
1403 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001404
Tejun Heodef4e382008-09-03 08:57:12 +02001405 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1406 while ((dev = class_dev_iter_next(&iter))) {
1407 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001408 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001409
Kay Sievers3ada8b72009-01-06 10:44:43 -08001410 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001411 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001412
Neil Brown41b8c852009-02-18 10:33:59 +01001413 if (partno < disk->minors) {
1414 /* We need to return the right devno, even
1415 * if the partition doesn't exist yet.
1416 */
1417 devt = MKDEV(MAJOR(dev->devt),
1418 MINOR(dev->devt) + partno);
1419 break;
1420 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001421 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001422 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001423 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001424 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001425 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001426 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001427 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001428 }
Tejun Heodef4e382008-09-03 08:57:12 +02001429 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001430 return devt;
1431}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001432EXPORT_SYMBOL(blk_lookup_devt);
1433
Byungchul Parke319e1f2017-10-25 17:56:05 +09001434struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001435{
1436 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001437 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001438
Christoph Hellwigde65b012017-08-23 19:10:29 +02001439 if (minors > DISK_MAX_PARTS) {
1440 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001441 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001442 DISK_MAX_PARTS);
1443 minors = DISK_MAX_PARTS;
1444 }
Christoph Lameter19460892005-06-23 00:08:19 -07001445
Joe Perchesc1b511e2013-08-29 15:21:42 -07001446 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001448 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 kfree(disk);
1450 return NULL;
1451 }
Jan Kara56c09082018-02-26 13:01:41 +01001452 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001453 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001454 if (disk_expand_part_tbl(disk, 0)) {
1455 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001456 kfree(disk);
1457 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001459 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1460 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001461
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001462 /*
1463 * set_capacity() and get_capacity() currently don't use
1464 * seqcounter to read/update the part0->nr_sects. Still init
1465 * the counter as we can read the sectors in IO submission
1466 * patch using seqence counters.
1467 *
1468 * TODO: Ideally set_capacity() and get_capacity() should be
1469 * converted to make use of bd_mutex and sequence counters.
1470 */
1471 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001472 if (hd_ref_init(&disk->part0)) {
1473 hd_free_part(&disk->part0);
1474 kfree(disk);
1475 return NULL;
1476 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001480 disk_to_dev(disk)->class = &block_class;
1481 disk_to_dev(disk)->type = &disk_type;
1482 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484 return disk;
1485}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001486EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Jan Kara3079c222018-02-26 13:01:38 +01001488struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
1490 struct module *owner;
1491 struct kobject *kobj;
1492
1493 if (!disk->fops)
1494 return NULL;
1495 owner = disk->fops->owner;
1496 if (owner && !try_module_get(owner))
1497 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001498 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (kobj == NULL) {
1500 module_put(owner);
1501 return NULL;
1502 }
1503 return kobj;
1504
1505}
Jan Kara3079c222018-02-26 13:01:38 +01001506EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508void put_disk(struct gendisk *disk)
1509{
1510 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001511 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513EXPORT_SYMBOL(put_disk);
1514
Jan Kara9df6c292018-02-26 13:01:39 +01001515/*
1516 * This is a counterpart of get_disk_and_module() and thus also of
1517 * get_gendisk().
1518 */
1519void put_disk_and_module(struct gendisk *disk)
1520{
1521 if (disk) {
1522 struct module *owner = disk->fops->owner;
1523
1524 put_disk(disk);
1525 module_put(owner);
1526 }
1527}
1528EXPORT_SYMBOL(put_disk_and_module);
1529
Hannes Reineckee3264a42009-07-28 09:13:13 +02001530static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1531{
1532 char event[] = "DISK_RO=1";
1533 char *envp[] = { event, NULL };
1534
1535 if (!ro)
1536 event[8] = '0';
1537 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1538}
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540void set_device_ro(struct block_device *bdev, int flag)
1541{
Tejun Heob7db9952008-08-25 19:56:10 +09001542 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
1545EXPORT_SYMBOL(set_device_ro);
1546
1547void set_disk_ro(struct gendisk *disk, int flag)
1548{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001549 struct disk_part_iter piter;
1550 struct hd_struct *part;
1551
Hannes Reineckee3264a42009-07-28 09:13:13 +02001552 if (disk->part0.policy != flag) {
1553 set_disk_ro_uevent(disk, flag);
1554 disk->part0.policy = flag;
1555 }
1556
1557 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001558 while ((part = disk_part_iter_next(&piter)))
1559 part->policy = flag;
1560 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563EXPORT_SYMBOL(set_disk_ro);
1564
1565int bdev_read_only(struct block_device *bdev)
1566{
1567 if (!bdev)
1568 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001569 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
1572EXPORT_SYMBOL(bdev_read_only);
1573
Tejun Heocf771cb2008-09-03 09:01:09 +02001574int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001577 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001579 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001580 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 bdput(bdev);
1582 }
1583 return res;
1584}
1585
1586EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001587
1588/*
1589 * Disk events - monitor disk events like media change and eject request.
1590 */
1591struct disk_events {
1592 struct list_head node; /* all disk_event's */
1593 struct gendisk *disk; /* the associated disk */
1594 spinlock_t lock;
1595
Tejun Heofdd514e2011-06-09 20:43:59 +02001596 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001597 int block; /* event blocking depth */
1598 unsigned int pending; /* events already sent out */
1599 unsigned int clearing; /* events being cleared */
1600
1601 long poll_msecs; /* interval, -1 for default */
1602 struct delayed_work dwork;
1603};
1604
1605static const char *disk_events_strs[] = {
1606 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1607 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1608};
1609
1610static char *disk_uevents[] = {
1611 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1612 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1613};
1614
1615/* list of all disk_events */
1616static DEFINE_MUTEX(disk_events_mutex);
1617static LIST_HEAD(disk_events);
1618
1619/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001620static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001621
1622static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1623{
1624 struct disk_events *ev = disk->ev;
1625 long intv_msecs = 0;
1626
1627 /*
1628 * If device-specific poll interval is set, always use it. If
1629 * the default is being used, poll iff there are events which
1630 * can't be monitored asynchronously.
1631 */
1632 if (ev->poll_msecs >= 0)
1633 intv_msecs = ev->poll_msecs;
1634 else if (disk->events & ~disk->async_events)
1635 intv_msecs = disk_events_dfl_poll_msecs;
1636
1637 return msecs_to_jiffies(intv_msecs);
1638}
1639
Tejun Heoc3af54a2011-06-09 20:43:55 +02001640/**
1641 * disk_block_events - block and flush disk event checking
1642 * @disk: disk to block events for
1643 *
1644 * On return from this function, it is guaranteed that event checking
1645 * isn't in progress and won't happen until unblocked by
1646 * disk_unblock_events(). Events blocking is counted and the actual
1647 * unblocking happens after the matching number of unblocks are done.
1648 *
1649 * Note that this intentionally does not block event checking from
1650 * disk_clear_events().
1651 *
1652 * CONTEXT:
1653 * Might sleep.
1654 */
1655void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001656{
1657 struct disk_events *ev = disk->ev;
1658 unsigned long flags;
1659 bool cancel;
1660
Tejun Heoc3af54a2011-06-09 20:43:55 +02001661 if (!ev)
1662 return;
1663
Tejun Heofdd514e2011-06-09 20:43:59 +02001664 /*
1665 * Outer mutex ensures that the first blocker completes canceling
1666 * the event work before further blockers are allowed to finish.
1667 */
1668 mutex_lock(&ev->block_mutex);
1669
Tejun Heo77ea8872010-12-08 20:57:37 +01001670 spin_lock_irqsave(&ev->lock, flags);
1671 cancel = !ev->block++;
1672 spin_unlock_irqrestore(&ev->lock, flags);
1673
Tejun Heoc3af54a2011-06-09 20:43:55 +02001674 if (cancel)
1675 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001676
1677 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001678}
1679
1680static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1681{
1682 struct disk_events *ev = disk->ev;
1683 unsigned long intv;
1684 unsigned long flags;
1685
1686 spin_lock_irqsave(&ev->lock, flags);
1687
1688 if (WARN_ON_ONCE(ev->block <= 0))
1689 goto out_unlock;
1690
1691 if (--ev->block)
1692 goto out_unlock;
1693
Tejun Heo77ea8872010-12-08 20:57:37 +01001694 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001695 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301696 queue_delayed_work(system_freezable_power_efficient_wq,
1697 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001698 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301699 queue_delayed_work(system_freezable_power_efficient_wq,
1700 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001701out_unlock:
1702 spin_unlock_irqrestore(&ev->lock, flags);
1703}
1704
1705/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001706 * disk_unblock_events - unblock disk event checking
1707 * @disk: disk to unblock events for
1708 *
1709 * Undo disk_block_events(). When the block count reaches zero, it
1710 * starts events polling if configured.
1711 *
1712 * CONTEXT:
1713 * Don't care. Safe to call from irq context.
1714 */
1715void disk_unblock_events(struct gendisk *disk)
1716{
1717 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001718 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001719}
1720
1721/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001722 * disk_flush_events - schedule immediate event checking and flushing
1723 * @disk: disk to check and flush events for
1724 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001725 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001726 * Schedule immediate event checking on @disk if not blocked. Events in
1727 * @mask are scheduled to be cleared from the driver. Note that this
1728 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001729 *
1730 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001731 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001732 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001733void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001734{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001735 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001736
1737 if (!ev)
1738 return;
1739
Tejun Heo85ef06d2011-07-01 16:17:47 +02001740 spin_lock_irq(&ev->lock);
1741 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001742 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301743 mod_delayed_work(system_freezable_power_efficient_wq,
1744 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001745 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001746}
Tejun Heo77ea8872010-12-08 20:57:37 +01001747
1748/**
1749 * disk_clear_events - synchronously check, clear and return pending events
1750 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001751 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001752 *
1753 * Disk events are synchronously checked and pending events in @mask
1754 * are cleared and returned. This ignores the block count.
1755 *
1756 * CONTEXT:
1757 * Might sleep.
1758 */
1759unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1760{
1761 const struct block_device_operations *bdops = disk->fops;
1762 struct disk_events *ev = disk->ev;
1763 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001764 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001765
1766 if (!ev) {
1767 /* for drivers still using the old ->media_changed method */
1768 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1769 bdops->media_changed && bdops->media_changed(disk))
1770 return DISK_EVENT_MEDIA_CHANGE;
1771 return 0;
1772 }
1773
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001774 disk_block_events(disk);
1775
1776 /*
1777 * store the union of mask and ev->clearing on the stack so that the
1778 * race with disk_flush_events does not cause ambiguity (ev->clearing
1779 * can still be modified even if events are blocked).
1780 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001781 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001782 clearing |= ev->clearing;
1783 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001784 spin_unlock_irq(&ev->lock);
1785
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001786 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001787 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001788 * if ev->clearing is not 0, the disk_flush_events got called in the
1789 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001790 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001791 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001792
1793 /* then, fetch and clear pending events */
1794 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001795 pending = ev->pending & mask;
1796 ev->pending &= ~mask;
1797 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001798 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001799
1800 return pending;
1801}
1802
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001803/*
1804 * Separate this part out so that a different pointer for clearing_ptr can be
1805 * passed in for disk_clear_events.
1806 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001807static void disk_events_workfn(struct work_struct *work)
1808{
1809 struct delayed_work *dwork = to_delayed_work(work);
1810 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001811
1812 disk_check_events(ev, &ev->clearing);
1813}
1814
1815static void disk_check_events(struct disk_events *ev,
1816 unsigned int *clearing_ptr)
1817{
Tejun Heo77ea8872010-12-08 20:57:37 +01001818 struct gendisk *disk = ev->disk;
1819 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001820 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001821 unsigned int events;
1822 unsigned long intv;
1823 int nr_events = 0, i;
1824
1825 /* check events */
1826 events = disk->fops->check_events(disk, clearing);
1827
1828 /* accumulate pending events and schedule next poll if necessary */
1829 spin_lock_irq(&ev->lock);
1830
1831 events &= ~ev->pending;
1832 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001833 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001834
1835 intv = disk_events_poll_jiffies(disk);
1836 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301837 queue_delayed_work(system_freezable_power_efficient_wq,
1838 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001839
1840 spin_unlock_irq(&ev->lock);
1841
Tejun Heo7c88a162011-04-21 19:43:58 +02001842 /*
1843 * Tell userland about new events. Only the events listed in
1844 * @disk->events are reported. Unlisted events are processed the
1845 * same internally but never get reported to userland.
1846 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001847 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Tejun Heo7c88a162011-04-21 19:43:58 +02001848 if (events & disk->events & (1 << i))
Tejun Heo77ea8872010-12-08 20:57:37 +01001849 envp[nr_events++] = disk_uevents[i];
1850
1851 if (nr_events)
1852 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1853}
1854
1855/*
1856 * A disk events enabled device has the following sysfs nodes under
1857 * its /sys/block/X/ directory.
1858 *
1859 * events : list of all supported events
1860 * events_async : list of events which can be detected w/o polling
1861 * events_poll_msecs : polling interval, 0: disable, -1: system default
1862 */
1863static ssize_t __disk_events_show(unsigned int events, char *buf)
1864{
1865 const char *delim = "";
1866 ssize_t pos = 0;
1867 int i;
1868
1869 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1870 if (events & (1 << i)) {
1871 pos += sprintf(buf + pos, "%s%s",
1872 delim, disk_events_strs[i]);
1873 delim = " ";
1874 }
1875 if (pos)
1876 pos += sprintf(buf + pos, "\n");
1877 return pos;
1878}
1879
1880static ssize_t disk_events_show(struct device *dev,
1881 struct device_attribute *attr, char *buf)
1882{
1883 struct gendisk *disk = dev_to_disk(dev);
1884
1885 return __disk_events_show(disk->events, buf);
1886}
1887
1888static ssize_t disk_events_async_show(struct device *dev,
1889 struct device_attribute *attr, char *buf)
1890{
1891 struct gendisk *disk = dev_to_disk(dev);
1892
1893 return __disk_events_show(disk->async_events, buf);
1894}
1895
1896static ssize_t disk_events_poll_msecs_show(struct device *dev,
1897 struct device_attribute *attr,
1898 char *buf)
1899{
1900 struct gendisk *disk = dev_to_disk(dev);
1901
1902 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1903}
1904
1905static ssize_t disk_events_poll_msecs_store(struct device *dev,
1906 struct device_attribute *attr,
1907 const char *buf, size_t count)
1908{
1909 struct gendisk *disk = dev_to_disk(dev);
1910 long intv;
1911
1912 if (!count || !sscanf(buf, "%ld", &intv))
1913 return -EINVAL;
1914
1915 if (intv < 0 && intv != -1)
1916 return -EINVAL;
1917
Tejun Heoc3af54a2011-06-09 20:43:55 +02001918 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001919 disk->ev->poll_msecs = intv;
1920 __disk_unblock_events(disk, true);
1921
1922 return count;
1923}
1924
Joe Perches5657a812018-05-24 13:38:59 -06001925static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
1926static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
1927static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01001928 disk_events_poll_msecs_show,
1929 disk_events_poll_msecs_store);
1930
1931static const struct attribute *disk_events_attrs[] = {
1932 &dev_attr_events.attr,
1933 &dev_attr_events_async.attr,
1934 &dev_attr_events_poll_msecs.attr,
1935 NULL,
1936};
1937
1938/*
1939 * The default polling interval can be specified by the kernel
1940 * parameter block.events_dfl_poll_msecs which defaults to 0
1941 * (disable). This can also be modified runtime by writing to
1942 * /sys/module/block/events_dfl_poll_msecs.
1943 */
1944static int disk_events_set_dfl_poll_msecs(const char *val,
1945 const struct kernel_param *kp)
1946{
1947 struct disk_events *ev;
1948 int ret;
1949
1950 ret = param_set_ulong(val, kp);
1951 if (ret < 0)
1952 return ret;
1953
1954 mutex_lock(&disk_events_mutex);
1955
1956 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02001957 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001958
1959 mutex_unlock(&disk_events_mutex);
1960
1961 return 0;
1962}
1963
1964static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1965 .set = disk_events_set_dfl_poll_msecs,
1966 .get = param_get_ulong,
1967};
1968
1969#undef MODULE_PARAM_PREFIX
1970#define MODULE_PARAM_PREFIX "block."
1971
1972module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1973 &disk_events_dfl_poll_msecs, 0644);
1974
1975/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001976 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01001977 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001978static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001979{
1980 struct disk_events *ev;
1981
Tejun Heo75e3f3e2011-05-26 21:06:50 +02001982 if (!disk->fops->check_events)
Tejun Heo77ea8872010-12-08 20:57:37 +01001983 return;
1984
1985 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1986 if (!ev) {
1987 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1988 return;
1989 }
1990
Tejun Heo77ea8872010-12-08 20:57:37 +01001991 INIT_LIST_HEAD(&ev->node);
1992 ev->disk = disk;
1993 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02001994 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001995 ev->block = 1;
1996 ev->poll_msecs = -1;
1997 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1998
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001999 disk->ev = ev;
2000}
2001
2002static void disk_add_events(struct gendisk *disk)
2003{
2004 if (!disk->ev)
2005 return;
2006
2007 /* FIXME: error handling */
2008 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2009 pr_warn("%s: failed to create sysfs files for events\n",
2010 disk->disk_name);
2011
Tejun Heo77ea8872010-12-08 20:57:37 +01002012 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002013 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002014 mutex_unlock(&disk_events_mutex);
2015
2016 /*
2017 * Block count is initialized to 1 and the following initial
2018 * unblock kicks it into action.
2019 */
2020 __disk_unblock_events(disk, true);
2021}
2022
2023static void disk_del_events(struct gendisk *disk)
2024{
2025 if (!disk->ev)
2026 return;
2027
Tejun Heoc3af54a2011-06-09 20:43:55 +02002028 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002029
2030 mutex_lock(&disk_events_mutex);
2031 list_del_init(&disk->ev->node);
2032 mutex_unlock(&disk_events_mutex);
2033
2034 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2035}
2036
2037static void disk_release_events(struct gendisk *disk)
2038{
2039 /* the block count should be 1 from disk_del_events() */
2040 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2041 kfree(disk->ev);
2042}