blob: c2223f12a8051411d4e89a0bc2850e03d7d0427e [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 {
674 /* Register BDI before referencing it from bdev */
675 disk_to_dev(disk)->devt = devt;
676 bdi_register_owner(disk->queue->backing_dev_info,
677 disk_to_dev(disk));
678 blk_register_region(disk_devt(disk), disk->minors, NULL,
679 exact_match, exact_lock, disk);
680 }
Dan Williamse63a46b2016-06-15 18:17:27 -0700681 register_disk(parent, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700683
Tejun Heo523e1d32011-10-19 14:31:07 +0200684 /*
685 * Take an extra ref on queue which will be put on disk_release()
686 * so that it sticks around as long as @disk is there.
687 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100688 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200689
Tejun Heo77ea8872010-12-08 20:57:37 +0100690 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400691 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
Dan Williamse63a46b2016-06-15 18:17:27 -0700693EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Tejun Heod2bf1b62010-12-08 20:57:36 +0100695void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100697 struct disk_part_iter piter;
698 struct hd_struct *part;
699
Martin K. Petersen25520d52015-10-21 13:19:49 -0400700 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100701 disk_del_events(disk);
702
Tejun Heod2bf1b62010-12-08 20:57:36 +0100703 /* invalidate stuff */
704 disk_part_iter_init(&piter, disk,
705 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
706 while ((part = disk_part_iter_next(&piter))) {
707 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100708 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100709 delete_partition(disk, part->partno);
710 }
711 disk_part_iter_exit(&piter);
712
713 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100714 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100715 set_capacity(disk, 0);
716 disk->flags &= ~GENHD_FL_UP;
717
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300718 if (!(disk->flags & GENHD_FL_HIDDEN))
719 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100720 if (disk->queue) {
721 /*
722 * Unregister bdi before releasing device numbers (as they can
723 * get reused and we'd get clashes in sysfs).
724 */
725 bdi_unregister(disk->queue->backing_dev_info);
726 blk_unregister_queue(disk);
727 } else {
728 WARN_ON(1);
729 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100730
Hannes Reinecke17eac092017-11-09 17:57:06 +0100731 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300732 blk_unregister_region(disk_devt(disk), disk->minors);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100733
734 kobject_put(disk->part0.holder_dir);
735 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900738 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100739 if (!sysfs_deprecated)
740 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800741 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100742 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100744EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Vishal Verma99e66082016-01-09 08:36:51 -0800746/* sysfs access to bad-blocks list. */
747static ssize_t disk_badblocks_show(struct device *dev,
748 struct device_attribute *attr,
749 char *page)
750{
751 struct gendisk *disk = dev_to_disk(dev);
752
753 if (!disk->bb)
754 return sprintf(page, "\n");
755
756 return badblocks_show(disk->bb, page, 0);
757}
758
759static ssize_t disk_badblocks_store(struct device *dev,
760 struct device_attribute *attr,
761 const char *page, size_t len)
762{
763 struct gendisk *disk = dev_to_disk(dev);
764
765 if (!disk->bb)
766 return -ENXIO;
767
768 return badblocks_store(disk->bb, page, len, 0);
769}
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/**
772 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200773 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200774 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 *
776 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200777 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200779struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Tejun Heobcce3de2008-08-25 19:47:22 +0900781 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200782
Tejun Heobcce3de2008-08-25 19:47:22 +0900783 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
784 struct kobject *kobj;
785
786 kobj = kobj_lookup(bdev_map, devt, partno);
787 if (kobj)
788 disk = dev_to_disk(kobj_to_dev(kobj));
789 } else {
790 struct hd_struct *part;
791
Dan Williams4d66e5e2015-06-10 23:47:14 -0400792 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900793 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900794 if (part && get_disk(part_to_disk(part))) {
795 *partno = part->partno;
796 disk = part_to_disk(part);
797 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400798 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900799 }
800
Colin Ian Kingf0fba392017-11-06 17:53:53 +0000801 if (disk && unlikely(disk->flags & GENHD_FL_HIDDEN)) {
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300802 put_disk(disk);
803 disk = NULL;
804 }
Tejun Heobcce3de2008-08-25 19:47:22 +0900805 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200807EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Tejun Heof331c022008-09-03 09:01:48 +0200809/**
810 * bdget_disk - do bdget() by gendisk and partition number
811 * @disk: gendisk of interest
812 * @partno: partition number
813 *
814 * Find partition @partno from @disk, do bdget() on it.
815 *
816 * CONTEXT:
817 * Don't care.
818 *
819 * RETURNS:
820 * Resulting block_device on success, NULL on failure.
821 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200822struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200823{
Tejun Heo548b10e2008-08-29 09:01:47 +0200824 struct hd_struct *part;
825 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200826
Tejun Heo548b10e2008-08-29 09:01:47 +0200827 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200828 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200829 bdev = bdget(part_devt(part));
830 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200831
Tejun Heo548b10e2008-08-29 09:01:47 +0200832 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200833}
834EXPORT_SYMBOL(bdget_disk);
835
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700836/*
837 * print a full list of all partitions - intended for places where the root
838 * filesystem can't be mounted and thus to give the victim some idea of what
839 * went wrong
840 */
841void __init printk_all_partitions(void)
842{
Tejun Heodef4e382008-09-03 08:57:12 +0200843 struct class_dev_iter iter;
844 struct device *dev;
845
846 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
847 while ((dev = class_dev_iter_next(&iter))) {
848 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200849 struct disk_part_iter piter;
850 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900851 char name_buf[BDEVNAME_SIZE];
852 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200853
854 /*
855 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300856 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200857 */
858 if (get_capacity(disk) == 0 ||
859 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
860 continue;
861
862 /*
863 * Note, unlike /proc/partitions, I am showing the
864 * numbers in hex - the same format as the root=
865 * option takes.
866 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900867 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
868 while ((part = disk_part_iter_next(&piter))) {
869 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200870
Will Drewryb5af9212010-08-31 15:47:07 -0500871 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900872 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200873 (unsigned long long)part_nr_sects_read(part) >> 1
874 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800875 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900876 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700877 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900878 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700879 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900880 else
881 printk(" (driver?)\n");
882 } else
883 printk("\n");
884 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200885 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200886 }
887 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#ifdef CONFIG_PROC_FS
891/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200892static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400893{
Tejun Heodef4e382008-09-03 08:57:12 +0200894 loff_t skip = *pos;
895 struct class_dev_iter *iter;
896 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400897
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200898 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200899 if (!iter)
900 return ERR_PTR(-ENOMEM);
901
902 seqf->private = iter;
903 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
904 do {
905 dev = class_dev_iter_next(iter);
906 if (!dev)
907 return NULL;
908 } while (skip--);
909
910 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400911}
912
Tejun Heodef4e382008-09-03 08:57:12 +0200913static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200915 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400916
Tejun Heodef4e382008-09-03 08:57:12 +0200917 (*pos)++;
918 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200919 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400920 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return NULL;
923}
924
Tejun Heodef4e382008-09-03 08:57:12 +0200925static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400926{
Tejun Heodef4e382008-09-03 08:57:12 +0200927 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400928
Tejun Heodef4e382008-09-03 08:57:12 +0200929 /* stop is called even after start failed :-( */
930 if (iter) {
931 class_dev_iter_exit(iter);
932 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +0200933 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Tejun Heodef4e382008-09-03 08:57:12 +0200937static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Jianpeng Ma06768062012-08-03 10:42:00 +0200939 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +0200940
941 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +0100942 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +0200943 seq_puts(seqf, "major minor #blocks name\n\n");
944 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Tejun Heocf771cb2008-09-03 09:01:09 +0200947static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200950 struct disk_part_iter piter;
951 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 char buf[BDEVNAME_SIZE];
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +0200955 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +0200956 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return 0;
958 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
959 return 0;
960
961 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900962 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200963 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +0900964 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +0200965 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200966 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +0200967 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200968 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 return 0;
971}
972
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400973static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +0200974 .start = show_partition_start,
975 .next = disk_seqf_next,
976 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200977 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978};
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400979
980static int partitions_open(struct inode *inode, struct file *file)
981{
982 return seq_open(file, &partitions_op);
983}
984
985static const struct file_operations proc_partitions_operations = {
986 .open = partitions_open,
987 .read = seq_read,
988 .llseek = seq_lseek,
989 .release = seq_release,
990};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991#endif
992
993
Tejun Heocf771cb2008-09-03 09:01:09 +0200994static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200996 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200998 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return NULL;
1000}
1001
1002static int __init genhd_device_init(void)
1003{
Dan Williamse105b8b2008-04-21 10:51:07 -07001004 int error;
1005
1006 block_class.dev_kobj = sysfs_dev_block_kobj;
1007 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001008 if (unlikely(error))
1009 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001010 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001012
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001013 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1014
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001015 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001016 if (!sysfs_deprecated)
1017 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001018 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021subsys_initcall(genhd_device_init);
1022
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001023static ssize_t disk_range_show(struct device *dev,
1024 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001026 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001028 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Tejun Heo1f014292008-08-25 19:47:23 +09001031static ssize_t disk_ext_range_show(struct device *dev,
1032 struct device_attribute *attr, char *buf)
1033{
1034 struct gendisk *disk = dev_to_disk(dev);
1035
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001036 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001037}
1038
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001039static ssize_t disk_removable_show(struct device *dev,
1040 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001041{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001042 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001043
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001044 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001046}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001048static ssize_t disk_hidden_show(struct device *dev,
1049 struct device_attribute *attr, char *buf)
1050{
1051 struct gendisk *disk = dev_to_disk(dev);
1052
1053 return sprintf(buf, "%d\n",
1054 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1055}
1056
Kay Sievers1c9ce522008-06-13 09:41:00 +02001057static ssize_t disk_ro_show(struct device *dev,
1058 struct device_attribute *attr, char *buf)
1059{
1060 struct gendisk *disk = dev_to_disk(dev);
1061
Tejun Heob7db9952008-08-25 19:56:10 +09001062 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001063}
1064
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001065static ssize_t disk_capability_show(struct device *dev,
1066 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001067{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001068 struct gendisk *disk = dev_to_disk(dev);
1069
1070 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001071}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001072
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001073static ssize_t disk_alignment_offset_show(struct device *dev,
1074 struct device_attribute *attr,
1075 char *buf)
1076{
1077 struct gendisk *disk = dev_to_disk(dev);
1078
1079 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1080}
1081
Martin K. Petersen86b37282009-11-10 11:50:21 +01001082static ssize_t disk_discard_alignment_show(struct device *dev,
1083 struct device_attribute *attr,
1084 char *buf)
1085{
1086 struct gendisk *disk = dev_to_disk(dev);
1087
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001088 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001089}
1090
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001091static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
Tejun Heo1f014292008-08-25 19:47:23 +09001092static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001093static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001094static DEVICE_ATTR(hidden, S_IRUGO, disk_hidden_show, NULL);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001095static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
Tejun Heoe5610522008-08-25 19:56:09 +09001096static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001097static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
Martin K. Petersen86b37282009-11-10 11:50:21 +01001098static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
1099 NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001100static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001101static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001102static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
Vishal Verma99e66082016-01-09 08:36:51 -08001103static DEVICE_ATTR(badblocks, S_IRUGO | S_IWUSR, disk_badblocks_show,
1104 disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001105#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001106static struct device_attribute dev_attr_fail =
Tejun Heoeddb2e22008-08-25 19:56:13 +09001107 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001108#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001109#ifdef CONFIG_FAIL_IO_TIMEOUT
1110static struct device_attribute dev_attr_fail_timeout =
1111 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
1112 part_timeout_store);
1113#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001114
1115static struct attribute *disk_attrs[] = {
1116 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001117 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001118 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001119 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001120 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001121 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001122 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001123 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001124 &dev_attr_capability.attr,
1125 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001126 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001127 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001128#ifdef CONFIG_FAIL_MAKE_REQUEST
1129 &dev_attr_fail.attr,
1130#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001131#ifdef CONFIG_FAIL_IO_TIMEOUT
1132 &dev_attr_fail_timeout.attr,
1133#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001134 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135};
1136
Dan Williams9438b3e2017-04-27 14:46:26 -07001137static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1138{
1139 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1140 struct gendisk *disk = dev_to_disk(dev);
1141
1142 if (a == &dev_attr_badblocks.attr && !disk->bb)
1143 return 0;
1144 return a->mode;
1145}
1146
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001147static struct attribute_group disk_attr_group = {
1148 .attrs = disk_attrs,
Dan Williams9438b3e2017-04-27 14:46:26 -07001149 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001150};
1151
David Brownella4dbd672009-06-24 10:06:31 -07001152static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001153 &disk_attr_group,
1154 NULL
1155};
1156
Tejun Heo540eed52008-08-25 19:56:15 +09001157/**
1158 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1159 * @disk: disk to replace part_tbl for
1160 * @new_ptbl: new part_tbl to install
1161 *
1162 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1163 * original ptbl is freed using RCU callback.
1164 *
1165 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001166 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001167 */
1168static void disk_replace_part_tbl(struct gendisk *disk,
1169 struct disk_part_tbl *new_ptbl)
1170{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001171 struct disk_part_tbl *old_ptbl =
1172 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001173
1174 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001175
1176 if (old_ptbl) {
1177 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001178 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001179 }
Tejun Heo540eed52008-08-25 19:56:15 +09001180}
1181
1182/**
1183 * disk_expand_part_tbl - expand disk->part_tbl
1184 * @disk: disk to expand part_tbl for
1185 * @partno: expand such that this partno can fit in
1186 *
1187 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1188 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1189 *
1190 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001191 * Matching bd_mutex locked or the caller is the only user of @disk.
1192 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001193 *
1194 * RETURNS:
1195 * 0 on success, -errno on failure.
1196 */
1197int disk_expand_part_tbl(struct gendisk *disk, int partno)
1198{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001199 struct disk_part_tbl *old_ptbl =
1200 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001201 struct disk_part_tbl *new_ptbl;
1202 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001203 int i, target;
Tejun Heo540eed52008-08-25 19:56:15 +09001204 size_t size;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001205
1206 /*
1207 * check for int overflow, since we can get here from blkpg_ioctl()
1208 * with a user passed 'partno'.
1209 */
1210 target = partno + 1;
1211 if (target < 0)
1212 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001213
1214 /* disk_max_parts() is zero during initialization, ignore if so */
1215 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1216 return -EINVAL;
1217
1218 if (target <= len)
1219 return 0;
1220
1221 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1222 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1223 if (!new_ptbl)
1224 return -ENOMEM;
1225
Tejun Heo540eed52008-08-25 19:56:15 +09001226 new_ptbl->len = target;
1227
1228 for (i = 0; i < len; i++)
1229 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1230
1231 disk_replace_part_tbl(disk, new_ptbl);
1232 return 0;
1233}
1234
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001235static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001237 struct gendisk *disk = dev_to_disk(dev);
1238
Keith Busch2da78092014-08-26 09:05:36 -06001239 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001240 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001242 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001243 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001244 if (disk->queue)
1245 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 kfree(disk);
1247}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001248struct class block_class = {
1249 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250};
1251
Kay Sievers3c2670e2013-04-06 09:56:00 -07001252static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001253 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001254{
1255 struct gendisk *disk = dev_to_disk(dev);
1256
Kay Sieverse454cea2009-09-18 23:01:12 +02001257 if (disk->devnode)
1258 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001259 return NULL;
1260}
1261
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001262static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001263 .name = "disk",
1264 .groups = disk_attr_groups,
1265 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001266 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267};
1268
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001269#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001270/*
1271 * aggregate disk stat collector. Uses the same stats that the sysfs
1272 * entries do, above, but makes them available through one seq_file.
1273 *
1274 * The output looks suspiciously like /proc/partitions with a bunch of
1275 * extra fields.
1276 */
1277static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001280 struct disk_part_iter piter;
1281 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 char buf[BDEVNAME_SIZE];
Jens Axboe0609e0e2017-08-08 17:49:47 -06001283 unsigned int inflight[2];
Tejun Heoc9959052008-08-25 19:47:21 +09001284 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001287 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001288 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 " rio rmerge rsect ruse wio wmerge "
1290 "wsect wuse running use aveq"
1291 "\n\n");
1292 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001293
Tejun Heo71982a42009-04-17 08:34:48 +02001294 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001295 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001296 cpu = part_stat_lock();
Jens Axboed62e26b2017-06-30 21:55:08 -06001297 part_round_stats(gp->queue, cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001298 part_stat_unlock();
Jens Axboe0609e0e2017-08-08 17:49:47 -06001299 part_in_flight(gp->queue, hd, inflight);
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001300 seq_printf(seqf, "%4d %7d %s %lu %lu %lu "
1301 "%u %lu %lu %lu %u %u %u %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001302 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1303 disk_name(gp, hd->partno, buf),
Liu Yuan53f22952011-03-02 11:00:15 -05001304 part_stat_read(hd, ios[READ]),
1305 part_stat_read(hd, merges[READ]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001306 part_stat_read(hd, sectors[READ]),
Liu Yuan53f22952011-03-02 11:00:15 -05001307 jiffies_to_msecs(part_stat_read(hd, ticks[READ])),
1308 part_stat_read(hd, ios[WRITE]),
1309 part_stat_read(hd, merges[WRITE]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001310 part_stat_read(hd, sectors[WRITE]),
Liu Yuan53f22952011-03-02 11:00:15 -05001311 jiffies_to_msecs(part_stat_read(hd, ticks[WRITE])),
Jens Axboe0609e0e2017-08-08 17:49:47 -06001312 inflight[0],
Jerome Marchand28f39d52008-02-08 11:04:56 +01001313 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1314 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1315 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001317 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
1320}
1321
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001322static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001323 .start = disk_seqf_start,
1324 .next = disk_seqf_next,
1325 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .show = diskstats_show
1327};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001328
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001329static int diskstats_open(struct inode *inode, struct file *file)
1330{
1331 return seq_open(file, &diskstats_op);
1332}
1333
1334static const struct file_operations proc_diskstats_operations = {
1335 .open = diskstats_open,
1336 .read = seq_read,
1337 .llseek = seq_lseek,
1338 .release = seq_release,
1339};
1340
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001341static int __init proc_genhd_init(void)
1342{
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001343 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001344 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1345 return 0;
1346}
1347module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001348#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Tejun Heocf771cb2008-09-03 09:01:09 +02001350dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001351{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001352 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001353 struct class_dev_iter iter;
1354 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001355
Tejun Heodef4e382008-09-03 08:57:12 +02001356 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1357 while ((dev = class_dev_iter_next(&iter))) {
1358 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001359 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001360
Kay Sievers3ada8b72009-01-06 10:44:43 -08001361 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001362 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001363
Neil Brown41b8c852009-02-18 10:33:59 +01001364 if (partno < disk->minors) {
1365 /* We need to return the right devno, even
1366 * if the partition doesn't exist yet.
1367 */
1368 devt = MKDEV(MAJOR(dev->devt),
1369 MINOR(dev->devt) + partno);
1370 break;
1371 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001372 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001373 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001374 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001375 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001376 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001377 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001378 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001379 }
Tejun Heodef4e382008-09-03 08:57:12 +02001380 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001381 return devt;
1382}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001383EXPORT_SYMBOL(blk_lookup_devt);
1384
Byungchul Parke319e1f2017-10-25 17:56:05 +09001385struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001386{
1387 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001388 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001389
Christoph Hellwigde65b012017-08-23 19:10:29 +02001390 if (minors > DISK_MAX_PARTS) {
1391 printk(KERN_ERR
1392 "block: can't allocated more than %d partitions\n",
1393 DISK_MAX_PARTS);
1394 minors = DISK_MAX_PARTS;
1395 }
Christoph Lameter19460892005-06-23 00:08:19 -07001396
Joe Perchesc1b511e2013-08-29 15:21:42 -07001397 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001399 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 kfree(disk);
1401 return NULL;
1402 }
Cheng Renquanbf91db12008-11-20 08:37:37 +01001403 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001404 if (disk_expand_part_tbl(disk, 0)) {
1405 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001406 kfree(disk);
1407 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001409 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1410 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001411
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001412 /*
1413 * set_capacity() and get_capacity() currently don't use
1414 * seqcounter to read/update the part0->nr_sects. Still init
1415 * the counter as we can read the sectors in IO submission
1416 * patch using seqence counters.
1417 *
1418 * TODO: Ideally set_capacity() and get_capacity() should be
1419 * converted to make use of bd_mutex and sequence counters.
1420 */
1421 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001422 if (hd_ref_init(&disk->part0)) {
1423 hd_free_part(&disk->part0);
1424 kfree(disk);
1425 return NULL;
1426 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001430 disk_to_dev(disk)->class = &block_class;
1431 disk_to_dev(disk)->type = &disk_type;
1432 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434 return disk;
1435}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001436EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438struct kobject *get_disk(struct gendisk *disk)
1439{
1440 struct module *owner;
1441 struct kobject *kobj;
1442
1443 if (!disk->fops)
1444 return NULL;
1445 owner = disk->fops->owner;
1446 if (owner && !try_module_get(owner))
1447 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001448 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (kobj == NULL) {
1450 module_put(owner);
1451 return NULL;
1452 }
1453 return kobj;
1454
1455}
1456
1457EXPORT_SYMBOL(get_disk);
1458
1459void put_disk(struct gendisk *disk)
1460{
1461 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001462 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
1465EXPORT_SYMBOL(put_disk);
1466
Hannes Reineckee3264a42009-07-28 09:13:13 +02001467static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1468{
1469 char event[] = "DISK_RO=1";
1470 char *envp[] = { event, NULL };
1471
1472 if (!ro)
1473 event[8] = '0';
1474 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477void set_device_ro(struct block_device *bdev, int flag)
1478{
Tejun Heob7db9952008-08-25 19:56:10 +09001479 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
1482EXPORT_SYMBOL(set_device_ro);
1483
1484void set_disk_ro(struct gendisk *disk, int flag)
1485{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001486 struct disk_part_iter piter;
1487 struct hd_struct *part;
1488
Hannes Reineckee3264a42009-07-28 09:13:13 +02001489 if (disk->part0.policy != flag) {
1490 set_disk_ro_uevent(disk, flag);
1491 disk->part0.policy = flag;
1492 }
1493
1494 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001495 while ((part = disk_part_iter_next(&piter)))
1496 part->policy = flag;
1497 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500EXPORT_SYMBOL(set_disk_ro);
1501
1502int bdev_read_only(struct block_device *bdev)
1503{
1504 if (!bdev)
1505 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001506 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
1509EXPORT_SYMBOL(bdev_read_only);
1510
Tejun Heocf771cb2008-09-03 09:01:09 +02001511int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
1513 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001514 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001516 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001517 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 bdput(bdev);
1519 }
1520 return res;
1521}
1522
1523EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001524
1525/*
1526 * Disk events - monitor disk events like media change and eject request.
1527 */
1528struct disk_events {
1529 struct list_head node; /* all disk_event's */
1530 struct gendisk *disk; /* the associated disk */
1531 spinlock_t lock;
1532
Tejun Heofdd514e2011-06-09 20:43:59 +02001533 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001534 int block; /* event blocking depth */
1535 unsigned int pending; /* events already sent out */
1536 unsigned int clearing; /* events being cleared */
1537
1538 long poll_msecs; /* interval, -1 for default */
1539 struct delayed_work dwork;
1540};
1541
1542static const char *disk_events_strs[] = {
1543 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1544 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1545};
1546
1547static char *disk_uevents[] = {
1548 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1549 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1550};
1551
1552/* list of all disk_events */
1553static DEFINE_MUTEX(disk_events_mutex);
1554static LIST_HEAD(disk_events);
1555
1556/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001557static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001558
1559static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1560{
1561 struct disk_events *ev = disk->ev;
1562 long intv_msecs = 0;
1563
1564 /*
1565 * If device-specific poll interval is set, always use it. If
1566 * the default is being used, poll iff there are events which
1567 * can't be monitored asynchronously.
1568 */
1569 if (ev->poll_msecs >= 0)
1570 intv_msecs = ev->poll_msecs;
1571 else if (disk->events & ~disk->async_events)
1572 intv_msecs = disk_events_dfl_poll_msecs;
1573
1574 return msecs_to_jiffies(intv_msecs);
1575}
1576
Tejun Heoc3af54a2011-06-09 20:43:55 +02001577/**
1578 * disk_block_events - block and flush disk event checking
1579 * @disk: disk to block events for
1580 *
1581 * On return from this function, it is guaranteed that event checking
1582 * isn't in progress and won't happen until unblocked by
1583 * disk_unblock_events(). Events blocking is counted and the actual
1584 * unblocking happens after the matching number of unblocks are done.
1585 *
1586 * Note that this intentionally does not block event checking from
1587 * disk_clear_events().
1588 *
1589 * CONTEXT:
1590 * Might sleep.
1591 */
1592void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001593{
1594 struct disk_events *ev = disk->ev;
1595 unsigned long flags;
1596 bool cancel;
1597
Tejun Heoc3af54a2011-06-09 20:43:55 +02001598 if (!ev)
1599 return;
1600
Tejun Heofdd514e2011-06-09 20:43:59 +02001601 /*
1602 * Outer mutex ensures that the first blocker completes canceling
1603 * the event work before further blockers are allowed to finish.
1604 */
1605 mutex_lock(&ev->block_mutex);
1606
Tejun Heo77ea8872010-12-08 20:57:37 +01001607 spin_lock_irqsave(&ev->lock, flags);
1608 cancel = !ev->block++;
1609 spin_unlock_irqrestore(&ev->lock, flags);
1610
Tejun Heoc3af54a2011-06-09 20:43:55 +02001611 if (cancel)
1612 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001613
1614 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001615}
1616
1617static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1618{
1619 struct disk_events *ev = disk->ev;
1620 unsigned long intv;
1621 unsigned long flags;
1622
1623 spin_lock_irqsave(&ev->lock, flags);
1624
1625 if (WARN_ON_ONCE(ev->block <= 0))
1626 goto out_unlock;
1627
1628 if (--ev->block)
1629 goto out_unlock;
1630
Tejun Heo77ea8872010-12-08 20:57:37 +01001631 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001632 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301633 queue_delayed_work(system_freezable_power_efficient_wq,
1634 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001635 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301636 queue_delayed_work(system_freezable_power_efficient_wq,
1637 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001638out_unlock:
1639 spin_unlock_irqrestore(&ev->lock, flags);
1640}
1641
1642/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001643 * disk_unblock_events - unblock disk event checking
1644 * @disk: disk to unblock events for
1645 *
1646 * Undo disk_block_events(). When the block count reaches zero, it
1647 * starts events polling if configured.
1648 *
1649 * CONTEXT:
1650 * Don't care. Safe to call from irq context.
1651 */
1652void disk_unblock_events(struct gendisk *disk)
1653{
1654 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001655 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001656}
1657
1658/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001659 * disk_flush_events - schedule immediate event checking and flushing
1660 * @disk: disk to check and flush events for
1661 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001662 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001663 * Schedule immediate event checking on @disk if not blocked. Events in
1664 * @mask are scheduled to be cleared from the driver. Note that this
1665 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001666 *
1667 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001668 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001669 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001670void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001671{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001672 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001673
1674 if (!ev)
1675 return;
1676
Tejun Heo85ef06d2011-07-01 16:17:47 +02001677 spin_lock_irq(&ev->lock);
1678 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001679 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301680 mod_delayed_work(system_freezable_power_efficient_wq,
1681 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001682 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001683}
Tejun Heo77ea8872010-12-08 20:57:37 +01001684
1685/**
1686 * disk_clear_events - synchronously check, clear and return pending events
1687 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001688 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001689 *
1690 * Disk events are synchronously checked and pending events in @mask
1691 * are cleared and returned. This ignores the block count.
1692 *
1693 * CONTEXT:
1694 * Might sleep.
1695 */
1696unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1697{
1698 const struct block_device_operations *bdops = disk->fops;
1699 struct disk_events *ev = disk->ev;
1700 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001701 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001702
1703 if (!ev) {
1704 /* for drivers still using the old ->media_changed method */
1705 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1706 bdops->media_changed && bdops->media_changed(disk))
1707 return DISK_EVENT_MEDIA_CHANGE;
1708 return 0;
1709 }
1710
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001711 disk_block_events(disk);
1712
1713 /*
1714 * store the union of mask and ev->clearing on the stack so that the
1715 * race with disk_flush_events does not cause ambiguity (ev->clearing
1716 * can still be modified even if events are blocked).
1717 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001718 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001719 clearing |= ev->clearing;
1720 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001721 spin_unlock_irq(&ev->lock);
1722
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001723 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001724 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001725 * if ev->clearing is not 0, the disk_flush_events got called in the
1726 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001727 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001728 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001729
1730 /* then, fetch and clear pending events */
1731 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001732 pending = ev->pending & mask;
1733 ev->pending &= ~mask;
1734 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001735 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001736
1737 return pending;
1738}
1739
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001740/*
1741 * Separate this part out so that a different pointer for clearing_ptr can be
1742 * passed in for disk_clear_events.
1743 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001744static void disk_events_workfn(struct work_struct *work)
1745{
1746 struct delayed_work *dwork = to_delayed_work(work);
1747 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001748
1749 disk_check_events(ev, &ev->clearing);
1750}
1751
1752static void disk_check_events(struct disk_events *ev,
1753 unsigned int *clearing_ptr)
1754{
Tejun Heo77ea8872010-12-08 20:57:37 +01001755 struct gendisk *disk = ev->disk;
1756 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001757 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001758 unsigned int events;
1759 unsigned long intv;
1760 int nr_events = 0, i;
1761
1762 /* check events */
1763 events = disk->fops->check_events(disk, clearing);
1764
1765 /* accumulate pending events and schedule next poll if necessary */
1766 spin_lock_irq(&ev->lock);
1767
1768 events &= ~ev->pending;
1769 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001770 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001771
1772 intv = disk_events_poll_jiffies(disk);
1773 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301774 queue_delayed_work(system_freezable_power_efficient_wq,
1775 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001776
1777 spin_unlock_irq(&ev->lock);
1778
Tejun Heo7c88a162011-04-21 19:43:58 +02001779 /*
1780 * Tell userland about new events. Only the events listed in
1781 * @disk->events are reported. Unlisted events are processed the
1782 * same internally but never get reported to userland.
1783 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001784 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Tejun Heo7c88a162011-04-21 19:43:58 +02001785 if (events & disk->events & (1 << i))
Tejun Heo77ea8872010-12-08 20:57:37 +01001786 envp[nr_events++] = disk_uevents[i];
1787
1788 if (nr_events)
1789 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1790}
1791
1792/*
1793 * A disk events enabled device has the following sysfs nodes under
1794 * its /sys/block/X/ directory.
1795 *
1796 * events : list of all supported events
1797 * events_async : list of events which can be detected w/o polling
1798 * events_poll_msecs : polling interval, 0: disable, -1: system default
1799 */
1800static ssize_t __disk_events_show(unsigned int events, char *buf)
1801{
1802 const char *delim = "";
1803 ssize_t pos = 0;
1804 int i;
1805
1806 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1807 if (events & (1 << i)) {
1808 pos += sprintf(buf + pos, "%s%s",
1809 delim, disk_events_strs[i]);
1810 delim = " ";
1811 }
1812 if (pos)
1813 pos += sprintf(buf + pos, "\n");
1814 return pos;
1815}
1816
1817static ssize_t disk_events_show(struct device *dev,
1818 struct device_attribute *attr, char *buf)
1819{
1820 struct gendisk *disk = dev_to_disk(dev);
1821
1822 return __disk_events_show(disk->events, buf);
1823}
1824
1825static ssize_t disk_events_async_show(struct device *dev,
1826 struct device_attribute *attr, char *buf)
1827{
1828 struct gendisk *disk = dev_to_disk(dev);
1829
1830 return __disk_events_show(disk->async_events, buf);
1831}
1832
1833static ssize_t disk_events_poll_msecs_show(struct device *dev,
1834 struct device_attribute *attr,
1835 char *buf)
1836{
1837 struct gendisk *disk = dev_to_disk(dev);
1838
1839 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1840}
1841
1842static ssize_t disk_events_poll_msecs_store(struct device *dev,
1843 struct device_attribute *attr,
1844 const char *buf, size_t count)
1845{
1846 struct gendisk *disk = dev_to_disk(dev);
1847 long intv;
1848
1849 if (!count || !sscanf(buf, "%ld", &intv))
1850 return -EINVAL;
1851
1852 if (intv < 0 && intv != -1)
1853 return -EINVAL;
1854
Tejun Heoc3af54a2011-06-09 20:43:55 +02001855 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001856 disk->ev->poll_msecs = intv;
1857 __disk_unblock_events(disk, true);
1858
1859 return count;
1860}
1861
1862static const DEVICE_ATTR(events, S_IRUGO, disk_events_show, NULL);
1863static const DEVICE_ATTR(events_async, S_IRUGO, disk_events_async_show, NULL);
1864static const DEVICE_ATTR(events_poll_msecs, S_IRUGO|S_IWUSR,
1865 disk_events_poll_msecs_show,
1866 disk_events_poll_msecs_store);
1867
1868static const struct attribute *disk_events_attrs[] = {
1869 &dev_attr_events.attr,
1870 &dev_attr_events_async.attr,
1871 &dev_attr_events_poll_msecs.attr,
1872 NULL,
1873};
1874
1875/*
1876 * The default polling interval can be specified by the kernel
1877 * parameter block.events_dfl_poll_msecs which defaults to 0
1878 * (disable). This can also be modified runtime by writing to
1879 * /sys/module/block/events_dfl_poll_msecs.
1880 */
1881static int disk_events_set_dfl_poll_msecs(const char *val,
1882 const struct kernel_param *kp)
1883{
1884 struct disk_events *ev;
1885 int ret;
1886
1887 ret = param_set_ulong(val, kp);
1888 if (ret < 0)
1889 return ret;
1890
1891 mutex_lock(&disk_events_mutex);
1892
1893 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02001894 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001895
1896 mutex_unlock(&disk_events_mutex);
1897
1898 return 0;
1899}
1900
1901static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1902 .set = disk_events_set_dfl_poll_msecs,
1903 .get = param_get_ulong,
1904};
1905
1906#undef MODULE_PARAM_PREFIX
1907#define MODULE_PARAM_PREFIX "block."
1908
1909module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1910 &disk_events_dfl_poll_msecs, 0644);
1911
1912/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001913 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01001914 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001915static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001916{
1917 struct disk_events *ev;
1918
Tejun Heo75e3f3e2011-05-26 21:06:50 +02001919 if (!disk->fops->check_events)
Tejun Heo77ea8872010-12-08 20:57:37 +01001920 return;
1921
1922 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1923 if (!ev) {
1924 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1925 return;
1926 }
1927
Tejun Heo77ea8872010-12-08 20:57:37 +01001928 INIT_LIST_HEAD(&ev->node);
1929 ev->disk = disk;
1930 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02001931 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001932 ev->block = 1;
1933 ev->poll_msecs = -1;
1934 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1935
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001936 disk->ev = ev;
1937}
1938
1939static void disk_add_events(struct gendisk *disk)
1940{
1941 if (!disk->ev)
1942 return;
1943
1944 /* FIXME: error handling */
1945 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
1946 pr_warn("%s: failed to create sysfs files for events\n",
1947 disk->disk_name);
1948
Tejun Heo77ea8872010-12-08 20:57:37 +01001949 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001950 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01001951 mutex_unlock(&disk_events_mutex);
1952
1953 /*
1954 * Block count is initialized to 1 and the following initial
1955 * unblock kicks it into action.
1956 */
1957 __disk_unblock_events(disk, true);
1958}
1959
1960static void disk_del_events(struct gendisk *disk)
1961{
1962 if (!disk->ev)
1963 return;
1964
Tejun Heoc3af54a2011-06-09 20:43:55 +02001965 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001966
1967 mutex_lock(&disk_events_mutex);
1968 list_del_init(&disk->ev->node);
1969 mutex_unlock(&disk_events_mutex);
1970
1971 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
1972}
1973
1974static void disk_release_events(struct gendisk *disk)
1975{
1976 /* the block count should be 1 from disk_del_events() */
1977 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
1978 kfree(disk->ev);
1979}