blob: 00620e01e043a0d19ad5672dea40e9831eaf8ec6 [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
550 if (!get_disk(p))
551 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/**
Dan Williamse63a46b2016-06-15 18:17:27 -0700632 * device_add_disk - add partitioning information to kernel list
633 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * @disk: per-device partitioning information
635 *
636 * This function registers the partitioning information in @disk
637 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900638 *
639 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 */
Dan Williamse63a46b2016-06-15 18:17:27 -0700641void device_add_disk(struct device *parent, struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900643 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400644 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700645
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900646 /* minors == 0 indicates to use ext devt from part0 and should
647 * be accompanied with EXT_DEVT flag. Make sure all
648 * parameters make sense.
649 */
650 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300651 WARN_ON(!disk->minors &&
652 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900655
656 retval = blk_alloc_devt(&disk->part0, &devt);
657 if (retval) {
658 WARN_ON(1);
659 return;
660 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900661 disk->major = MAJOR(devt);
662 disk->first_minor = MINOR(devt);
663
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100664 disk_alloc_events(disk);
665
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300666 if (disk->flags & GENHD_FL_HIDDEN) {
667 /*
668 * Don't let hidden disks show up in /proc/partitions,
669 * and don't bother scanning for partitions either.
670 */
671 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
672 disk->flags |= GENHD_FL_NO_PART_SCAN;
673 } else {
weiping zhang3a921682017-10-31 18:38:59 +0800674 int ret;
675
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300676 /* Register BDI before referencing it from bdev */
677 disk_to_dev(disk)->devt = devt;
weiping zhang3a921682017-10-31 18:38:59 +0800678 ret = bdi_register_owner(disk->queue->backing_dev_info,
679 disk_to_dev(disk));
680 WARN_ON(ret);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300681 blk_register_region(disk_devt(disk), disk->minors, NULL,
682 exact_match, exact_lock, disk);
683 }
Dan Williamse63a46b2016-06-15 18:17:27 -0700684 register_disk(parent, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700686
Tejun Heo523e1d32011-10-19 14:31:07 +0200687 /*
688 * Take an extra ref on queue which will be put on disk_release()
689 * so that it sticks around as long as @disk is there.
690 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100691 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200692
Tejun Heo77ea8872010-12-08 20:57:37 +0100693 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400694 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
Dan Williamse63a46b2016-06-15 18:17:27 -0700696EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Tejun Heod2bf1b62010-12-08 20:57:36 +0100698void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100700 struct disk_part_iter piter;
701 struct hd_struct *part;
702
Martin K. Petersen25520d52015-10-21 13:19:49 -0400703 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100704 disk_del_events(disk);
705
Tejun Heod2bf1b62010-12-08 20:57:36 +0100706 /* invalidate stuff */
707 disk_part_iter_init(&piter, disk,
708 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
709 while ((part = disk_part_iter_next(&piter))) {
710 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100711 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100712 delete_partition(disk, part->partno);
713 }
714 disk_part_iter_exit(&piter);
715
716 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100717 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100718 set_capacity(disk, 0);
719 disk->flags &= ~GENHD_FL_UP;
720
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300721 if (!(disk->flags & GENHD_FL_HIDDEN))
722 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100723 if (disk->queue) {
724 /*
725 * Unregister bdi before releasing device numbers (as they can
726 * get reused and we'd get clashes in sysfs).
727 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500728 if (!(disk->flags & GENHD_FL_HIDDEN))
729 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100730 blk_unregister_queue(disk);
731 } else {
732 WARN_ON(1);
733 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100734
Hannes Reinecke17eac092017-11-09 17:57:06 +0100735 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300736 blk_unregister_region(disk_devt(disk), disk->minors);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100737
738 kobject_put(disk->part0.holder_dir);
739 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900742 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100743 if (!sysfs_deprecated)
744 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800745 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100746 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100748EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Vishal Verma99e66082016-01-09 08:36:51 -0800750/* sysfs access to bad-blocks list. */
751static ssize_t disk_badblocks_show(struct device *dev,
752 struct device_attribute *attr,
753 char *page)
754{
755 struct gendisk *disk = dev_to_disk(dev);
756
757 if (!disk->bb)
758 return sprintf(page, "\n");
759
760 return badblocks_show(disk->bb, page, 0);
761}
762
763static ssize_t disk_badblocks_store(struct device *dev,
764 struct device_attribute *attr,
765 const char *page, size_t len)
766{
767 struct gendisk *disk = dev_to_disk(dev);
768
769 if (!disk->bb)
770 return -ENXIO;
771
772 return badblocks_store(disk->bb, page, len, 0);
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775/**
776 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200777 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200778 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 *
780 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200781 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200783struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Tejun Heobcce3de2008-08-25 19:47:22 +0900785 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200786
Tejun Heobcce3de2008-08-25 19:47:22 +0900787 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
788 struct kobject *kobj;
789
790 kobj = kobj_lookup(bdev_map, devt, partno);
791 if (kobj)
792 disk = dev_to_disk(kobj_to_dev(kobj));
793 } else {
794 struct hd_struct *part;
795
Dan Williams4d66e5e2015-06-10 23:47:14 -0400796 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900797 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900798 if (part && get_disk(part_to_disk(part))) {
799 *partno = part->partno;
800 disk = part_to_disk(part);
801 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400802 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900803 }
804
Colin Ian Kingf0fba392017-11-06 17:53:53 +0000805 if (disk && unlikely(disk->flags & GENHD_FL_HIDDEN)) {
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300806 put_disk(disk);
807 disk = NULL;
808 }
Tejun Heobcce3de2008-08-25 19:47:22 +0900809 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200811EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Tejun Heof331c022008-09-03 09:01:48 +0200813/**
814 * bdget_disk - do bdget() by gendisk and partition number
815 * @disk: gendisk of interest
816 * @partno: partition number
817 *
818 * Find partition @partno from @disk, do bdget() on it.
819 *
820 * CONTEXT:
821 * Don't care.
822 *
823 * RETURNS:
824 * Resulting block_device on success, NULL on failure.
825 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200826struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200827{
Tejun Heo548b10e2008-08-29 09:01:47 +0200828 struct hd_struct *part;
829 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200830
Tejun Heo548b10e2008-08-29 09:01:47 +0200831 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200832 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200833 bdev = bdget(part_devt(part));
834 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200835
Tejun Heo548b10e2008-08-29 09:01:47 +0200836 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200837}
838EXPORT_SYMBOL(bdget_disk);
839
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700840/*
841 * print a full list of all partitions - intended for places where the root
842 * filesystem can't be mounted and thus to give the victim some idea of what
843 * went wrong
844 */
845void __init printk_all_partitions(void)
846{
Tejun Heodef4e382008-09-03 08:57:12 +0200847 struct class_dev_iter iter;
848 struct device *dev;
849
850 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
851 while ((dev = class_dev_iter_next(&iter))) {
852 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200853 struct disk_part_iter piter;
854 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900855 char name_buf[BDEVNAME_SIZE];
856 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200857
858 /*
859 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300860 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200861 */
862 if (get_capacity(disk) == 0 ||
863 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
864 continue;
865
866 /*
867 * Note, unlike /proc/partitions, I am showing the
868 * numbers in hex - the same format as the root=
869 * option takes.
870 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900871 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
872 while ((part = disk_part_iter_next(&piter))) {
873 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200874
Will Drewryb5af9212010-08-31 15:47:07 -0500875 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900876 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200877 (unsigned long long)part_nr_sects_read(part) >> 1
878 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800879 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900880 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700881 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900882 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700883 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900884 else
885 printk(" (driver?)\n");
886 } else
887 printk("\n");
888 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200889 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200890 }
891 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894#ifdef CONFIG_PROC_FS
895/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200896static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400897{
Tejun Heodef4e382008-09-03 08:57:12 +0200898 loff_t skip = *pos;
899 struct class_dev_iter *iter;
900 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400901
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200902 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200903 if (!iter)
904 return ERR_PTR(-ENOMEM);
905
906 seqf->private = iter;
907 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
908 do {
909 dev = class_dev_iter_next(iter);
910 if (!dev)
911 return NULL;
912 } while (skip--);
913
914 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400915}
916
Tejun Heodef4e382008-09-03 08:57:12 +0200917static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200919 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400920
Tejun Heodef4e382008-09-03 08:57:12 +0200921 (*pos)++;
922 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200923 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400924 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return NULL;
927}
928
Tejun Heodef4e382008-09-03 08:57:12 +0200929static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400930{
Tejun Heodef4e382008-09-03 08:57:12 +0200931 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400932
Tejun Heodef4e382008-09-03 08:57:12 +0200933 /* stop is called even after start failed :-( */
934 if (iter) {
935 class_dev_iter_exit(iter);
936 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +0200937 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Tejun Heodef4e382008-09-03 08:57:12 +0200941static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Jianpeng Ma06768062012-08-03 10:42:00 +0200943 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +0200944
945 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +0100946 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +0200947 seq_puts(seqf, "major minor #blocks name\n\n");
948 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Tejun Heocf771cb2008-09-03 09:01:09 +0200951static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
953 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200954 struct disk_part_iter piter;
955 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 char buf[BDEVNAME_SIZE];
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +0200959 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +0200960 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return 0;
962 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
963 return 0;
964
965 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900966 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200967 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +0900968 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +0200969 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200970 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +0200971 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200972 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 return 0;
975}
976
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400977static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +0200978 .start = show_partition_start,
979 .next = disk_seqf_next,
980 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200981 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982};
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400983
984static int partitions_open(struct inode *inode, struct file *file)
985{
986 return seq_open(file, &partitions_op);
987}
988
989static const struct file_operations proc_partitions_operations = {
990 .open = partitions_open,
991 .read = seq_read,
992 .llseek = seq_lseek,
993 .release = seq_release,
994};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995#endif
996
997
Tejun Heocf771cb2008-09-03 09:01:09 +0200998static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001000 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001002 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return NULL;
1004}
1005
1006static int __init genhd_device_init(void)
1007{
Dan Williamse105b8b2008-04-21 10:51:07 -07001008 int error;
1009
1010 block_class.dev_kobj = sysfs_dev_block_kobj;
1011 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001012 if (unlikely(error))
1013 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001014 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001016
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001017 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1018
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001019 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001020 if (!sysfs_deprecated)
1021 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001022 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025subsys_initcall(genhd_device_init);
1026
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001027static ssize_t disk_range_show(struct device *dev,
1028 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001030 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001032 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Tejun Heo1f014292008-08-25 19:47:23 +09001035static ssize_t disk_ext_range_show(struct device *dev,
1036 struct device_attribute *attr, char *buf)
1037{
1038 struct gendisk *disk = dev_to_disk(dev);
1039
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001040 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001041}
1042
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001043static ssize_t disk_removable_show(struct device *dev,
1044 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001045{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001046 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001047
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001048 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001050}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001052static ssize_t disk_hidden_show(struct device *dev,
1053 struct device_attribute *attr, char *buf)
1054{
1055 struct gendisk *disk = dev_to_disk(dev);
1056
1057 return sprintf(buf, "%d\n",
1058 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1059}
1060
Kay Sievers1c9ce522008-06-13 09:41:00 +02001061static ssize_t disk_ro_show(struct device *dev,
1062 struct device_attribute *attr, char *buf)
1063{
1064 struct gendisk *disk = dev_to_disk(dev);
1065
Tejun Heob7db9952008-08-25 19:56:10 +09001066 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001067}
1068
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001069static ssize_t disk_capability_show(struct device *dev,
1070 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001071{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001072 struct gendisk *disk = dev_to_disk(dev);
1073
1074 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001075}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001076
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001077static ssize_t disk_alignment_offset_show(struct device *dev,
1078 struct device_attribute *attr,
1079 char *buf)
1080{
1081 struct gendisk *disk = dev_to_disk(dev);
1082
1083 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1084}
1085
Martin K. Petersen86b37282009-11-10 11:50:21 +01001086static ssize_t disk_discard_alignment_show(struct device *dev,
1087 struct device_attribute *attr,
1088 char *buf)
1089{
1090 struct gendisk *disk = dev_to_disk(dev);
1091
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001092 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001093}
1094
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001095static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
Tejun Heo1f014292008-08-25 19:47:23 +09001096static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001097static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001098static DEVICE_ATTR(hidden, S_IRUGO, disk_hidden_show, NULL);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001099static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
Tejun Heoe5610522008-08-25 19:56:09 +09001100static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001101static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
Martin K. Petersen86b37282009-11-10 11:50:21 +01001102static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
1103 NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001104static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001105static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001106static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
Vishal Verma99e66082016-01-09 08:36:51 -08001107static DEVICE_ATTR(badblocks, S_IRUGO | S_IWUSR, disk_badblocks_show,
1108 disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001109#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001110static struct device_attribute dev_attr_fail =
Tejun Heoeddb2e22008-08-25 19:56:13 +09001111 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001112#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001113#ifdef CONFIG_FAIL_IO_TIMEOUT
1114static struct device_attribute dev_attr_fail_timeout =
1115 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
1116 part_timeout_store);
1117#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001118
1119static struct attribute *disk_attrs[] = {
1120 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001121 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001122 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001123 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001124 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001125 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001126 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001127 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001128 &dev_attr_capability.attr,
1129 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001130 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001131 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001132#ifdef CONFIG_FAIL_MAKE_REQUEST
1133 &dev_attr_fail.attr,
1134#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001135#ifdef CONFIG_FAIL_IO_TIMEOUT
1136 &dev_attr_fail_timeout.attr,
1137#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001138 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139};
1140
Dan Williams9438b3e02017-04-27 14:46:26 -07001141static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1142{
1143 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1144 struct gendisk *disk = dev_to_disk(dev);
1145
1146 if (a == &dev_attr_badblocks.attr && !disk->bb)
1147 return 0;
1148 return a->mode;
1149}
1150
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001151static struct attribute_group disk_attr_group = {
1152 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001153 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001154};
1155
David Brownella4dbd672009-06-24 10:06:31 -07001156static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001157 &disk_attr_group,
1158 NULL
1159};
1160
Tejun Heo540eed52008-08-25 19:56:15 +09001161/**
1162 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1163 * @disk: disk to replace part_tbl for
1164 * @new_ptbl: new part_tbl to install
1165 *
1166 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1167 * original ptbl is freed using RCU callback.
1168 *
1169 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001170 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001171 */
1172static void disk_replace_part_tbl(struct gendisk *disk,
1173 struct disk_part_tbl *new_ptbl)
1174{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001175 struct disk_part_tbl *old_ptbl =
1176 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001177
1178 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001179
1180 if (old_ptbl) {
1181 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001182 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001183 }
Tejun Heo540eed52008-08-25 19:56:15 +09001184}
1185
1186/**
1187 * disk_expand_part_tbl - expand disk->part_tbl
1188 * @disk: disk to expand part_tbl for
1189 * @partno: expand such that this partno can fit in
1190 *
1191 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1192 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1193 *
1194 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001195 * Matching bd_mutex locked or the caller is the only user of @disk.
1196 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001197 *
1198 * RETURNS:
1199 * 0 on success, -errno on failure.
1200 */
1201int disk_expand_part_tbl(struct gendisk *disk, int partno)
1202{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001203 struct disk_part_tbl *old_ptbl =
1204 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001205 struct disk_part_tbl *new_ptbl;
1206 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001207 int i, target;
Tejun Heo540eed52008-08-25 19:56:15 +09001208 size_t size;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001209
1210 /*
1211 * check for int overflow, since we can get here from blkpg_ioctl()
1212 * with a user passed 'partno'.
1213 */
1214 target = partno + 1;
1215 if (target < 0)
1216 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001217
1218 /* disk_max_parts() is zero during initialization, ignore if so */
1219 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1220 return -EINVAL;
1221
1222 if (target <= len)
1223 return 0;
1224
1225 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1226 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1227 if (!new_ptbl)
1228 return -ENOMEM;
1229
Tejun Heo540eed52008-08-25 19:56:15 +09001230 new_ptbl->len = target;
1231
1232 for (i = 0; i < len; i++)
1233 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1234
1235 disk_replace_part_tbl(disk, new_ptbl);
1236 return 0;
1237}
1238
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001239static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001241 struct gendisk *disk = dev_to_disk(dev);
1242
Keith Busch2da78092014-08-26 09:05:36 -06001243 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001244 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001246 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001247 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001248 if (disk->queue)
1249 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 kfree(disk);
1251}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001252struct class block_class = {
1253 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254};
1255
Kay Sievers3c2670e2013-04-06 09:56:00 -07001256static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001257 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001258{
1259 struct gendisk *disk = dev_to_disk(dev);
1260
Kay Sieverse454cea2009-09-18 23:01:12 +02001261 if (disk->devnode)
1262 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001263 return NULL;
1264}
1265
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001266static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001267 .name = "disk",
1268 .groups = disk_attr_groups,
1269 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001270 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271};
1272
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001273#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001274/*
1275 * aggregate disk stat collector. Uses the same stats that the sysfs
1276 * entries do, above, but makes them available through one seq_file.
1277 *
1278 * The output looks suspiciously like /proc/partitions with a bunch of
1279 * extra fields.
1280 */
1281static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001284 struct disk_part_iter piter;
1285 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 char buf[BDEVNAME_SIZE];
Jens Axboe0609e0e2017-08-08 17:49:47 -06001287 unsigned int inflight[2];
Tejun Heoc9959052008-08-25 19:47:21 +09001288 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001291 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001292 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 " rio rmerge rsect ruse wio wmerge "
1294 "wsect wuse running use aveq"
1295 "\n\n");
1296 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001297
Tejun Heo71982a42009-04-17 08:34:48 +02001298 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001299 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001300 cpu = part_stat_lock();
Jens Axboed62e26b2017-06-30 21:55:08 -06001301 part_round_stats(gp->queue, cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001302 part_stat_unlock();
Jens Axboe0609e0e2017-08-08 17:49:47 -06001303 part_in_flight(gp->queue, hd, inflight);
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001304 seq_printf(seqf, "%4d %7d %s %lu %lu %lu "
1305 "%u %lu %lu %lu %u %u %u %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001306 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1307 disk_name(gp, hd->partno, buf),
Liu Yuan53f22952011-03-02 11:00:15 -05001308 part_stat_read(hd, ios[READ]),
1309 part_stat_read(hd, merges[READ]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001310 part_stat_read(hd, sectors[READ]),
Liu Yuan53f22952011-03-02 11:00:15 -05001311 jiffies_to_msecs(part_stat_read(hd, ticks[READ])),
1312 part_stat_read(hd, ios[WRITE]),
1313 part_stat_read(hd, merges[WRITE]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001314 part_stat_read(hd, sectors[WRITE]),
Liu Yuan53f22952011-03-02 11:00:15 -05001315 jiffies_to_msecs(part_stat_read(hd, ticks[WRITE])),
Jens Axboe0609e0e2017-08-08 17:49:47 -06001316 inflight[0],
Jerome Marchand28f39d52008-02-08 11:04:56 +01001317 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1318 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1319 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001321 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324}
1325
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001326static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001327 .start = disk_seqf_start,
1328 .next = disk_seqf_next,
1329 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 .show = diskstats_show
1331};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001332
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001333static int diskstats_open(struct inode *inode, struct file *file)
1334{
1335 return seq_open(file, &diskstats_op);
1336}
1337
1338static const struct file_operations proc_diskstats_operations = {
1339 .open = diskstats_open,
1340 .read = seq_read,
1341 .llseek = seq_lseek,
1342 .release = seq_release,
1343};
1344
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001345static int __init proc_genhd_init(void)
1346{
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001347 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001348 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1349 return 0;
1350}
1351module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001352#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Tejun Heocf771cb2008-09-03 09:01:09 +02001354dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001355{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001356 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001357 struct class_dev_iter iter;
1358 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001359
Tejun Heodef4e382008-09-03 08:57:12 +02001360 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1361 while ((dev = class_dev_iter_next(&iter))) {
1362 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001363 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001364
Kay Sievers3ada8b72009-01-06 10:44:43 -08001365 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001366 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001367
Neil Brown41b8c852009-02-18 10:33:59 +01001368 if (partno < disk->minors) {
1369 /* We need to return the right devno, even
1370 * if the partition doesn't exist yet.
1371 */
1372 devt = MKDEV(MAJOR(dev->devt),
1373 MINOR(dev->devt) + partno);
1374 break;
1375 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001376 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001377 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001378 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001379 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001380 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001381 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001382 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001383 }
Tejun Heodef4e382008-09-03 08:57:12 +02001384 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001385 return devt;
1386}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001387EXPORT_SYMBOL(blk_lookup_devt);
1388
Byungchul Parke319e1f2017-10-25 17:56:05 +09001389struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001390{
1391 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001392 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001393
Christoph Hellwigde65b012017-08-23 19:10:29 +02001394 if (minors > DISK_MAX_PARTS) {
1395 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001396 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001397 DISK_MAX_PARTS);
1398 minors = DISK_MAX_PARTS;
1399 }
Christoph Lameter19460892005-06-23 00:08:19 -07001400
Joe Perchesc1b511e2013-08-29 15:21:42 -07001401 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001403 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 kfree(disk);
1405 return NULL;
1406 }
Cheng Renquanbf91db12008-11-20 08:37:37 +01001407 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001408 if (disk_expand_part_tbl(disk, 0)) {
1409 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001410 kfree(disk);
1411 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001413 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1414 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001415
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001416 /*
1417 * set_capacity() and get_capacity() currently don't use
1418 * seqcounter to read/update the part0->nr_sects. Still init
1419 * the counter as we can read the sectors in IO submission
1420 * patch using seqence counters.
1421 *
1422 * TODO: Ideally set_capacity() and get_capacity() should be
1423 * converted to make use of bd_mutex and sequence counters.
1424 */
1425 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001426 if (hd_ref_init(&disk->part0)) {
1427 hd_free_part(&disk->part0);
1428 kfree(disk);
1429 return NULL;
1430 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001434 disk_to_dev(disk)->class = &block_class;
1435 disk_to_dev(disk)->type = &disk_type;
1436 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438 return disk;
1439}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001440EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442struct kobject *get_disk(struct gendisk *disk)
1443{
1444 struct module *owner;
1445 struct kobject *kobj;
1446
1447 if (!disk->fops)
1448 return NULL;
1449 owner = disk->fops->owner;
1450 if (owner && !try_module_get(owner))
1451 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001452 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (kobj == NULL) {
1454 module_put(owner);
1455 return NULL;
1456 }
1457 return kobj;
1458
1459}
1460
1461EXPORT_SYMBOL(get_disk);
1462
1463void put_disk(struct gendisk *disk)
1464{
1465 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001466 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469EXPORT_SYMBOL(put_disk);
1470
Hannes Reineckee3264a42009-07-28 09:13:13 +02001471static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1472{
1473 char event[] = "DISK_RO=1";
1474 char *envp[] = { event, NULL };
1475
1476 if (!ro)
1477 event[8] = '0';
1478 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1479}
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481void set_device_ro(struct block_device *bdev, int flag)
1482{
Tejun Heob7db9952008-08-25 19:56:10 +09001483 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486EXPORT_SYMBOL(set_device_ro);
1487
1488void set_disk_ro(struct gendisk *disk, int flag)
1489{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001490 struct disk_part_iter piter;
1491 struct hd_struct *part;
1492
Hannes Reineckee3264a42009-07-28 09:13:13 +02001493 if (disk->part0.policy != flag) {
1494 set_disk_ro_uevent(disk, flag);
1495 disk->part0.policy = flag;
1496 }
1497
1498 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001499 while ((part = disk_part_iter_next(&piter)))
1500 part->policy = flag;
1501 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504EXPORT_SYMBOL(set_disk_ro);
1505
1506int bdev_read_only(struct block_device *bdev)
1507{
1508 if (!bdev)
1509 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001510 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
1513EXPORT_SYMBOL(bdev_read_only);
1514
Tejun Heocf771cb2008-09-03 09:01:09 +02001515int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
1517 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001518 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001520 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001521 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 bdput(bdev);
1523 }
1524 return res;
1525}
1526
1527EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001528
1529/*
1530 * Disk events - monitor disk events like media change and eject request.
1531 */
1532struct disk_events {
1533 struct list_head node; /* all disk_event's */
1534 struct gendisk *disk; /* the associated disk */
1535 spinlock_t lock;
1536
Tejun Heofdd514e2011-06-09 20:43:59 +02001537 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001538 int block; /* event blocking depth */
1539 unsigned int pending; /* events already sent out */
1540 unsigned int clearing; /* events being cleared */
1541
1542 long poll_msecs; /* interval, -1 for default */
1543 struct delayed_work dwork;
1544};
1545
1546static const char *disk_events_strs[] = {
1547 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1548 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1549};
1550
1551static char *disk_uevents[] = {
1552 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1553 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1554};
1555
1556/* list of all disk_events */
1557static DEFINE_MUTEX(disk_events_mutex);
1558static LIST_HEAD(disk_events);
1559
1560/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001561static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001562
1563static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1564{
1565 struct disk_events *ev = disk->ev;
1566 long intv_msecs = 0;
1567
1568 /*
1569 * If device-specific poll interval is set, always use it. If
1570 * the default is being used, poll iff there are events which
1571 * can't be monitored asynchronously.
1572 */
1573 if (ev->poll_msecs >= 0)
1574 intv_msecs = ev->poll_msecs;
1575 else if (disk->events & ~disk->async_events)
1576 intv_msecs = disk_events_dfl_poll_msecs;
1577
1578 return msecs_to_jiffies(intv_msecs);
1579}
1580
Tejun Heoc3af54a2011-06-09 20:43:55 +02001581/**
1582 * disk_block_events - block and flush disk event checking
1583 * @disk: disk to block events for
1584 *
1585 * On return from this function, it is guaranteed that event checking
1586 * isn't in progress and won't happen until unblocked by
1587 * disk_unblock_events(). Events blocking is counted and the actual
1588 * unblocking happens after the matching number of unblocks are done.
1589 *
1590 * Note that this intentionally does not block event checking from
1591 * disk_clear_events().
1592 *
1593 * CONTEXT:
1594 * Might sleep.
1595 */
1596void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001597{
1598 struct disk_events *ev = disk->ev;
1599 unsigned long flags;
1600 bool cancel;
1601
Tejun Heoc3af54a2011-06-09 20:43:55 +02001602 if (!ev)
1603 return;
1604
Tejun Heofdd514e2011-06-09 20:43:59 +02001605 /*
1606 * Outer mutex ensures that the first blocker completes canceling
1607 * the event work before further blockers are allowed to finish.
1608 */
1609 mutex_lock(&ev->block_mutex);
1610
Tejun Heo77ea8872010-12-08 20:57:37 +01001611 spin_lock_irqsave(&ev->lock, flags);
1612 cancel = !ev->block++;
1613 spin_unlock_irqrestore(&ev->lock, flags);
1614
Tejun Heoc3af54a2011-06-09 20:43:55 +02001615 if (cancel)
1616 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001617
1618 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001619}
1620
1621static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1622{
1623 struct disk_events *ev = disk->ev;
1624 unsigned long intv;
1625 unsigned long flags;
1626
1627 spin_lock_irqsave(&ev->lock, flags);
1628
1629 if (WARN_ON_ONCE(ev->block <= 0))
1630 goto out_unlock;
1631
1632 if (--ev->block)
1633 goto out_unlock;
1634
Tejun Heo77ea8872010-12-08 20:57:37 +01001635 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001636 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301637 queue_delayed_work(system_freezable_power_efficient_wq,
1638 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001639 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301640 queue_delayed_work(system_freezable_power_efficient_wq,
1641 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001642out_unlock:
1643 spin_unlock_irqrestore(&ev->lock, flags);
1644}
1645
1646/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001647 * disk_unblock_events - unblock disk event checking
1648 * @disk: disk to unblock events for
1649 *
1650 * Undo disk_block_events(). When the block count reaches zero, it
1651 * starts events polling if configured.
1652 *
1653 * CONTEXT:
1654 * Don't care. Safe to call from irq context.
1655 */
1656void disk_unblock_events(struct gendisk *disk)
1657{
1658 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001659 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001660}
1661
1662/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001663 * disk_flush_events - schedule immediate event checking and flushing
1664 * @disk: disk to check and flush events for
1665 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001666 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001667 * Schedule immediate event checking on @disk if not blocked. Events in
1668 * @mask are scheduled to be cleared from the driver. Note that this
1669 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001670 *
1671 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001672 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001673 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001674void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001675{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001676 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001677
1678 if (!ev)
1679 return;
1680
Tejun Heo85ef06d2011-07-01 16:17:47 +02001681 spin_lock_irq(&ev->lock);
1682 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001683 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301684 mod_delayed_work(system_freezable_power_efficient_wq,
1685 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001686 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001687}
Tejun Heo77ea8872010-12-08 20:57:37 +01001688
1689/**
1690 * disk_clear_events - synchronously check, clear and return pending events
1691 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001692 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001693 *
1694 * Disk events are synchronously checked and pending events in @mask
1695 * are cleared and returned. This ignores the block count.
1696 *
1697 * CONTEXT:
1698 * Might sleep.
1699 */
1700unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1701{
1702 const struct block_device_operations *bdops = disk->fops;
1703 struct disk_events *ev = disk->ev;
1704 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001705 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001706
1707 if (!ev) {
1708 /* for drivers still using the old ->media_changed method */
1709 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1710 bdops->media_changed && bdops->media_changed(disk))
1711 return DISK_EVENT_MEDIA_CHANGE;
1712 return 0;
1713 }
1714
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001715 disk_block_events(disk);
1716
1717 /*
1718 * store the union of mask and ev->clearing on the stack so that the
1719 * race with disk_flush_events does not cause ambiguity (ev->clearing
1720 * can still be modified even if events are blocked).
1721 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001722 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001723 clearing |= ev->clearing;
1724 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001725 spin_unlock_irq(&ev->lock);
1726
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001727 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001728 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001729 * if ev->clearing is not 0, the disk_flush_events got called in the
1730 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001731 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001732 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001733
1734 /* then, fetch and clear pending events */
1735 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001736 pending = ev->pending & mask;
1737 ev->pending &= ~mask;
1738 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001739 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001740
1741 return pending;
1742}
1743
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001744/*
1745 * Separate this part out so that a different pointer for clearing_ptr can be
1746 * passed in for disk_clear_events.
1747 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001748static void disk_events_workfn(struct work_struct *work)
1749{
1750 struct delayed_work *dwork = to_delayed_work(work);
1751 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001752
1753 disk_check_events(ev, &ev->clearing);
1754}
1755
1756static void disk_check_events(struct disk_events *ev,
1757 unsigned int *clearing_ptr)
1758{
Tejun Heo77ea8872010-12-08 20:57:37 +01001759 struct gendisk *disk = ev->disk;
1760 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001761 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001762 unsigned int events;
1763 unsigned long intv;
1764 int nr_events = 0, i;
1765
1766 /* check events */
1767 events = disk->fops->check_events(disk, clearing);
1768
1769 /* accumulate pending events and schedule next poll if necessary */
1770 spin_lock_irq(&ev->lock);
1771
1772 events &= ~ev->pending;
1773 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001774 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001775
1776 intv = disk_events_poll_jiffies(disk);
1777 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301778 queue_delayed_work(system_freezable_power_efficient_wq,
1779 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001780
1781 spin_unlock_irq(&ev->lock);
1782
Tejun Heo7c88a162011-04-21 19:43:58 +02001783 /*
1784 * Tell userland about new events. Only the events listed in
1785 * @disk->events are reported. Unlisted events are processed the
1786 * same internally but never get reported to userland.
1787 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001788 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Tejun Heo7c88a162011-04-21 19:43:58 +02001789 if (events & disk->events & (1 << i))
Tejun Heo77ea8872010-12-08 20:57:37 +01001790 envp[nr_events++] = disk_uevents[i];
1791
1792 if (nr_events)
1793 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1794}
1795
1796/*
1797 * A disk events enabled device has the following sysfs nodes under
1798 * its /sys/block/X/ directory.
1799 *
1800 * events : list of all supported events
1801 * events_async : list of events which can be detected w/o polling
1802 * events_poll_msecs : polling interval, 0: disable, -1: system default
1803 */
1804static ssize_t __disk_events_show(unsigned int events, char *buf)
1805{
1806 const char *delim = "";
1807 ssize_t pos = 0;
1808 int i;
1809
1810 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1811 if (events & (1 << i)) {
1812 pos += sprintf(buf + pos, "%s%s",
1813 delim, disk_events_strs[i]);
1814 delim = " ";
1815 }
1816 if (pos)
1817 pos += sprintf(buf + pos, "\n");
1818 return pos;
1819}
1820
1821static ssize_t disk_events_show(struct device *dev,
1822 struct device_attribute *attr, char *buf)
1823{
1824 struct gendisk *disk = dev_to_disk(dev);
1825
1826 return __disk_events_show(disk->events, buf);
1827}
1828
1829static ssize_t disk_events_async_show(struct device *dev,
1830 struct device_attribute *attr, char *buf)
1831{
1832 struct gendisk *disk = dev_to_disk(dev);
1833
1834 return __disk_events_show(disk->async_events, buf);
1835}
1836
1837static ssize_t disk_events_poll_msecs_show(struct device *dev,
1838 struct device_attribute *attr,
1839 char *buf)
1840{
1841 struct gendisk *disk = dev_to_disk(dev);
1842
1843 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1844}
1845
1846static ssize_t disk_events_poll_msecs_store(struct device *dev,
1847 struct device_attribute *attr,
1848 const char *buf, size_t count)
1849{
1850 struct gendisk *disk = dev_to_disk(dev);
1851 long intv;
1852
1853 if (!count || !sscanf(buf, "%ld", &intv))
1854 return -EINVAL;
1855
1856 if (intv < 0 && intv != -1)
1857 return -EINVAL;
1858
Tejun Heoc3af54a2011-06-09 20:43:55 +02001859 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001860 disk->ev->poll_msecs = intv;
1861 __disk_unblock_events(disk, true);
1862
1863 return count;
1864}
1865
1866static const DEVICE_ATTR(events, S_IRUGO, disk_events_show, NULL);
1867static const DEVICE_ATTR(events_async, S_IRUGO, disk_events_async_show, NULL);
1868static const DEVICE_ATTR(events_poll_msecs, S_IRUGO|S_IWUSR,
1869 disk_events_poll_msecs_show,
1870 disk_events_poll_msecs_store);
1871
1872static const struct attribute *disk_events_attrs[] = {
1873 &dev_attr_events.attr,
1874 &dev_attr_events_async.attr,
1875 &dev_attr_events_poll_msecs.attr,
1876 NULL,
1877};
1878
1879/*
1880 * The default polling interval can be specified by the kernel
1881 * parameter block.events_dfl_poll_msecs which defaults to 0
1882 * (disable). This can also be modified runtime by writing to
1883 * /sys/module/block/events_dfl_poll_msecs.
1884 */
1885static int disk_events_set_dfl_poll_msecs(const char *val,
1886 const struct kernel_param *kp)
1887{
1888 struct disk_events *ev;
1889 int ret;
1890
1891 ret = param_set_ulong(val, kp);
1892 if (ret < 0)
1893 return ret;
1894
1895 mutex_lock(&disk_events_mutex);
1896
1897 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02001898 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001899
1900 mutex_unlock(&disk_events_mutex);
1901
1902 return 0;
1903}
1904
1905static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1906 .set = disk_events_set_dfl_poll_msecs,
1907 .get = param_get_ulong,
1908};
1909
1910#undef MODULE_PARAM_PREFIX
1911#define MODULE_PARAM_PREFIX "block."
1912
1913module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1914 &disk_events_dfl_poll_msecs, 0644);
1915
1916/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001917 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01001918 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001919static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001920{
1921 struct disk_events *ev;
1922
Tejun Heo75e3f3e2011-05-26 21:06:50 +02001923 if (!disk->fops->check_events)
Tejun Heo77ea8872010-12-08 20:57:37 +01001924 return;
1925
1926 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1927 if (!ev) {
1928 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1929 return;
1930 }
1931
Tejun Heo77ea8872010-12-08 20:57:37 +01001932 INIT_LIST_HEAD(&ev->node);
1933 ev->disk = disk;
1934 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02001935 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001936 ev->block = 1;
1937 ev->poll_msecs = -1;
1938 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1939
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001940 disk->ev = ev;
1941}
1942
1943static void disk_add_events(struct gendisk *disk)
1944{
1945 if (!disk->ev)
1946 return;
1947
1948 /* FIXME: error handling */
1949 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
1950 pr_warn("%s: failed to create sysfs files for events\n",
1951 disk->disk_name);
1952
Tejun Heo77ea8872010-12-08 20:57:37 +01001953 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001954 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01001955 mutex_unlock(&disk_events_mutex);
1956
1957 /*
1958 * Block count is initialized to 1 and the following initial
1959 * unblock kicks it into action.
1960 */
1961 __disk_unblock_events(disk, true);
1962}
1963
1964static void disk_del_events(struct gendisk *disk)
1965{
1966 if (!disk->ev)
1967 return;
1968
Tejun Heoc3af54a2011-06-09 20:43:55 +02001969 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001970
1971 mutex_lock(&disk_events_mutex);
1972 list_del_init(&disk->ev->node);
1973 mutex_unlock(&disk_events_mutex);
1974
1975 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
1976}
1977
1978static void disk_release_events(struct gendisk *disk)
1979{
1980 /* the block count should be 1 from disk_del_events() */
1981 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
1982 kfree(disk->ev);
1983}