blob: 9656f9e9f99e20af13f1e175aba15f9447d9ef87 [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{
50 if (q->mq_ops)
51 return;
52
53 atomic_inc(&part->in_flight[rw]);
54 if (part->partno)
55 atomic_inc(&part_to_disk(part)->part0.in_flight[rw]);
56}
57
58void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
59{
60 if (q->mq_ops)
61 return;
62
63 atomic_dec(&part->in_flight[rw]);
64 if (part->partno)
65 atomic_dec(&part_to_disk(part)->part0.in_flight[rw]);
66}
67
68void part_in_flight(struct request_queue *q, struct hd_struct *part,
69 unsigned int inflight[2])
70{
71 if (q->mq_ops) {
72 blk_mq_in_flight(q, part, inflight);
73 return;
74 }
75
76 inflight[0] = atomic_read(&part->in_flight[0]) +
77 atomic_read(&part->in_flight[1]);
78 if (part->partno) {
79 part = &part_to_disk(part)->part0;
80 inflight[1] = atomic_read(&part->in_flight[0]) +
81 atomic_read(&part->in_flight[1]);
82 }
83}
84
Christoph Hellwig807d4af2017-08-23 19:10:30 +020085struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
86{
87 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
88
89 if (unlikely(partno < 0 || partno >= ptbl->len))
90 return NULL;
91 return rcu_dereference(ptbl->part[partno]);
92}
93
Tejun Heoe71bf0d2008-09-03 09:03:02 +020094/**
95 * disk_get_part - get partition
96 * @disk: disk to look partition from
97 * @partno: partition number
98 *
99 * Look for partition @partno from @disk. If found, increment
100 * reference count and return it.
101 *
102 * CONTEXT:
103 * Don't care.
104 *
105 * RETURNS:
106 * Pointer to the found partition on success, NULL if not found.
107 */
108struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
109{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200110 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900111
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200112 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200113 part = __disk_get_part(disk, partno);
114 if (part)
115 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200116 rcu_read_unlock();
117
118 return part;
119}
120EXPORT_SYMBOL_GPL(disk_get_part);
121
122/**
123 * disk_part_iter_init - initialize partition iterator
124 * @piter: iterator to initialize
125 * @disk: disk to iterate over
126 * @flags: DISK_PITER_* flags
127 *
128 * Initialize @piter so that it iterates over partitions of @disk.
129 *
130 * CONTEXT:
131 * Don't care.
132 */
133void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
134 unsigned int flags)
135{
Tejun Heo540eed52008-08-25 19:56:15 +0900136 struct disk_part_tbl *ptbl;
137
138 rcu_read_lock();
139 ptbl = rcu_dereference(disk->part_tbl);
140
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200141 piter->disk = disk;
142 piter->part = NULL;
143
144 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900145 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200146 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200147 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200148 else
149 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200150
151 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900152
153 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200154}
155EXPORT_SYMBOL_GPL(disk_part_iter_init);
156
157/**
158 * disk_part_iter_next - proceed iterator to the next partition and return it
159 * @piter: iterator of interest
160 *
161 * Proceed @piter to the next partition and return it.
162 *
163 * CONTEXT:
164 * Don't care.
165 */
166struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
167{
Tejun Heo540eed52008-08-25 19:56:15 +0900168 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200169 int inc, end;
170
171 /* put the last partition */
172 disk_put_part(piter->part);
173 piter->part = NULL;
174
Tejun Heo540eed52008-08-25 19:56:15 +0900175 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200176 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900177 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200178
179 /* determine iteration parameters */
180 if (piter->flags & DISK_PITER_REVERSE) {
181 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200182 if (piter->flags & (DISK_PITER_INCL_PART0 |
183 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200184 end = -1;
185 else
186 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200187 } else {
188 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900189 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200190 }
191
192 /* iterate to the next partition */
193 for (; piter->idx != end; piter->idx += inc) {
194 struct hd_struct *part;
195
Tejun Heo540eed52008-08-25 19:56:15 +0900196 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200197 if (!part)
198 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200199 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200200 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
201 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
202 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200203 continue;
204
Tejun Heoed9e1982008-08-25 19:56:05 +0900205 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200206 piter->part = part;
207 piter->idx += inc;
208 break;
209 }
210
211 rcu_read_unlock();
212
213 return piter->part;
214}
215EXPORT_SYMBOL_GPL(disk_part_iter_next);
216
217/**
218 * disk_part_iter_exit - finish up partition iteration
219 * @piter: iter of interest
220 *
221 * Called when iteration is over. Cleans up @piter.
222 *
223 * CONTEXT:
224 * Don't care.
225 */
226void disk_part_iter_exit(struct disk_part_iter *piter)
227{
228 disk_put_part(piter->part);
229 piter->part = NULL;
230}
231EXPORT_SYMBOL_GPL(disk_part_iter_exit);
232
Jens Axboea6f23652008-10-24 12:52:42 +0200233static inline int sector_in_part(struct hd_struct *part, sector_t sector)
234{
235 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200236 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200237}
238
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200239/**
240 * disk_map_sector_rcu - map sector to partition
241 * @disk: gendisk of interest
242 * @sector: sector to map
243 *
244 * Find out which partition @sector maps to on @disk. This is
245 * primarily used for stats accounting.
246 *
247 * CONTEXT:
248 * RCU read locked. The returned partition pointer is valid only
249 * while preemption is disabled.
250 *
251 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900252 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200253 */
254struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
255{
Tejun Heo540eed52008-08-25 19:56:15 +0900256 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200257 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200258 int i;
259
Tejun Heo540eed52008-08-25 19:56:15 +0900260 ptbl = rcu_dereference(disk->part_tbl);
261
Jens Axboea6f23652008-10-24 12:52:42 +0200262 part = rcu_dereference(ptbl->last_lookup);
263 if (part && sector_in_part(part, sector))
264 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200265
Jens Axboea6f23652008-10-24 12:52:42 +0200266 for (i = 1; i < ptbl->len; i++) {
267 part = rcu_dereference(ptbl->part[i]);
268
269 if (part && sector_in_part(part, sector)) {
270 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200271 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200272 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200273 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900274 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200275}
276EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/*
279 * Can be deleted altogether. Later.
280 *
281 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600282#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283static struct blk_major_name {
284 struct blk_major_name *next;
285 int major;
286 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800287} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100290static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Joe Korty68eef3b2006-03-31 02:30:32 -0800292 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Joe Korty68eef3b2006-03-31 02:30:32 -0800295#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200296void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800297{
Joe Korty68eef3b2006-03-31 02:30:32 -0800298 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800299
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600300 mutex_lock(&block_class_lock);
301 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
302 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200303 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600304 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
Joe Korty68eef3b2006-03-31 02:30:32 -0800306#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100308/**
309 * register_blkdev - register a new block device
310 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300311 * @major: the requested major device number [1..255]. If @major = 0, try to
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100312 * allocate any unused major number.
313 * @name: the name of the new block device as a zero terminated string
314 *
315 * The @name must be unique within the system.
316 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300317 * The return value depends on the @major input parameter:
318 *
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100319 * - if a major device number was requested in range [1..255] then the
320 * function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300321 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100322 * then the return value is the allocated major number in range
323 * [1..255] or a negative error code otherwise
324 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325int register_blkdev(unsigned int major, const char *name)
326{
327 struct blk_major_name **n, *p;
328 int index, ret = 0;
329
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200330 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* temporary */
333 if (major == 0) {
334 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
335 if (major_names[index] == NULL)
336 break;
337 }
338
339 if (index == 0) {
340 printk("register_blkdev: failed to get major for %s\n",
341 name);
342 ret = -EBUSY;
343 goto out;
344 }
345 major = index;
346 ret = major;
347 }
348
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600349 if (major >= BLKDEV_MAJOR_MAX) {
350 pr_err("register_blkdev: major requested (%d) is greater than the maximum (%d) for %s\n",
351 major, BLKDEV_MAJOR_MAX, name);
352
353 ret = -EINVAL;
354 goto out;
355 }
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
358 if (p == NULL) {
359 ret = -ENOMEM;
360 goto out;
361 }
362
363 p->major = major;
364 strlcpy(p->name, name, sizeof(p->name));
365 p->next = NULL;
366 index = major_to_index(major);
367
368 for (n = &major_names[index]; *n; n = &(*n)->next) {
369 if ((*n)->major == major)
370 break;
371 }
372 if (!*n)
373 *n = p;
374 else
375 ret = -EBUSY;
376
377 if (ret < 0) {
378 printk("register_blkdev: cannot get major %d for %s\n",
379 major, name);
380 kfree(p);
381 }
382out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200383 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return ret;
385}
386
387EXPORT_SYMBOL(register_blkdev);
388
Akinobu Mitaf4480242007-07-17 04:03:47 -0700389void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 struct blk_major_name **n;
392 struct blk_major_name *p = NULL;
393 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200395 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 for (n = &major_names[index]; *n; n = &(*n)->next)
397 if ((*n)->major == major)
398 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700399 if (!*n || strcmp((*n)->name, name)) {
400 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700401 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 p = *n;
403 *n = p->next;
404 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200405 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
409EXPORT_SYMBOL(unregister_blkdev);
410
411static struct kobj_map *bdev_map;
412
Tejun Heobcce3de2008-08-25 19:47:22 +0900413/**
Tejun Heo870d6652008-08-25 19:47:25 +0900414 * blk_mangle_minor - scatter minor numbers apart
415 * @minor: minor number to mangle
416 *
417 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
418 * is enabled. Mangling twice gives the original value.
419 *
420 * RETURNS:
421 * Mangled value.
422 *
423 * CONTEXT:
424 * Don't care.
425 */
426static int blk_mangle_minor(int minor)
427{
428#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
429 int i;
430
431 for (i = 0; i < MINORBITS / 2; i++) {
432 int low = minor & (1 << i);
433 int high = minor & (1 << (MINORBITS - 1 - i));
434 int distance = MINORBITS - 1 - 2 * i;
435
436 minor ^= low | high; /* clear both bits */
437 low <<= distance; /* swap the positions */
438 high >>= distance;
439 minor |= low | high; /* and set */
440 }
441#endif
442 return minor;
443}
444
445/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900446 * blk_alloc_devt - allocate a dev_t for a partition
447 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900448 * @devt: out parameter for resulting dev_t
449 *
450 * Allocate a dev_t for block device.
451 *
452 * RETURNS:
453 * 0 on success, allocated dev_t is returned in *@devt. -errno on
454 * failure.
455 *
456 * CONTEXT:
457 * Might sleep.
458 */
459int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
460{
461 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800462 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900463
464 /* in consecutive minor range? */
465 if (part->partno < disk->minors) {
466 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
467 return 0;
468 }
469
470 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600471 idr_preload(GFP_KERNEL);
472
Dan Williams4d66e5e2015-06-10 23:47:14 -0400473 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600474 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400475 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600476
477 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800478 if (idx < 0)
479 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900480
Tejun Heo870d6652008-08-25 19:47:25 +0900481 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900482 return 0;
483}
484
485/**
486 * blk_free_devt - free a dev_t
487 * @devt: dev_t to free
488 *
489 * Free @devt which was allocated using blk_alloc_devt().
490 *
491 * CONTEXT:
492 * Might sleep.
493 */
494void blk_free_devt(dev_t devt)
495{
Tejun Heobcce3de2008-08-25 19:47:22 +0900496 if (devt == MKDEV(0, 0))
497 return;
498
499 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400500 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900501 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400502 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900503 }
504}
505
Tejun Heo1f014292008-08-25 19:47:23 +0900506static char *bdevt_str(dev_t devt, char *buf)
507{
508 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
509 char tbuf[BDEVT_SIZE];
510 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
511 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
512 } else
513 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
514
515 return buf;
516}
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/*
519 * Register device numbers dev..(dev+range-1)
520 * range must be nonzero
521 * The hash chain is sorted on range, so that subranges can override.
522 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200523void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct kobject *(*probe)(dev_t, int *, void *),
525 int (*lock)(dev_t, void *), void *data)
526{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200527 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530EXPORT_SYMBOL(blk_register_region);
531
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200532void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200534 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537EXPORT_SYMBOL(blk_unregister_region);
538
Tejun Heocf771cb2008-09-03 09:01:09 +0200539static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200542
Tejun Heoed9e1982008-08-25 19:56:05 +0900543 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200546static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 struct gendisk *p = data;
549
Jan Kara3079c222018-02-26 13:01:38 +0100550 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return -1;
552 return 0;
553}
554
Dan Williamse63a46b2016-06-15 18:17:27 -0700555static void register_disk(struct device *parent, struct gendisk *disk)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100556{
557 struct device *ddev = disk_to_dev(disk);
558 struct block_device *bdev;
559 struct disk_part_iter piter;
560 struct hd_struct *part;
561 int err;
562
Dan Williamse63a46b2016-06-15 18:17:27 -0700563 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100564
Kees Cookffc8b302013-07-03 15:01:14 -0700565 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100566
567 /* delay uevents, until we scanned partition table */
568 dev_set_uevent_suppress(ddev, 1);
569
570 if (device_add(ddev))
571 return;
572 if (!sysfs_deprecated) {
573 err = sysfs_create_link(block_depr, &ddev->kobj,
574 kobject_name(&ddev->kobj));
575 if (err) {
576 device_del(ddev);
577 return;
578 }
579 }
Ming Lei25e823c2013-02-22 16:34:13 -0800580
581 /*
582 * avoid probable deadlock caused by allocating memory with
583 * GFP_KERNEL in runtime_resume callback of its all ancestor
584 * devices
585 */
586 pm_runtime_set_memalloc_noio(ddev, true);
587
Tejun Heod2bf1b62010-12-08 20:57:36 +0100588 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
589 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
590
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300591 if (disk->flags & GENHD_FL_HIDDEN) {
592 dev_set_uevent_suppress(ddev, 0);
593 return;
594 }
595
Tejun Heod2bf1b62010-12-08 20:57:36 +0100596 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200597 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100598 goto exit;
599
600 /* No such device (e.g., media were just removed) */
601 if (!get_capacity(disk))
602 goto exit;
603
604 bdev = bdget_disk(disk, 0);
605 if (!bdev)
606 goto exit;
607
608 bdev->bd_invalidated = 1;
609 err = blkdev_get(bdev, FMODE_READ, NULL);
610 if (err < 0)
611 goto exit;
612 blkdev_put(bdev, FMODE_READ);
613
614exit:
615 /* announce disk after possible partitions are created */
616 dev_set_uevent_suppress(ddev, 0);
617 kobject_uevent(&ddev->kobj, KOBJ_ADD);
618
619 /* announce possible partitions */
620 disk_part_iter_init(&piter, disk, 0);
621 while ((part = disk_part_iter_next(&piter)))
622 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
623 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300624
625 err = sysfs_create_link(&ddev->kobj,
626 &disk->queue->backing_dev_info->dev->kobj,
627 "bdi");
628 WARN_ON(err);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500632 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700633 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * @disk: per-device partitioning information
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500635 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 *
637 * This function registers the partitioning information in @disk
638 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900639 *
640 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500642static void __device_add_disk(struct device *parent, struct gendisk *disk,
643 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900645 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400646 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700647
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900648 /* minors == 0 indicates to use ext devt from part0 and should
649 * be accompanied with EXT_DEVT flag. Make sure all
650 * parameters make sense.
651 */
652 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300653 WARN_ON(!disk->minors &&
654 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900657
658 retval = blk_alloc_devt(&disk->part0, &devt);
659 if (retval) {
660 WARN_ON(1);
661 return;
662 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900663 disk->major = MAJOR(devt);
664 disk->first_minor = MINOR(devt);
665
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100666 disk_alloc_events(disk);
667
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300668 if (disk->flags & GENHD_FL_HIDDEN) {
669 /*
670 * Don't let hidden disks show up in /proc/partitions,
671 * and don't bother scanning for partitions either.
672 */
673 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
674 disk->flags |= GENHD_FL_NO_PART_SCAN;
675 } else {
weiping zhang3a921682017-10-31 18:38:59 +0800676 int ret;
677
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300678 /* Register BDI before referencing it from bdev */
679 disk_to_dev(disk)->devt = devt;
weiping zhang3a921682017-10-31 18:38:59 +0800680 ret = bdi_register_owner(disk->queue->backing_dev_info,
681 disk_to_dev(disk));
682 WARN_ON(ret);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300683 blk_register_region(disk_devt(disk), disk->minors, NULL,
684 exact_match, exact_lock, disk);
685 }
Dan Williamse63a46b2016-06-15 18:17:27 -0700686 register_disk(parent, disk);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500687 if (register_queue)
688 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700689
Tejun Heo523e1d32011-10-19 14:31:07 +0200690 /*
691 * Take an extra ref on queue which will be put on disk_release()
692 * so that it sticks around as long as @disk is there.
693 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100694 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200695
Tejun Heo77ea8872010-12-08 20:57:37 +0100696 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400697 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500699
700void device_add_disk(struct device *parent, struct gendisk *disk)
701{
702 __device_add_disk(parent, disk, true);
703}
Dan Williamse63a46b2016-06-15 18:17:27 -0700704EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500706void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
707{
708 __device_add_disk(parent, disk, false);
709}
710EXPORT_SYMBOL(device_add_disk_no_queue_reg);
711
Tejun Heod2bf1b62010-12-08 20:57:36 +0100712void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100714 struct disk_part_iter piter;
715 struct hd_struct *part;
716
Martin K. Petersen25520d52015-10-21 13:19:49 -0400717 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100718 disk_del_events(disk);
719
Jan Kara56c09082018-02-26 13:01:41 +0100720 /*
721 * Block lookups of the disk until all bdevs are unhashed and the
722 * disk is marked as dead (GENHD_FL_UP cleared).
723 */
724 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100725 /* invalidate stuff */
726 disk_part_iter_init(&piter, disk,
727 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
728 while ((part = disk_part_iter_next(&piter))) {
729 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100730 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100731 delete_partition(disk, part->partno);
732 }
733 disk_part_iter_exit(&piter);
734
735 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100736 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100737 set_capacity(disk, 0);
738 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100739 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100740
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300741 if (!(disk->flags & GENHD_FL_HIDDEN))
742 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100743 if (disk->queue) {
744 /*
745 * Unregister bdi before releasing device numbers (as they can
746 * get reused and we'd get clashes in sysfs).
747 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500748 if (!(disk->flags & GENHD_FL_HIDDEN))
749 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100750 blk_unregister_queue(disk);
751 } else {
752 WARN_ON(1);
753 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100754
Hannes Reinecke17eac092017-11-09 17:57:06 +0100755 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300756 blk_unregister_region(disk_devt(disk), disk->minors);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100757
758 kobject_put(disk->part0.holder_dir);
759 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900762 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100763 if (!sysfs_deprecated)
764 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800765 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100766 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100768EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Vishal Verma99e66082016-01-09 08:36:51 -0800770/* sysfs access to bad-blocks list. */
771static ssize_t disk_badblocks_show(struct device *dev,
772 struct device_attribute *attr,
773 char *page)
774{
775 struct gendisk *disk = dev_to_disk(dev);
776
777 if (!disk->bb)
778 return sprintf(page, "\n");
779
780 return badblocks_show(disk->bb, page, 0);
781}
782
783static ssize_t disk_badblocks_store(struct device *dev,
784 struct device_attribute *attr,
785 const char *page, size_t len)
786{
787 struct gendisk *disk = dev_to_disk(dev);
788
789 if (!disk->bb)
790 return -ENXIO;
791
792 return badblocks_store(disk->bb, page, len, 0);
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/**
796 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200797 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200798 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
800 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200801 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200803struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Tejun Heobcce3de2008-08-25 19:47:22 +0900805 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200806
Tejun Heobcce3de2008-08-25 19:47:22 +0900807 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
808 struct kobject *kobj;
809
810 kobj = kobj_lookup(bdev_map, devt, partno);
811 if (kobj)
812 disk = dev_to_disk(kobj_to_dev(kobj));
813 } else {
814 struct hd_struct *part;
815
Dan Williams4d66e5e2015-06-10 23:47:14 -0400816 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900817 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +0100818 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +0900819 *partno = part->partno;
820 disk = part_to_disk(part);
821 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400822 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900823 }
824
Jan Kara56c09082018-02-26 13:01:41 +0100825 if (!disk)
826 return NULL;
827
828 /*
829 * Synchronize with del_gendisk() to not return disk that is being
830 * destroyed.
831 */
832 down_read(&disk->lookup_sem);
833 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
834 !(disk->flags & GENHD_FL_UP))) {
835 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +0100836 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300837 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +0100838 } else {
839 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300840 }
Tejun Heobcce3de2008-08-25 19:47:22 +0900841 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200843EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Tejun Heof331c022008-09-03 09:01:48 +0200845/**
846 * bdget_disk - do bdget() by gendisk and partition number
847 * @disk: gendisk of interest
848 * @partno: partition number
849 *
850 * Find partition @partno from @disk, do bdget() on it.
851 *
852 * CONTEXT:
853 * Don't care.
854 *
855 * RETURNS:
856 * Resulting block_device on success, NULL on failure.
857 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200858struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200859{
Tejun Heo548b10e2008-08-29 09:01:47 +0200860 struct hd_struct *part;
861 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200862
Tejun Heo548b10e2008-08-29 09:01:47 +0200863 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200864 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200865 bdev = bdget(part_devt(part));
866 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200867
Tejun Heo548b10e2008-08-29 09:01:47 +0200868 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200869}
870EXPORT_SYMBOL(bdget_disk);
871
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700872/*
873 * print a full list of all partitions - intended for places where the root
874 * filesystem can't be mounted and thus to give the victim some idea of what
875 * went wrong
876 */
877void __init printk_all_partitions(void)
878{
Tejun Heodef4e382008-09-03 08:57:12 +0200879 struct class_dev_iter iter;
880 struct device *dev;
881
882 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
883 while ((dev = class_dev_iter_next(&iter))) {
884 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200885 struct disk_part_iter piter;
886 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900887 char name_buf[BDEVNAME_SIZE];
888 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200889
890 /*
891 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300892 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200893 */
894 if (get_capacity(disk) == 0 ||
895 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
896 continue;
897
898 /*
899 * Note, unlike /proc/partitions, I am showing the
900 * numbers in hex - the same format as the root=
901 * option takes.
902 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900903 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
904 while ((part = disk_part_iter_next(&piter))) {
905 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200906
Will Drewryb5af9212010-08-31 15:47:07 -0500907 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900908 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200909 (unsigned long long)part_nr_sects_read(part) >> 1
910 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800911 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900912 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700913 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900914 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700915 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900916 else
917 printk(" (driver?)\n");
918 } else
919 printk("\n");
920 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200921 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200922 }
923 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926#ifdef CONFIG_PROC_FS
927/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200928static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400929{
Tejun Heodef4e382008-09-03 08:57:12 +0200930 loff_t skip = *pos;
931 struct class_dev_iter *iter;
932 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400933
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200934 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200935 if (!iter)
936 return ERR_PTR(-ENOMEM);
937
938 seqf->private = iter;
939 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
940 do {
941 dev = class_dev_iter_next(iter);
942 if (!dev)
943 return NULL;
944 } while (skip--);
945
946 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400947}
948
Tejun Heodef4e382008-09-03 08:57:12 +0200949static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200951 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400952
Tejun Heodef4e382008-09-03 08:57:12 +0200953 (*pos)++;
954 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200955 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400956 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return NULL;
959}
960
Tejun Heodef4e382008-09-03 08:57:12 +0200961static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400962{
Tejun Heodef4e382008-09-03 08:57:12 +0200963 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400964
Tejun Heodef4e382008-09-03 08:57:12 +0200965 /* stop is called even after start failed :-( */
966 if (iter) {
967 class_dev_iter_exit(iter);
968 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +0200969 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Tejun Heodef4e382008-09-03 08:57:12 +0200973static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Jianpeng Ma06768062012-08-03 10:42:00 +0200975 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +0200976
977 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +0100978 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +0200979 seq_puts(seqf, "major minor #blocks name\n\n");
980 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Tejun Heocf771cb2008-09-03 09:01:09 +0200983static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200986 struct disk_part_iter piter;
987 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 char buf[BDEVNAME_SIZE];
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +0200991 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +0200992 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return 0;
994 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
995 return 0;
996
997 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900998 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200999 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001000 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001001 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001002 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001003 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001004 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 return 0;
1007}
1008
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001009static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001010 .start = show_partition_start,
1011 .next = disk_seqf_next,
1012 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001013 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001015
1016static int partitions_open(struct inode *inode, struct file *file)
1017{
1018 return seq_open(file, &partitions_op);
1019}
1020
1021static const struct file_operations proc_partitions_operations = {
1022 .open = partitions_open,
1023 .read = seq_read,
1024 .llseek = seq_lseek,
1025 .release = seq_release,
1026};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027#endif
1028
1029
Tejun Heocf771cb2008-09-03 09:01:09 +02001030static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001032 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001034 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return NULL;
1036}
1037
1038static int __init genhd_device_init(void)
1039{
Dan Williamse105b8b2008-04-21 10:51:07 -07001040 int error;
1041
1042 block_class.dev_kobj = sysfs_dev_block_kobj;
1043 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001044 if (unlikely(error))
1045 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001046 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001048
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001049 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1050
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001051 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001052 if (!sysfs_deprecated)
1053 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001054 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
1057subsys_initcall(genhd_device_init);
1058
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001059static ssize_t disk_range_show(struct device *dev,
1060 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001062 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001064 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Tejun Heo1f014292008-08-25 19:47:23 +09001067static ssize_t disk_ext_range_show(struct device *dev,
1068 struct device_attribute *attr, char *buf)
1069{
1070 struct gendisk *disk = dev_to_disk(dev);
1071
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001072 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001073}
1074
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001075static ssize_t disk_removable_show(struct device *dev,
1076 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001077{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001078 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001079
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001080 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001084static ssize_t disk_hidden_show(struct device *dev,
1085 struct device_attribute *attr, char *buf)
1086{
1087 struct gendisk *disk = dev_to_disk(dev);
1088
1089 return sprintf(buf, "%d\n",
1090 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1091}
1092
Kay Sievers1c9ce522008-06-13 09:41:00 +02001093static ssize_t disk_ro_show(struct device *dev,
1094 struct device_attribute *attr, char *buf)
1095{
1096 struct gendisk *disk = dev_to_disk(dev);
1097
Tejun Heob7db9952008-08-25 19:56:10 +09001098 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001099}
1100
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001101static ssize_t disk_capability_show(struct device *dev,
1102 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001103{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001104 struct gendisk *disk = dev_to_disk(dev);
1105
1106 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001107}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001108
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001109static ssize_t disk_alignment_offset_show(struct device *dev,
1110 struct device_attribute *attr,
1111 char *buf)
1112{
1113 struct gendisk *disk = dev_to_disk(dev);
1114
1115 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1116}
1117
Martin K. Petersen86b37282009-11-10 11:50:21 +01001118static ssize_t disk_discard_alignment_show(struct device *dev,
1119 struct device_attribute *attr,
1120 char *buf)
1121{
1122 struct gendisk *disk = dev_to_disk(dev);
1123
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001124 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001125}
1126
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001127static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
Tejun Heo1f014292008-08-25 19:47:23 +09001128static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001129static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001130static DEVICE_ATTR(hidden, S_IRUGO, disk_hidden_show, NULL);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001131static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
Tejun Heoe5610522008-08-25 19:56:09 +09001132static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001133static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
Martin K. Petersen86b37282009-11-10 11:50:21 +01001134static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
1135 NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001136static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001137static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001138static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
Vishal Verma99e66082016-01-09 08:36:51 -08001139static DEVICE_ATTR(badblocks, S_IRUGO | S_IWUSR, disk_badblocks_show,
1140 disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001141#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001142static struct device_attribute dev_attr_fail =
Tejun Heoeddb2e22008-08-25 19:56:13 +09001143 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001144#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001145#ifdef CONFIG_FAIL_IO_TIMEOUT
1146static struct device_attribute dev_attr_fail_timeout =
1147 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
1148 part_timeout_store);
1149#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001150
1151static struct attribute *disk_attrs[] = {
1152 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001153 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001154 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001155 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001156 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001157 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001158 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001159 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001160 &dev_attr_capability.attr,
1161 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001162 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001163 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001164#ifdef CONFIG_FAIL_MAKE_REQUEST
1165 &dev_attr_fail.attr,
1166#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001167#ifdef CONFIG_FAIL_IO_TIMEOUT
1168 &dev_attr_fail_timeout.attr,
1169#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001170 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171};
1172
Dan Williams9438b3e02017-04-27 14:46:26 -07001173static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1174{
1175 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1176 struct gendisk *disk = dev_to_disk(dev);
1177
1178 if (a == &dev_attr_badblocks.attr && !disk->bb)
1179 return 0;
1180 return a->mode;
1181}
1182
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001183static struct attribute_group disk_attr_group = {
1184 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001185 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001186};
1187
David Brownella4dbd672009-06-24 10:06:31 -07001188static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001189 &disk_attr_group,
1190 NULL
1191};
1192
Tejun Heo540eed52008-08-25 19:56:15 +09001193/**
1194 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1195 * @disk: disk to replace part_tbl for
1196 * @new_ptbl: new part_tbl to install
1197 *
1198 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1199 * original ptbl is freed using RCU callback.
1200 *
1201 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001202 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001203 */
1204static void disk_replace_part_tbl(struct gendisk *disk,
1205 struct disk_part_tbl *new_ptbl)
1206{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001207 struct disk_part_tbl *old_ptbl =
1208 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001209
1210 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001211
1212 if (old_ptbl) {
1213 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001214 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001215 }
Tejun Heo540eed52008-08-25 19:56:15 +09001216}
1217
1218/**
1219 * disk_expand_part_tbl - expand disk->part_tbl
1220 * @disk: disk to expand part_tbl for
1221 * @partno: expand such that this partno can fit in
1222 *
1223 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1224 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1225 *
1226 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001227 * Matching bd_mutex locked or the caller is the only user of @disk.
1228 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001229 *
1230 * RETURNS:
1231 * 0 on success, -errno on failure.
1232 */
1233int disk_expand_part_tbl(struct gendisk *disk, int partno)
1234{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001235 struct disk_part_tbl *old_ptbl =
1236 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001237 struct disk_part_tbl *new_ptbl;
1238 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001239 int i, target;
Tejun Heo540eed52008-08-25 19:56:15 +09001240 size_t size;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001241
1242 /*
1243 * check for int overflow, since we can get here from blkpg_ioctl()
1244 * with a user passed 'partno'.
1245 */
1246 target = partno + 1;
1247 if (target < 0)
1248 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001249
1250 /* disk_max_parts() is zero during initialization, ignore if so */
1251 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1252 return -EINVAL;
1253
1254 if (target <= len)
1255 return 0;
1256
1257 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1258 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1259 if (!new_ptbl)
1260 return -ENOMEM;
1261
Tejun Heo540eed52008-08-25 19:56:15 +09001262 new_ptbl->len = target;
1263
1264 for (i = 0; i < len; i++)
1265 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1266
1267 disk_replace_part_tbl(disk, new_ptbl);
1268 return 0;
1269}
1270
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001271static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001273 struct gendisk *disk = dev_to_disk(dev);
1274
Keith Busch2da78092014-08-26 09:05:36 -06001275 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001276 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001278 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001279 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001280 if (disk->queue)
1281 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 kfree(disk);
1283}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001284struct class block_class = {
1285 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286};
1287
Kay Sievers3c2670e2013-04-06 09:56:00 -07001288static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001289 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001290{
1291 struct gendisk *disk = dev_to_disk(dev);
1292
Kay Sieverse454cea2009-09-18 23:01:12 +02001293 if (disk->devnode)
1294 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001295 return NULL;
1296}
1297
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001298static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001299 .name = "disk",
1300 .groups = disk_attr_groups,
1301 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001302 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303};
1304
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001305#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001306/*
1307 * aggregate disk stat collector. Uses the same stats that the sysfs
1308 * entries do, above, but makes them available through one seq_file.
1309 *
1310 * The output looks suspiciously like /proc/partitions with a bunch of
1311 * extra fields.
1312 */
1313static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001316 struct disk_part_iter piter;
1317 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 char buf[BDEVNAME_SIZE];
Jens Axboe0609e0e2017-08-08 17:49:47 -06001319 unsigned int inflight[2];
Tejun Heoc9959052008-08-25 19:47:21 +09001320 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001323 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001324 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 " rio rmerge rsect ruse wio wmerge "
1326 "wsect wuse running use aveq"
1327 "\n\n");
1328 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001329
Tejun Heo71982a42009-04-17 08:34:48 +02001330 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001331 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001332 cpu = part_stat_lock();
Jens Axboed62e26b2017-06-30 21:55:08 -06001333 part_round_stats(gp->queue, cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001334 part_stat_unlock();
Jens Axboe0609e0e2017-08-08 17:49:47 -06001335 part_in_flight(gp->queue, hd, inflight);
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001336 seq_printf(seqf, "%4d %7d %s %lu %lu %lu "
1337 "%u %lu %lu %lu %u %u %u %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001338 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1339 disk_name(gp, hd->partno, buf),
Liu Yuan53f22952011-03-02 11:00:15 -05001340 part_stat_read(hd, ios[READ]),
1341 part_stat_read(hd, merges[READ]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001342 part_stat_read(hd, sectors[READ]),
Liu Yuan53f22952011-03-02 11:00:15 -05001343 jiffies_to_msecs(part_stat_read(hd, ticks[READ])),
1344 part_stat_read(hd, ios[WRITE]),
1345 part_stat_read(hd, merges[WRITE]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001346 part_stat_read(hd, sectors[WRITE]),
Liu Yuan53f22952011-03-02 11:00:15 -05001347 jiffies_to_msecs(part_stat_read(hd, ticks[WRITE])),
Jens Axboe0609e0e2017-08-08 17:49:47 -06001348 inflight[0],
Jerome Marchand28f39d52008-02-08 11:04:56 +01001349 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1350 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1351 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001353 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return 0;
1356}
1357
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001358static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001359 .start = disk_seqf_start,
1360 .next = disk_seqf_next,
1361 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 .show = diskstats_show
1363};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001364
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001365static int diskstats_open(struct inode *inode, struct file *file)
1366{
1367 return seq_open(file, &diskstats_op);
1368}
1369
1370static const struct file_operations proc_diskstats_operations = {
1371 .open = diskstats_open,
1372 .read = seq_read,
1373 .llseek = seq_lseek,
1374 .release = seq_release,
1375};
1376
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001377static int __init proc_genhd_init(void)
1378{
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001379 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001380 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1381 return 0;
1382}
1383module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001384#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Tejun Heocf771cb2008-09-03 09:01:09 +02001386dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001387{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001388 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001389 struct class_dev_iter iter;
1390 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001391
Tejun Heodef4e382008-09-03 08:57:12 +02001392 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1393 while ((dev = class_dev_iter_next(&iter))) {
1394 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001395 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001396
Kay Sievers3ada8b72009-01-06 10:44:43 -08001397 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001398 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001399
Neil Brown41b8c852009-02-18 10:33:59 +01001400 if (partno < disk->minors) {
1401 /* We need to return the right devno, even
1402 * if the partition doesn't exist yet.
1403 */
1404 devt = MKDEV(MAJOR(dev->devt),
1405 MINOR(dev->devt) + partno);
1406 break;
1407 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001408 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001409 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001410 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001411 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001412 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001413 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001414 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001415 }
Tejun Heodef4e382008-09-03 08:57:12 +02001416 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001417 return devt;
1418}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001419EXPORT_SYMBOL(blk_lookup_devt);
1420
Byungchul Parke319e1f2017-10-25 17:56:05 +09001421struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001422{
1423 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001424 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001425
Christoph Hellwigde65b012017-08-23 19:10:29 +02001426 if (minors > DISK_MAX_PARTS) {
1427 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001428 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001429 DISK_MAX_PARTS);
1430 minors = DISK_MAX_PARTS;
1431 }
Christoph Lameter19460892005-06-23 00:08:19 -07001432
Joe Perchesc1b511e2013-08-29 15:21:42 -07001433 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001435 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 kfree(disk);
1437 return NULL;
1438 }
Jan Kara56c09082018-02-26 13:01:41 +01001439 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001440 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001441 if (disk_expand_part_tbl(disk, 0)) {
1442 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001443 kfree(disk);
1444 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001446 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1447 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001448
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001449 /*
1450 * set_capacity() and get_capacity() currently don't use
1451 * seqcounter to read/update the part0->nr_sects. Still init
1452 * the counter as we can read the sectors in IO submission
1453 * patch using seqence counters.
1454 *
1455 * TODO: Ideally set_capacity() and get_capacity() should be
1456 * converted to make use of bd_mutex and sequence counters.
1457 */
1458 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001459 if (hd_ref_init(&disk->part0)) {
1460 hd_free_part(&disk->part0);
1461 kfree(disk);
1462 return NULL;
1463 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001467 disk_to_dev(disk)->class = &block_class;
1468 disk_to_dev(disk)->type = &disk_type;
1469 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471 return disk;
1472}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001473EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Jan Kara3079c222018-02-26 13:01:38 +01001475struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 struct module *owner;
1478 struct kobject *kobj;
1479
1480 if (!disk->fops)
1481 return NULL;
1482 owner = disk->fops->owner;
1483 if (owner && !try_module_get(owner))
1484 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001485 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (kobj == NULL) {
1487 module_put(owner);
1488 return NULL;
1489 }
1490 return kobj;
1491
1492}
Jan Kara3079c222018-02-26 13:01:38 +01001493EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495void put_disk(struct gendisk *disk)
1496{
1497 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001498 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500EXPORT_SYMBOL(put_disk);
1501
Jan Kara9df6c292018-02-26 13:01:39 +01001502/*
1503 * This is a counterpart of get_disk_and_module() and thus also of
1504 * get_gendisk().
1505 */
1506void put_disk_and_module(struct gendisk *disk)
1507{
1508 if (disk) {
1509 struct module *owner = disk->fops->owner;
1510
1511 put_disk(disk);
1512 module_put(owner);
1513 }
1514}
1515EXPORT_SYMBOL(put_disk_and_module);
1516
Hannes Reineckee3264a42009-07-28 09:13:13 +02001517static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1518{
1519 char event[] = "DISK_RO=1";
1520 char *envp[] = { event, NULL };
1521
1522 if (!ro)
1523 event[8] = '0';
1524 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1525}
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527void set_device_ro(struct block_device *bdev, int flag)
1528{
Tejun Heob7db9952008-08-25 19:56:10 +09001529 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
1532EXPORT_SYMBOL(set_device_ro);
1533
1534void set_disk_ro(struct gendisk *disk, int flag)
1535{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001536 struct disk_part_iter piter;
1537 struct hd_struct *part;
1538
Hannes Reineckee3264a42009-07-28 09:13:13 +02001539 if (disk->part0.policy != flag) {
1540 set_disk_ro_uevent(disk, flag);
1541 disk->part0.policy = flag;
1542 }
1543
1544 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001545 while ((part = disk_part_iter_next(&piter)))
1546 part->policy = flag;
1547 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
1550EXPORT_SYMBOL(set_disk_ro);
1551
1552int bdev_read_only(struct block_device *bdev)
1553{
1554 if (!bdev)
1555 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001556 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
1559EXPORT_SYMBOL(bdev_read_only);
1560
Tejun Heocf771cb2008-09-03 09:01:09 +02001561int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001564 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001566 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001567 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 bdput(bdev);
1569 }
1570 return res;
1571}
1572
1573EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001574
1575/*
1576 * Disk events - monitor disk events like media change and eject request.
1577 */
1578struct disk_events {
1579 struct list_head node; /* all disk_event's */
1580 struct gendisk *disk; /* the associated disk */
1581 spinlock_t lock;
1582
Tejun Heofdd514e2011-06-09 20:43:59 +02001583 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001584 int block; /* event blocking depth */
1585 unsigned int pending; /* events already sent out */
1586 unsigned int clearing; /* events being cleared */
1587
1588 long poll_msecs; /* interval, -1 for default */
1589 struct delayed_work dwork;
1590};
1591
1592static const char *disk_events_strs[] = {
1593 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1594 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1595};
1596
1597static char *disk_uevents[] = {
1598 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1599 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1600};
1601
1602/* list of all disk_events */
1603static DEFINE_MUTEX(disk_events_mutex);
1604static LIST_HEAD(disk_events);
1605
1606/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001607static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001608
1609static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1610{
1611 struct disk_events *ev = disk->ev;
1612 long intv_msecs = 0;
1613
1614 /*
1615 * If device-specific poll interval is set, always use it. If
1616 * the default is being used, poll iff there are events which
1617 * can't be monitored asynchronously.
1618 */
1619 if (ev->poll_msecs >= 0)
1620 intv_msecs = ev->poll_msecs;
1621 else if (disk->events & ~disk->async_events)
1622 intv_msecs = disk_events_dfl_poll_msecs;
1623
1624 return msecs_to_jiffies(intv_msecs);
1625}
1626
Tejun Heoc3af54a2011-06-09 20:43:55 +02001627/**
1628 * disk_block_events - block and flush disk event checking
1629 * @disk: disk to block events for
1630 *
1631 * On return from this function, it is guaranteed that event checking
1632 * isn't in progress and won't happen until unblocked by
1633 * disk_unblock_events(). Events blocking is counted and the actual
1634 * unblocking happens after the matching number of unblocks are done.
1635 *
1636 * Note that this intentionally does not block event checking from
1637 * disk_clear_events().
1638 *
1639 * CONTEXT:
1640 * Might sleep.
1641 */
1642void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001643{
1644 struct disk_events *ev = disk->ev;
1645 unsigned long flags;
1646 bool cancel;
1647
Tejun Heoc3af54a2011-06-09 20:43:55 +02001648 if (!ev)
1649 return;
1650
Tejun Heofdd514e2011-06-09 20:43:59 +02001651 /*
1652 * Outer mutex ensures that the first blocker completes canceling
1653 * the event work before further blockers are allowed to finish.
1654 */
1655 mutex_lock(&ev->block_mutex);
1656
Tejun Heo77ea8872010-12-08 20:57:37 +01001657 spin_lock_irqsave(&ev->lock, flags);
1658 cancel = !ev->block++;
1659 spin_unlock_irqrestore(&ev->lock, flags);
1660
Tejun Heoc3af54a2011-06-09 20:43:55 +02001661 if (cancel)
1662 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001663
1664 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001665}
1666
1667static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1668{
1669 struct disk_events *ev = disk->ev;
1670 unsigned long intv;
1671 unsigned long flags;
1672
1673 spin_lock_irqsave(&ev->lock, flags);
1674
1675 if (WARN_ON_ONCE(ev->block <= 0))
1676 goto out_unlock;
1677
1678 if (--ev->block)
1679 goto out_unlock;
1680
Tejun Heo77ea8872010-12-08 20:57:37 +01001681 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001682 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301683 queue_delayed_work(system_freezable_power_efficient_wq,
1684 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001685 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301686 queue_delayed_work(system_freezable_power_efficient_wq,
1687 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001688out_unlock:
1689 spin_unlock_irqrestore(&ev->lock, flags);
1690}
1691
1692/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001693 * disk_unblock_events - unblock disk event checking
1694 * @disk: disk to unblock events for
1695 *
1696 * Undo disk_block_events(). When the block count reaches zero, it
1697 * starts events polling if configured.
1698 *
1699 * CONTEXT:
1700 * Don't care. Safe to call from irq context.
1701 */
1702void disk_unblock_events(struct gendisk *disk)
1703{
1704 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001705 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001706}
1707
1708/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001709 * disk_flush_events - schedule immediate event checking and flushing
1710 * @disk: disk to check and flush events for
1711 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001712 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001713 * Schedule immediate event checking on @disk if not blocked. Events in
1714 * @mask are scheduled to be cleared from the driver. Note that this
1715 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001716 *
1717 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001718 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001719 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001720void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001721{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001722 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001723
1724 if (!ev)
1725 return;
1726
Tejun Heo85ef06d2011-07-01 16:17:47 +02001727 spin_lock_irq(&ev->lock);
1728 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001729 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301730 mod_delayed_work(system_freezable_power_efficient_wq,
1731 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001732 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001733}
Tejun Heo77ea8872010-12-08 20:57:37 +01001734
1735/**
1736 * disk_clear_events - synchronously check, clear and return pending events
1737 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001738 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001739 *
1740 * Disk events are synchronously checked and pending events in @mask
1741 * are cleared and returned. This ignores the block count.
1742 *
1743 * CONTEXT:
1744 * Might sleep.
1745 */
1746unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1747{
1748 const struct block_device_operations *bdops = disk->fops;
1749 struct disk_events *ev = disk->ev;
1750 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001751 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001752
1753 if (!ev) {
1754 /* for drivers still using the old ->media_changed method */
1755 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1756 bdops->media_changed && bdops->media_changed(disk))
1757 return DISK_EVENT_MEDIA_CHANGE;
1758 return 0;
1759 }
1760
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001761 disk_block_events(disk);
1762
1763 /*
1764 * store the union of mask and ev->clearing on the stack so that the
1765 * race with disk_flush_events does not cause ambiguity (ev->clearing
1766 * can still be modified even if events are blocked).
1767 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001768 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001769 clearing |= ev->clearing;
1770 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001771 spin_unlock_irq(&ev->lock);
1772
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001773 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001774 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001775 * if ev->clearing is not 0, the disk_flush_events got called in the
1776 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001777 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001778 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001779
1780 /* then, fetch and clear pending events */
1781 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001782 pending = ev->pending & mask;
1783 ev->pending &= ~mask;
1784 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001785 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001786
1787 return pending;
1788}
1789
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001790/*
1791 * Separate this part out so that a different pointer for clearing_ptr can be
1792 * passed in for disk_clear_events.
1793 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001794static void disk_events_workfn(struct work_struct *work)
1795{
1796 struct delayed_work *dwork = to_delayed_work(work);
1797 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001798
1799 disk_check_events(ev, &ev->clearing);
1800}
1801
1802static void disk_check_events(struct disk_events *ev,
1803 unsigned int *clearing_ptr)
1804{
Tejun Heo77ea8872010-12-08 20:57:37 +01001805 struct gendisk *disk = ev->disk;
1806 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001807 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001808 unsigned int events;
1809 unsigned long intv;
1810 int nr_events = 0, i;
1811
1812 /* check events */
1813 events = disk->fops->check_events(disk, clearing);
1814
1815 /* accumulate pending events and schedule next poll if necessary */
1816 spin_lock_irq(&ev->lock);
1817
1818 events &= ~ev->pending;
1819 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001820 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001821
1822 intv = disk_events_poll_jiffies(disk);
1823 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301824 queue_delayed_work(system_freezable_power_efficient_wq,
1825 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001826
1827 spin_unlock_irq(&ev->lock);
1828
Tejun Heo7c88a162011-04-21 19:43:58 +02001829 /*
1830 * Tell userland about new events. Only the events listed in
1831 * @disk->events are reported. Unlisted events are processed the
1832 * same internally but never get reported to userland.
1833 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001834 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Tejun Heo7c88a162011-04-21 19:43:58 +02001835 if (events & disk->events & (1 << i))
Tejun Heo77ea8872010-12-08 20:57:37 +01001836 envp[nr_events++] = disk_uevents[i];
1837
1838 if (nr_events)
1839 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1840}
1841
1842/*
1843 * A disk events enabled device has the following sysfs nodes under
1844 * its /sys/block/X/ directory.
1845 *
1846 * events : list of all supported events
1847 * events_async : list of events which can be detected w/o polling
1848 * events_poll_msecs : polling interval, 0: disable, -1: system default
1849 */
1850static ssize_t __disk_events_show(unsigned int events, char *buf)
1851{
1852 const char *delim = "";
1853 ssize_t pos = 0;
1854 int i;
1855
1856 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1857 if (events & (1 << i)) {
1858 pos += sprintf(buf + pos, "%s%s",
1859 delim, disk_events_strs[i]);
1860 delim = " ";
1861 }
1862 if (pos)
1863 pos += sprintf(buf + pos, "\n");
1864 return pos;
1865}
1866
1867static ssize_t disk_events_show(struct device *dev,
1868 struct device_attribute *attr, char *buf)
1869{
1870 struct gendisk *disk = dev_to_disk(dev);
1871
1872 return __disk_events_show(disk->events, buf);
1873}
1874
1875static ssize_t disk_events_async_show(struct device *dev,
1876 struct device_attribute *attr, char *buf)
1877{
1878 struct gendisk *disk = dev_to_disk(dev);
1879
1880 return __disk_events_show(disk->async_events, buf);
1881}
1882
1883static ssize_t disk_events_poll_msecs_show(struct device *dev,
1884 struct device_attribute *attr,
1885 char *buf)
1886{
1887 struct gendisk *disk = dev_to_disk(dev);
1888
1889 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1890}
1891
1892static ssize_t disk_events_poll_msecs_store(struct device *dev,
1893 struct device_attribute *attr,
1894 const char *buf, size_t count)
1895{
1896 struct gendisk *disk = dev_to_disk(dev);
1897 long intv;
1898
1899 if (!count || !sscanf(buf, "%ld", &intv))
1900 return -EINVAL;
1901
1902 if (intv < 0 && intv != -1)
1903 return -EINVAL;
1904
Tejun Heoc3af54a2011-06-09 20:43:55 +02001905 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001906 disk->ev->poll_msecs = intv;
1907 __disk_unblock_events(disk, true);
1908
1909 return count;
1910}
1911
1912static const DEVICE_ATTR(events, S_IRUGO, disk_events_show, NULL);
1913static const DEVICE_ATTR(events_async, S_IRUGO, disk_events_async_show, NULL);
1914static const DEVICE_ATTR(events_poll_msecs, S_IRUGO|S_IWUSR,
1915 disk_events_poll_msecs_show,
1916 disk_events_poll_msecs_store);
1917
1918static const struct attribute *disk_events_attrs[] = {
1919 &dev_attr_events.attr,
1920 &dev_attr_events_async.attr,
1921 &dev_attr_events_poll_msecs.attr,
1922 NULL,
1923};
1924
1925/*
1926 * The default polling interval can be specified by the kernel
1927 * parameter block.events_dfl_poll_msecs which defaults to 0
1928 * (disable). This can also be modified runtime by writing to
1929 * /sys/module/block/events_dfl_poll_msecs.
1930 */
1931static int disk_events_set_dfl_poll_msecs(const char *val,
1932 const struct kernel_param *kp)
1933{
1934 struct disk_events *ev;
1935 int ret;
1936
1937 ret = param_set_ulong(val, kp);
1938 if (ret < 0)
1939 return ret;
1940
1941 mutex_lock(&disk_events_mutex);
1942
1943 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02001944 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001945
1946 mutex_unlock(&disk_events_mutex);
1947
1948 return 0;
1949}
1950
1951static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1952 .set = disk_events_set_dfl_poll_msecs,
1953 .get = param_get_ulong,
1954};
1955
1956#undef MODULE_PARAM_PREFIX
1957#define MODULE_PARAM_PREFIX "block."
1958
1959module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1960 &disk_events_dfl_poll_msecs, 0644);
1961
1962/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001963 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01001964 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001965static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001966{
1967 struct disk_events *ev;
1968
Tejun Heo75e3f3e2011-05-26 21:06:50 +02001969 if (!disk->fops->check_events)
Tejun Heo77ea8872010-12-08 20:57:37 +01001970 return;
1971
1972 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1973 if (!ev) {
1974 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1975 return;
1976 }
1977
Tejun Heo77ea8872010-12-08 20:57:37 +01001978 INIT_LIST_HEAD(&ev->node);
1979 ev->disk = disk;
1980 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02001981 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001982 ev->block = 1;
1983 ev->poll_msecs = -1;
1984 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1985
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001986 disk->ev = ev;
1987}
1988
1989static void disk_add_events(struct gendisk *disk)
1990{
1991 if (!disk->ev)
1992 return;
1993
1994 /* FIXME: error handling */
1995 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
1996 pr_warn("%s: failed to create sysfs files for events\n",
1997 disk->disk_name);
1998
Tejun Heo77ea8872010-12-08 20:57:37 +01001999 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002000 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002001 mutex_unlock(&disk_events_mutex);
2002
2003 /*
2004 * Block count is initialized to 1 and the following initial
2005 * unblock kicks it into action.
2006 */
2007 __disk_unblock_events(disk, true);
2008}
2009
2010static void disk_del_events(struct gendisk *disk)
2011{
2012 if (!disk->ev)
2013 return;
2014
Tejun Heoc3af54a2011-06-09 20:43:55 +02002015 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002016
2017 mutex_lock(&disk_events_mutex);
2018 list_del_init(&disk->ev->node);
2019 mutex_unlock(&disk_events_mutex);
2020
2021 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2022}
2023
2024static void disk_release_events(struct gendisk *disk)
2025{
2026 /* the block count should be 1 from disk_del_events() */
2027 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2028 kfree(disk->ev);
2029}