blob: 2367087cdb7c47726338345c8539069da3bc0e82 [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
Tejun Heoe71bf0d2008-09-03 09:03:02 +020085/**
86 * disk_get_part - get partition
87 * @disk: disk to look partition from
88 * @partno: partition number
89 *
90 * Look for partition @partno from @disk. If found, increment
91 * reference count and return it.
92 *
93 * CONTEXT:
94 * Don't care.
95 *
96 * RETURNS:
97 * Pointer to the found partition on success, NULL if not found.
98 */
99struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
100{
Tejun Heo540eed52008-08-25 19:56:15 +0900101 struct hd_struct *part = NULL;
102 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200103
Tejun Heo540eed52008-08-25 19:56:15 +0900104 if (unlikely(partno < 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200105 return NULL;
Tejun Heo540eed52008-08-25 19:56:15 +0900106
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200107 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900108
109 ptbl = rcu_dereference(disk->part_tbl);
110 if (likely(partno < ptbl->len)) {
111 part = rcu_dereference(ptbl->part[partno]);
112 if (part)
113 get_device(part_to_dev(part));
114 }
115
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 */
282static struct blk_major_name {
283 struct blk_major_name *next;
284 int major;
285 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800286} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100289static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Joe Korty68eef3b2006-03-31 02:30:32 -0800291 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Joe Korty68eef3b2006-03-31 02:30:32 -0800294#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200295void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800296{
Joe Korty68eef3b2006-03-31 02:30:32 -0800297 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800298
Joe Korty68eef3b2006-03-31 02:30:32 -0800299 if (offset < BLKDEV_MAJOR_HASH_SIZE) {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200300 mutex_lock(&block_class_lock);
Joe Korty68eef3b2006-03-31 02:30:32 -0800301 for (dp = major_names[offset]; dp; dp = dp->next)
Tejun Heocf771cb2008-09-03 09:01:09 +0200302 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200303 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
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
349 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
350 if (p == NULL) {
351 ret = -ENOMEM;
352 goto out;
353 }
354
355 p->major = major;
356 strlcpy(p->name, name, sizeof(p->name));
357 p->next = NULL;
358 index = major_to_index(major);
359
360 for (n = &major_names[index]; *n; n = &(*n)->next) {
361 if ((*n)->major == major)
362 break;
363 }
364 if (!*n)
365 *n = p;
366 else
367 ret = -EBUSY;
368
369 if (ret < 0) {
370 printk("register_blkdev: cannot get major %d for %s\n",
371 major, name);
372 kfree(p);
373 }
374out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200375 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return ret;
377}
378
379EXPORT_SYMBOL(register_blkdev);
380
Akinobu Mitaf4480242007-07-17 04:03:47 -0700381void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct blk_major_name **n;
384 struct blk_major_name *p = NULL;
385 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200387 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 for (n = &major_names[index]; *n; n = &(*n)->next)
389 if ((*n)->major == major)
390 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700391 if (!*n || strcmp((*n)->name, name)) {
392 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700393 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 p = *n;
395 *n = p->next;
396 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200397 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401EXPORT_SYMBOL(unregister_blkdev);
402
403static struct kobj_map *bdev_map;
404
Tejun Heobcce3de2008-08-25 19:47:22 +0900405/**
Tejun Heo870d6652008-08-25 19:47:25 +0900406 * blk_mangle_minor - scatter minor numbers apart
407 * @minor: minor number to mangle
408 *
409 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
410 * is enabled. Mangling twice gives the original value.
411 *
412 * RETURNS:
413 * Mangled value.
414 *
415 * CONTEXT:
416 * Don't care.
417 */
418static int blk_mangle_minor(int minor)
419{
420#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
421 int i;
422
423 for (i = 0; i < MINORBITS / 2; i++) {
424 int low = minor & (1 << i);
425 int high = minor & (1 << (MINORBITS - 1 - i));
426 int distance = MINORBITS - 1 - 2 * i;
427
428 minor ^= low | high; /* clear both bits */
429 low <<= distance; /* swap the positions */
430 high >>= distance;
431 minor |= low | high; /* and set */
432 }
433#endif
434 return minor;
435}
436
437/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900438 * blk_alloc_devt - allocate a dev_t for a partition
439 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900440 * @devt: out parameter for resulting dev_t
441 *
442 * Allocate a dev_t for block device.
443 *
444 * RETURNS:
445 * 0 on success, allocated dev_t is returned in *@devt. -errno on
446 * failure.
447 *
448 * CONTEXT:
449 * Might sleep.
450 */
451int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
452{
453 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800454 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900455
456 /* in consecutive minor range? */
457 if (part->partno < disk->minors) {
458 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
459 return 0;
460 }
461
462 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600463 idr_preload(GFP_KERNEL);
464
Dan Williams4d66e5e2015-06-10 23:47:14 -0400465 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600466 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400467 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600468
469 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800470 if (idx < 0)
471 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900472
Tejun Heo870d6652008-08-25 19:47:25 +0900473 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900474 return 0;
475}
476
477/**
478 * blk_free_devt - free a dev_t
479 * @devt: dev_t to free
480 *
481 * Free @devt which was allocated using blk_alloc_devt().
482 *
483 * CONTEXT:
484 * Might sleep.
485 */
486void blk_free_devt(dev_t devt)
487{
Tejun Heobcce3de2008-08-25 19:47:22 +0900488 if (devt == MKDEV(0, 0))
489 return;
490
491 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400492 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900493 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400494 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900495 }
496}
497
Tejun Heo1f014292008-08-25 19:47:23 +0900498static char *bdevt_str(dev_t devt, char *buf)
499{
500 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
501 char tbuf[BDEVT_SIZE];
502 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
503 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
504 } else
505 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
506
507 return buf;
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
511 * Register device numbers dev..(dev+range-1)
512 * range must be nonzero
513 * The hash chain is sorted on range, so that subranges can override.
514 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200515void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct kobject *(*probe)(dev_t, int *, void *),
517 int (*lock)(dev_t, void *), void *data)
518{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200519 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522EXPORT_SYMBOL(blk_register_region);
523
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200524void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200526 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
529EXPORT_SYMBOL(blk_unregister_region);
530
Tejun Heocf771cb2008-09-03 09:01:09 +0200531static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200534
Tejun Heoed9e1982008-08-25 19:56:05 +0900535 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200538static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 struct gendisk *p = data;
541
542 if (!get_disk(p))
543 return -1;
544 return 0;
545}
546
Dan Williamse63a46b2016-06-15 18:17:27 -0700547static void register_disk(struct device *parent, struct gendisk *disk)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100548{
549 struct device *ddev = disk_to_dev(disk);
550 struct block_device *bdev;
551 struct disk_part_iter piter;
552 struct hd_struct *part;
553 int err;
554
Dan Williamse63a46b2016-06-15 18:17:27 -0700555 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100556
Kees Cookffc8b302013-07-03 15:01:14 -0700557 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100558
559 /* delay uevents, until we scanned partition table */
560 dev_set_uevent_suppress(ddev, 1);
561
562 if (device_add(ddev))
563 return;
564 if (!sysfs_deprecated) {
565 err = sysfs_create_link(block_depr, &ddev->kobj,
566 kobject_name(&ddev->kobj));
567 if (err) {
568 device_del(ddev);
569 return;
570 }
571 }
Ming Lei25e823c2013-02-22 16:34:13 -0800572
573 /*
574 * avoid probable deadlock caused by allocating memory with
575 * GFP_KERNEL in runtime_resume callback of its all ancestor
576 * devices
577 */
578 pm_runtime_set_memalloc_noio(ddev, true);
579
Tejun Heod2bf1b62010-12-08 20:57:36 +0100580 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
581 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
582
583 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200584 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100585 goto exit;
586
587 /* No such device (e.g., media were just removed) */
588 if (!get_capacity(disk))
589 goto exit;
590
591 bdev = bdget_disk(disk, 0);
592 if (!bdev)
593 goto exit;
594
595 bdev->bd_invalidated = 1;
596 err = blkdev_get(bdev, FMODE_READ, NULL);
597 if (err < 0)
598 goto exit;
599 blkdev_put(bdev, FMODE_READ);
600
601exit:
602 /* announce disk after possible partitions are created */
603 dev_set_uevent_suppress(ddev, 0);
604 kobject_uevent(&ddev->kobj, KOBJ_ADD);
605
606 /* announce possible partitions */
607 disk_part_iter_init(&piter, disk, 0);
608 while ((part = disk_part_iter_next(&piter)))
609 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
610 disk_part_iter_exit(&piter);
611}
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613/**
Dan Williamse63a46b2016-06-15 18:17:27 -0700614 * device_add_disk - add partitioning information to kernel list
615 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * @disk: per-device partitioning information
617 *
618 * This function registers the partitioning information in @disk
619 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900620 *
621 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
Dan Williamse63a46b2016-06-15 18:17:27 -0700623void device_add_disk(struct device *parent, struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700625 struct backing_dev_info *bdi;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900626 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400627 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700628
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900629 /* minors == 0 indicates to use ext devt from part0 and should
630 * be accompanied with EXT_DEVT flag. Make sure all
631 * parameters make sense.
632 */
633 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
634 WARN_ON(!disk->minors && !(disk->flags & GENHD_FL_EXT_DEVT));
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900637
638 retval = blk_alloc_devt(&disk->part0, &devt);
639 if (retval) {
640 WARN_ON(1);
641 return;
642 }
643 disk_to_dev(disk)->devt = devt;
644
645 /* ->major and ->first_minor aren't supposed to be
646 * dereferenced from here on, but set them just in case.
647 */
648 disk->major = MAJOR(devt);
649 disk->first_minor = MINOR(devt);
650
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100651 disk_alloc_events(disk);
652
Wanlong Gao9f5e4862011-06-13 10:45:43 +0200653 /* Register BDI before referencing it from bdev */
Jan Karadc3b17c2017-02-02 15:56:50 +0100654 bdi = disk->queue->backing_dev_info;
Dan Williamsdf08c322016-07-31 11:15:13 -0700655 bdi_register_owner(bdi, disk_to_dev(disk));
Signed-off-by: Jan Kara01ea5062010-09-16 20:36:36 +0200656
Tejun Heof331c022008-09-03 09:01:48 +0200657 blk_register_region(disk_devt(disk), disk->minors, NULL,
658 exact_match, exact_lock, disk);
Dan Williamse63a46b2016-06-15 18:17:27 -0700659 register_disk(parent, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700661
Tejun Heo523e1d32011-10-19 14:31:07 +0200662 /*
663 * Take an extra ref on queue which will be put on disk_release()
664 * so that it sticks around as long as @disk is there.
665 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100666 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200667
Tejun Heoed9e1982008-08-25 19:56:05 +0900668 retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
669 "bdi");
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400670 WARN_ON(retval);
Tejun Heo77ea8872010-12-08 20:57:37 +0100671
672 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400673 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
Dan Williamse63a46b2016-06-15 18:17:27 -0700675EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Tejun Heod2bf1b62010-12-08 20:57:36 +0100677void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100679 struct disk_part_iter piter;
680 struct hd_struct *part;
681
Martin K. Petersen25520d52015-10-21 13:19:49 -0400682 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100683 disk_del_events(disk);
684
Tejun Heod2bf1b62010-12-08 20:57:36 +0100685 /* invalidate stuff */
686 disk_part_iter_init(&piter, disk,
687 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
688 while ((part = disk_part_iter_next(&piter))) {
689 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100690 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100691 delete_partition(disk, part->partno);
692 }
693 disk_part_iter_exit(&piter);
694
695 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100696 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100697 set_capacity(disk, 0);
698 disk->flags &= ~GENHD_FL_UP;
699
Tejun Heoed9e1982008-08-25 19:56:05 +0900700 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100701 if (disk->queue) {
702 /*
703 * Unregister bdi before releasing device numbers (as they can
704 * get reused and we'd get clashes in sysfs).
705 */
706 bdi_unregister(disk->queue->backing_dev_info);
707 blk_unregister_queue(disk);
708 } else {
709 WARN_ON(1);
710 }
Tejun Heof331c022008-09-03 09:01:48 +0200711 blk_unregister_region(disk_devt(disk), disk->minors);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100712
713 part_stat_set_all(&disk->part0, 0);
714 disk->part0.stamp = 0;
715
716 kobject_put(disk->part0.holder_dir);
717 kobject_put(disk->slave_dir);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100718 if (!sysfs_deprecated)
719 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800720 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100721 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100723EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Vishal Verma99e66082016-01-09 08:36:51 -0800725/* sysfs access to bad-blocks list. */
726static ssize_t disk_badblocks_show(struct device *dev,
727 struct device_attribute *attr,
728 char *page)
729{
730 struct gendisk *disk = dev_to_disk(dev);
731
732 if (!disk->bb)
733 return sprintf(page, "\n");
734
735 return badblocks_show(disk->bb, page, 0);
736}
737
738static ssize_t disk_badblocks_store(struct device *dev,
739 struct device_attribute *attr,
740 const char *page, size_t len)
741{
742 struct gendisk *disk = dev_to_disk(dev);
743
744 if (!disk->bb)
745 return -ENXIO;
746
747 return badblocks_store(disk->bb, page, len, 0);
748}
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750/**
751 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200752 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200753 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 *
755 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200756 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200758struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Tejun Heobcce3de2008-08-25 19:47:22 +0900760 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200761
Tejun Heobcce3de2008-08-25 19:47:22 +0900762 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
763 struct kobject *kobj;
764
765 kobj = kobj_lookup(bdev_map, devt, partno);
766 if (kobj)
767 disk = dev_to_disk(kobj_to_dev(kobj));
768 } else {
769 struct hd_struct *part;
770
Dan Williams4d66e5e2015-06-10 23:47:14 -0400771 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900772 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Tejun Heobcce3de2008-08-25 19:47:22 +0900773 if (part && get_disk(part_to_disk(part))) {
774 *partno = part->partno;
775 disk = part_to_disk(part);
776 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400777 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900778 }
779
780 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200782EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Tejun Heof331c022008-09-03 09:01:48 +0200784/**
785 * bdget_disk - do bdget() by gendisk and partition number
786 * @disk: gendisk of interest
787 * @partno: partition number
788 *
789 * Find partition @partno from @disk, do bdget() on it.
790 *
791 * CONTEXT:
792 * Don't care.
793 *
794 * RETURNS:
795 * Resulting block_device on success, NULL on failure.
796 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200797struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200798{
Tejun Heo548b10e2008-08-29 09:01:47 +0200799 struct hd_struct *part;
800 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200801
Tejun Heo548b10e2008-08-29 09:01:47 +0200802 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200803 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200804 bdev = bdget(part_devt(part));
805 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200806
Tejun Heo548b10e2008-08-29 09:01:47 +0200807 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200808}
809EXPORT_SYMBOL(bdget_disk);
810
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700811/*
812 * print a full list of all partitions - intended for places where the root
813 * filesystem can't be mounted and thus to give the victim some idea of what
814 * went wrong
815 */
816void __init printk_all_partitions(void)
817{
Tejun Heodef4e382008-09-03 08:57:12 +0200818 struct class_dev_iter iter;
819 struct device *dev;
820
821 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
822 while ((dev = class_dev_iter_next(&iter))) {
823 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200824 struct disk_part_iter piter;
825 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900826 char name_buf[BDEVNAME_SIZE];
827 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200828
829 /*
830 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300831 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200832 */
833 if (get_capacity(disk) == 0 ||
834 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
835 continue;
836
837 /*
838 * Note, unlike /proc/partitions, I am showing the
839 * numbers in hex - the same format as the root=
840 * option takes.
841 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900842 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
843 while ((part = disk_part_iter_next(&piter))) {
844 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200845
Will Drewryb5af9212010-08-31 15:47:07 -0500846 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900847 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200848 (unsigned long long)part_nr_sects_read(part) >> 1
849 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800850 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900851 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700852 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900853 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700854 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900855 else
856 printk(" (driver?)\n");
857 } else
858 printk("\n");
859 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200860 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200861 }
862 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865#ifdef CONFIG_PROC_FS
866/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200867static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400868{
Tejun Heodef4e382008-09-03 08:57:12 +0200869 loff_t skip = *pos;
870 struct class_dev_iter *iter;
871 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400872
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200873 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200874 if (!iter)
875 return ERR_PTR(-ENOMEM);
876
877 seqf->private = iter;
878 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
879 do {
880 dev = class_dev_iter_next(iter);
881 if (!dev)
882 return NULL;
883 } while (skip--);
884
885 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400886}
887
Tejun Heodef4e382008-09-03 08:57:12 +0200888static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200890 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400891
Tejun Heodef4e382008-09-03 08:57:12 +0200892 (*pos)++;
893 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200894 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400895 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return NULL;
898}
899
Tejun Heodef4e382008-09-03 08:57:12 +0200900static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400901{
Tejun Heodef4e382008-09-03 08:57:12 +0200902 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400903
Tejun Heodef4e382008-09-03 08:57:12 +0200904 /* stop is called even after start failed :-( */
905 if (iter) {
906 class_dev_iter_exit(iter);
907 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +0200908 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Tejun Heodef4e382008-09-03 08:57:12 +0200912static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Jianpeng Ma06768062012-08-03 10:42:00 +0200914 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +0200915
916 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +0100917 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +0200918 seq_puts(seqf, "major minor #blocks name\n\n");
919 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Tejun Heocf771cb2008-09-03 09:01:09 +0200922static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200925 struct disk_part_iter piter;
926 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 char buf[BDEVNAME_SIZE];
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +0200930 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +0200931 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return 0;
933 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
934 return 0;
935
936 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900937 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200938 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +0900939 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +0200940 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200941 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +0200942 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200943 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 return 0;
946}
947
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400948static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +0200949 .start = show_partition_start,
950 .next = disk_seqf_next,
951 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200952 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953};
Alexey Dobriyanf5009752008-10-04 23:53:21 +0400954
955static int partitions_open(struct inode *inode, struct file *file)
956{
957 return seq_open(file, &partitions_op);
958}
959
960static const struct file_operations proc_partitions_operations = {
961 .open = partitions_open,
962 .read = seq_read,
963 .llseek = seq_lseek,
964 .release = seq_release,
965};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966#endif
967
968
Tejun Heocf771cb2008-09-03 09:01:09 +0200969static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200971 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200973 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return NULL;
975}
976
977static int __init genhd_device_init(void)
978{
Dan Williamse105b8b2008-04-21 10:51:07 -0700979 int error;
980
981 block_class.dev_kobj = sysfs_dev_block_kobj;
982 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -0700983 if (unlikely(error))
984 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200985 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200987
Zhang, Yanmin561ec682008-11-14 08:26:30 +0100988 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
989
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200990 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +0200991 if (!sysfs_deprecated)
992 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -0800993 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
996subsys_initcall(genhd_device_init);
997
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200998static ssize_t disk_range_show(struct device *dev,
999 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001001 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001003 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Tejun Heo1f014292008-08-25 19:47:23 +09001006static ssize_t disk_ext_range_show(struct device *dev,
1007 struct device_attribute *attr, char *buf)
1008{
1009 struct gendisk *disk = dev_to_disk(dev);
1010
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001011 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001012}
1013
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001014static ssize_t disk_removable_show(struct device *dev,
1015 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001016{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001017 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001018
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001019 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001021}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Kay Sievers1c9ce522008-06-13 09:41:00 +02001023static ssize_t disk_ro_show(struct device *dev,
1024 struct device_attribute *attr, char *buf)
1025{
1026 struct gendisk *disk = dev_to_disk(dev);
1027
Tejun Heob7db9952008-08-25 19:56:10 +09001028 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001029}
1030
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001031static ssize_t disk_capability_show(struct device *dev,
1032 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001033{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001034 struct gendisk *disk = dev_to_disk(dev);
1035
1036 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001037}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001038
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001039static ssize_t disk_alignment_offset_show(struct device *dev,
1040 struct device_attribute *attr,
1041 char *buf)
1042{
1043 struct gendisk *disk = dev_to_disk(dev);
1044
1045 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1046}
1047
Martin K. Petersen86b37282009-11-10 11:50:21 +01001048static ssize_t disk_discard_alignment_show(struct device *dev,
1049 struct device_attribute *attr,
1050 char *buf)
1051{
1052 struct gendisk *disk = dev_to_disk(dev);
1053
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001054 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001055}
1056
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001057static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
Tejun Heo1f014292008-08-25 19:47:23 +09001058static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001059static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001060static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
Tejun Heoe5610522008-08-25 19:56:09 +09001061static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001062static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
Martin K. Petersen86b37282009-11-10 11:50:21 +01001063static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
1064 NULL);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001065static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001066static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001067static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
Vishal Verma99e66082016-01-09 08:36:51 -08001068static DEVICE_ATTR(badblocks, S_IRUGO | S_IWUSR, disk_badblocks_show,
1069 disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001070#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001071static struct device_attribute dev_attr_fail =
Tejun Heoeddb2e22008-08-25 19:56:13 +09001072 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001073#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001074#ifdef CONFIG_FAIL_IO_TIMEOUT
1075static struct device_attribute dev_attr_fail_timeout =
1076 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
1077 part_timeout_store);
1078#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001079
1080static struct attribute *disk_attrs[] = {
1081 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001082 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001083 &dev_attr_removable.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001084 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001085 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001086 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001087 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001088 &dev_attr_capability.attr,
1089 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001090 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001091 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001092#ifdef CONFIG_FAIL_MAKE_REQUEST
1093 &dev_attr_fail.attr,
1094#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001095#ifdef CONFIG_FAIL_IO_TIMEOUT
1096 &dev_attr_fail_timeout.attr,
1097#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001098 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099};
1100
Dan Williams9438b3e02017-04-27 14:46:26 -07001101static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1102{
1103 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1104 struct gendisk *disk = dev_to_disk(dev);
1105
1106 if (a == &dev_attr_badblocks.attr && !disk->bb)
1107 return 0;
1108 return a->mode;
1109}
1110
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001111static struct attribute_group disk_attr_group = {
1112 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001113 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001114};
1115
David Brownella4dbd672009-06-24 10:06:31 -07001116static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001117 &disk_attr_group,
1118 NULL
1119};
1120
Tejun Heo540eed52008-08-25 19:56:15 +09001121/**
1122 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1123 * @disk: disk to replace part_tbl for
1124 * @new_ptbl: new part_tbl to install
1125 *
1126 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1127 * original ptbl is freed using RCU callback.
1128 *
1129 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001130 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001131 */
1132static void disk_replace_part_tbl(struct gendisk *disk,
1133 struct disk_part_tbl *new_ptbl)
1134{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001135 struct disk_part_tbl *old_ptbl =
1136 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001137
1138 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001139
1140 if (old_ptbl) {
1141 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001142 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001143 }
Tejun Heo540eed52008-08-25 19:56:15 +09001144}
1145
1146/**
1147 * disk_expand_part_tbl - expand disk->part_tbl
1148 * @disk: disk to expand part_tbl for
1149 * @partno: expand such that this partno can fit in
1150 *
1151 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1152 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1153 *
1154 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001155 * Matching bd_mutex locked or the caller is the only user of @disk.
1156 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001157 *
1158 * RETURNS:
1159 * 0 on success, -errno on failure.
1160 */
1161int disk_expand_part_tbl(struct gendisk *disk, int partno)
1162{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001163 struct disk_part_tbl *old_ptbl =
1164 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001165 struct disk_part_tbl *new_ptbl;
1166 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001167 int i, target;
Tejun Heo540eed52008-08-25 19:56:15 +09001168 size_t size;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001169
1170 /*
1171 * check for int overflow, since we can get here from blkpg_ioctl()
1172 * with a user passed 'partno'.
1173 */
1174 target = partno + 1;
1175 if (target < 0)
1176 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001177
1178 /* disk_max_parts() is zero during initialization, ignore if so */
1179 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1180 return -EINVAL;
1181
1182 if (target <= len)
1183 return 0;
1184
1185 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1186 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1187 if (!new_ptbl)
1188 return -ENOMEM;
1189
Tejun Heo540eed52008-08-25 19:56:15 +09001190 new_ptbl->len = target;
1191
1192 for (i = 0; i < len; i++)
1193 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1194
1195 disk_replace_part_tbl(disk, new_ptbl);
1196 return 0;
1197}
1198
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001199static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001201 struct gendisk *disk = dev_to_disk(dev);
1202
Keith Busch2da78092014-08-26 09:05:36 -06001203 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001204 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001206 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001207 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001208 if (disk->queue)
1209 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 kfree(disk);
1211}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001212struct class block_class = {
1213 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214};
1215
Kay Sievers3c2670e2013-04-06 09:56:00 -07001216static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001217 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001218{
1219 struct gendisk *disk = dev_to_disk(dev);
1220
Kay Sieverse454cea2009-09-18 23:01:12 +02001221 if (disk->devnode)
1222 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001223 return NULL;
1224}
1225
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001226static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001227 .name = "disk",
1228 .groups = disk_attr_groups,
1229 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001230 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231};
1232
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001233#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001234/*
1235 * aggregate disk stat collector. Uses the same stats that the sysfs
1236 * entries do, above, but makes them available through one seq_file.
1237 *
1238 * The output looks suspiciously like /proc/partitions with a bunch of
1239 * extra fields.
1240 */
1241static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001244 struct disk_part_iter piter;
1245 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 char buf[BDEVNAME_SIZE];
Jens Axboe0609e0e2017-08-08 17:49:47 -06001247 unsigned int inflight[2];
Tejun Heoc9959052008-08-25 19:47:21 +09001248 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001251 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001252 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 " rio rmerge rsect ruse wio wmerge "
1254 "wsect wuse running use aveq"
1255 "\n\n");
1256 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001257
Tejun Heo71982a42009-04-17 08:34:48 +02001258 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001259 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001260 cpu = part_stat_lock();
Jens Axboed62e26b2017-06-30 21:55:08 -06001261 part_round_stats(gp->queue, cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001262 part_stat_unlock();
Jens Axboe0609e0e2017-08-08 17:49:47 -06001263 part_in_flight(gp->queue, hd, inflight);
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001264 seq_printf(seqf, "%4d %7d %s %lu %lu %lu "
1265 "%u %lu %lu %lu %u %u %u %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001266 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1267 disk_name(gp, hd->partno, buf),
Liu Yuan53f22952011-03-02 11:00:15 -05001268 part_stat_read(hd, ios[READ]),
1269 part_stat_read(hd, merges[READ]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001270 part_stat_read(hd, sectors[READ]),
Liu Yuan53f22952011-03-02 11:00:15 -05001271 jiffies_to_msecs(part_stat_read(hd, ticks[READ])),
1272 part_stat_read(hd, ios[WRITE]),
1273 part_stat_read(hd, merges[WRITE]),
Herbert Poetzlf95fe9c2011-08-02 12:43:50 +02001274 part_stat_read(hd, sectors[WRITE]),
Liu Yuan53f22952011-03-02 11:00:15 -05001275 jiffies_to_msecs(part_stat_read(hd, ticks[WRITE])),
Jens Axboe0609e0e2017-08-08 17:49:47 -06001276 inflight[0],
Jerome Marchand28f39d52008-02-08 11:04:56 +01001277 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1278 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1279 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001281 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return 0;
1284}
1285
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001286static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001287 .start = disk_seqf_start,
1288 .next = disk_seqf_next,
1289 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 .show = diskstats_show
1291};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001292
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001293static int diskstats_open(struct inode *inode, struct file *file)
1294{
1295 return seq_open(file, &diskstats_op);
1296}
1297
1298static const struct file_operations proc_diskstats_operations = {
1299 .open = diskstats_open,
1300 .read = seq_read,
1301 .llseek = seq_lseek,
1302 .release = seq_release,
1303};
1304
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001305static int __init proc_genhd_init(void)
1306{
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001307 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001308 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1309 return 0;
1310}
1311module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001312#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Tejun Heocf771cb2008-09-03 09:01:09 +02001314dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001315{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001316 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001317 struct class_dev_iter iter;
1318 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001319
Tejun Heodef4e382008-09-03 08:57:12 +02001320 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1321 while ((dev = class_dev_iter_next(&iter))) {
1322 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001323 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001324
Kay Sievers3ada8b72009-01-06 10:44:43 -08001325 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001326 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001327
Neil Brown41b8c852009-02-18 10:33:59 +01001328 if (partno < disk->minors) {
1329 /* We need to return the right devno, even
1330 * if the partition doesn't exist yet.
1331 */
1332 devt = MKDEV(MAJOR(dev->devt),
1333 MINOR(dev->devt) + partno);
1334 break;
1335 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001336 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001337 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001338 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001339 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001340 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001341 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001342 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001343 }
Tejun Heodef4e382008-09-03 08:57:12 +02001344 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001345 return devt;
1346}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001347EXPORT_SYMBOL(blk_lookup_devt);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349struct gendisk *alloc_disk(int minors)
1350{
Ezequiel Garciac304a512012-11-10 10:39:44 +01001351 return alloc_disk_node(minors, NUMA_NO_NODE);
Christoph Lameter19460892005-06-23 00:08:19 -07001352}
Tejun Heo689d6fa2008-08-25 19:56:16 +09001353EXPORT_SYMBOL(alloc_disk);
Christoph Lameter19460892005-06-23 00:08:19 -07001354
1355struct gendisk *alloc_disk_node(int minors, int node_id)
1356{
1357 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001358 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001359
Joe Perchesc1b511e2013-08-29 15:21:42 -07001360 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001362 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 kfree(disk);
1364 return NULL;
1365 }
Cheng Renquanbf91db12008-11-20 08:37:37 +01001366 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001367 if (disk_expand_part_tbl(disk, 0)) {
1368 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001369 kfree(disk);
1370 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001372 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1373 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001374
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001375 /*
1376 * set_capacity() and get_capacity() currently don't use
1377 * seqcounter to read/update the part0->nr_sects. Still init
1378 * the counter as we can read the sectors in IO submission
1379 * patch using seqence counters.
1380 *
1381 * TODO: Ideally set_capacity() and get_capacity() should be
1382 * converted to make use of bd_mutex and sequence counters.
1383 */
1384 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001385 if (hd_ref_init(&disk->part0)) {
1386 hd_free_part(&disk->part0);
1387 kfree(disk);
1388 return NULL;
1389 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001393 disk_to_dev(disk)->class = &block_class;
1394 disk_to_dev(disk)->type = &disk_type;
1395 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 return disk;
1398}
Christoph Lameter19460892005-06-23 00:08:19 -07001399EXPORT_SYMBOL(alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401struct kobject *get_disk(struct gendisk *disk)
1402{
1403 struct module *owner;
1404 struct kobject *kobj;
1405
1406 if (!disk->fops)
1407 return NULL;
1408 owner = disk->fops->owner;
1409 if (owner && !try_module_get(owner))
1410 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001411 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (kobj == NULL) {
1413 module_put(owner);
1414 return NULL;
1415 }
1416 return kobj;
1417
1418}
1419
1420EXPORT_SYMBOL(get_disk);
1421
1422void put_disk(struct gendisk *disk)
1423{
1424 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001425 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427
1428EXPORT_SYMBOL(put_disk);
1429
Hannes Reineckee3264a42009-07-28 09:13:13 +02001430static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1431{
1432 char event[] = "DISK_RO=1";
1433 char *envp[] = { event, NULL };
1434
1435 if (!ro)
1436 event[8] = '0';
1437 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1438}
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440void set_device_ro(struct block_device *bdev, int flag)
1441{
Tejun Heob7db9952008-08-25 19:56:10 +09001442 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445EXPORT_SYMBOL(set_device_ro);
1446
1447void set_disk_ro(struct gendisk *disk, int flag)
1448{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001449 struct disk_part_iter piter;
1450 struct hd_struct *part;
1451
Hannes Reineckee3264a42009-07-28 09:13:13 +02001452 if (disk->part0.policy != flag) {
1453 set_disk_ro_uevent(disk, flag);
1454 disk->part0.policy = flag;
1455 }
1456
1457 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001458 while ((part = disk_part_iter_next(&piter)))
1459 part->policy = flag;
1460 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
1463EXPORT_SYMBOL(set_disk_ro);
1464
1465int bdev_read_only(struct block_device *bdev)
1466{
1467 if (!bdev)
1468 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001469 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472EXPORT_SYMBOL(bdev_read_only);
1473
Tejun Heocf771cb2008-09-03 09:01:09 +02001474int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001477 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001479 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001480 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 bdput(bdev);
1482 }
1483 return res;
1484}
1485
1486EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001487
1488/*
1489 * Disk events - monitor disk events like media change and eject request.
1490 */
1491struct disk_events {
1492 struct list_head node; /* all disk_event's */
1493 struct gendisk *disk; /* the associated disk */
1494 spinlock_t lock;
1495
Tejun Heofdd514e2011-06-09 20:43:59 +02001496 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001497 int block; /* event blocking depth */
1498 unsigned int pending; /* events already sent out */
1499 unsigned int clearing; /* events being cleared */
1500
1501 long poll_msecs; /* interval, -1 for default */
1502 struct delayed_work dwork;
1503};
1504
1505static const char *disk_events_strs[] = {
1506 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1507 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1508};
1509
1510static char *disk_uevents[] = {
1511 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1512 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1513};
1514
1515/* list of all disk_events */
1516static DEFINE_MUTEX(disk_events_mutex);
1517static LIST_HEAD(disk_events);
1518
1519/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001520static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001521
1522static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1523{
1524 struct disk_events *ev = disk->ev;
1525 long intv_msecs = 0;
1526
1527 /*
1528 * If device-specific poll interval is set, always use it. If
1529 * the default is being used, poll iff there are events which
1530 * can't be monitored asynchronously.
1531 */
1532 if (ev->poll_msecs >= 0)
1533 intv_msecs = ev->poll_msecs;
1534 else if (disk->events & ~disk->async_events)
1535 intv_msecs = disk_events_dfl_poll_msecs;
1536
1537 return msecs_to_jiffies(intv_msecs);
1538}
1539
Tejun Heoc3af54a2011-06-09 20:43:55 +02001540/**
1541 * disk_block_events - block and flush disk event checking
1542 * @disk: disk to block events for
1543 *
1544 * On return from this function, it is guaranteed that event checking
1545 * isn't in progress and won't happen until unblocked by
1546 * disk_unblock_events(). Events blocking is counted and the actual
1547 * unblocking happens after the matching number of unblocks are done.
1548 *
1549 * Note that this intentionally does not block event checking from
1550 * disk_clear_events().
1551 *
1552 * CONTEXT:
1553 * Might sleep.
1554 */
1555void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001556{
1557 struct disk_events *ev = disk->ev;
1558 unsigned long flags;
1559 bool cancel;
1560
Tejun Heoc3af54a2011-06-09 20:43:55 +02001561 if (!ev)
1562 return;
1563
Tejun Heofdd514e2011-06-09 20:43:59 +02001564 /*
1565 * Outer mutex ensures that the first blocker completes canceling
1566 * the event work before further blockers are allowed to finish.
1567 */
1568 mutex_lock(&ev->block_mutex);
1569
Tejun Heo77ea8872010-12-08 20:57:37 +01001570 spin_lock_irqsave(&ev->lock, flags);
1571 cancel = !ev->block++;
1572 spin_unlock_irqrestore(&ev->lock, flags);
1573
Tejun Heoc3af54a2011-06-09 20:43:55 +02001574 if (cancel)
1575 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001576
1577 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001578}
1579
1580static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1581{
1582 struct disk_events *ev = disk->ev;
1583 unsigned long intv;
1584 unsigned long flags;
1585
1586 spin_lock_irqsave(&ev->lock, flags);
1587
1588 if (WARN_ON_ONCE(ev->block <= 0))
1589 goto out_unlock;
1590
1591 if (--ev->block)
1592 goto out_unlock;
1593
Tejun Heo77ea8872010-12-08 20:57:37 +01001594 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001595 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301596 queue_delayed_work(system_freezable_power_efficient_wq,
1597 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001598 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301599 queue_delayed_work(system_freezable_power_efficient_wq,
1600 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001601out_unlock:
1602 spin_unlock_irqrestore(&ev->lock, flags);
1603}
1604
1605/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001606 * disk_unblock_events - unblock disk event checking
1607 * @disk: disk to unblock events for
1608 *
1609 * Undo disk_block_events(). When the block count reaches zero, it
1610 * starts events polling if configured.
1611 *
1612 * CONTEXT:
1613 * Don't care. Safe to call from irq context.
1614 */
1615void disk_unblock_events(struct gendisk *disk)
1616{
1617 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001618 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001619}
1620
1621/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001622 * disk_flush_events - schedule immediate event checking and flushing
1623 * @disk: disk to check and flush events for
1624 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001625 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001626 * Schedule immediate event checking on @disk if not blocked. Events in
1627 * @mask are scheduled to be cleared from the driver. Note that this
1628 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001629 *
1630 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001631 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001632 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001633void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001634{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001635 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001636
1637 if (!ev)
1638 return;
1639
Tejun Heo85ef06d2011-07-01 16:17:47 +02001640 spin_lock_irq(&ev->lock);
1641 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001642 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301643 mod_delayed_work(system_freezable_power_efficient_wq,
1644 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001645 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001646}
Tejun Heo77ea8872010-12-08 20:57:37 +01001647
1648/**
1649 * disk_clear_events - synchronously check, clear and return pending events
1650 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001651 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001652 *
1653 * Disk events are synchronously checked and pending events in @mask
1654 * are cleared and returned. This ignores the block count.
1655 *
1656 * CONTEXT:
1657 * Might sleep.
1658 */
1659unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1660{
1661 const struct block_device_operations *bdops = disk->fops;
1662 struct disk_events *ev = disk->ev;
1663 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001664 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001665
1666 if (!ev) {
1667 /* for drivers still using the old ->media_changed method */
1668 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1669 bdops->media_changed && bdops->media_changed(disk))
1670 return DISK_EVENT_MEDIA_CHANGE;
1671 return 0;
1672 }
1673
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001674 disk_block_events(disk);
1675
1676 /*
1677 * store the union of mask and ev->clearing on the stack so that the
1678 * race with disk_flush_events does not cause ambiguity (ev->clearing
1679 * can still be modified even if events are blocked).
1680 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001681 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001682 clearing |= ev->clearing;
1683 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001684 spin_unlock_irq(&ev->lock);
1685
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001686 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001687 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001688 * if ev->clearing is not 0, the disk_flush_events got called in the
1689 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001690 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001691 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001692
1693 /* then, fetch and clear pending events */
1694 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001695 pending = ev->pending & mask;
1696 ev->pending &= ~mask;
1697 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001698 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001699
1700 return pending;
1701}
1702
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001703/*
1704 * Separate this part out so that a different pointer for clearing_ptr can be
1705 * passed in for disk_clear_events.
1706 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001707static void disk_events_workfn(struct work_struct *work)
1708{
1709 struct delayed_work *dwork = to_delayed_work(work);
1710 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001711
1712 disk_check_events(ev, &ev->clearing);
1713}
1714
1715static void disk_check_events(struct disk_events *ev,
1716 unsigned int *clearing_ptr)
1717{
Tejun Heo77ea8872010-12-08 20:57:37 +01001718 struct gendisk *disk = ev->disk;
1719 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001720 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001721 unsigned int events;
1722 unsigned long intv;
1723 int nr_events = 0, i;
1724
1725 /* check events */
1726 events = disk->fops->check_events(disk, clearing);
1727
1728 /* accumulate pending events and schedule next poll if necessary */
1729 spin_lock_irq(&ev->lock);
1730
1731 events &= ~ev->pending;
1732 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001733 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001734
1735 intv = disk_events_poll_jiffies(disk);
1736 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301737 queue_delayed_work(system_freezable_power_efficient_wq,
1738 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001739
1740 spin_unlock_irq(&ev->lock);
1741
Tejun Heo7c88a162011-04-21 19:43:58 +02001742 /*
1743 * Tell userland about new events. Only the events listed in
1744 * @disk->events are reported. Unlisted events are processed the
1745 * same internally but never get reported to userland.
1746 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001747 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Tejun Heo7c88a162011-04-21 19:43:58 +02001748 if (events & disk->events & (1 << i))
Tejun Heo77ea8872010-12-08 20:57:37 +01001749 envp[nr_events++] = disk_uevents[i];
1750
1751 if (nr_events)
1752 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1753}
1754
1755/*
1756 * A disk events enabled device has the following sysfs nodes under
1757 * its /sys/block/X/ directory.
1758 *
1759 * events : list of all supported events
1760 * events_async : list of events which can be detected w/o polling
1761 * events_poll_msecs : polling interval, 0: disable, -1: system default
1762 */
1763static ssize_t __disk_events_show(unsigned int events, char *buf)
1764{
1765 const char *delim = "";
1766 ssize_t pos = 0;
1767 int i;
1768
1769 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1770 if (events & (1 << i)) {
1771 pos += sprintf(buf + pos, "%s%s",
1772 delim, disk_events_strs[i]);
1773 delim = " ";
1774 }
1775 if (pos)
1776 pos += sprintf(buf + pos, "\n");
1777 return pos;
1778}
1779
1780static ssize_t disk_events_show(struct device *dev,
1781 struct device_attribute *attr, char *buf)
1782{
1783 struct gendisk *disk = dev_to_disk(dev);
1784
1785 return __disk_events_show(disk->events, buf);
1786}
1787
1788static ssize_t disk_events_async_show(struct device *dev,
1789 struct device_attribute *attr, char *buf)
1790{
1791 struct gendisk *disk = dev_to_disk(dev);
1792
1793 return __disk_events_show(disk->async_events, buf);
1794}
1795
1796static ssize_t disk_events_poll_msecs_show(struct device *dev,
1797 struct device_attribute *attr,
1798 char *buf)
1799{
1800 struct gendisk *disk = dev_to_disk(dev);
1801
1802 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1803}
1804
1805static ssize_t disk_events_poll_msecs_store(struct device *dev,
1806 struct device_attribute *attr,
1807 const char *buf, size_t count)
1808{
1809 struct gendisk *disk = dev_to_disk(dev);
1810 long intv;
1811
1812 if (!count || !sscanf(buf, "%ld", &intv))
1813 return -EINVAL;
1814
1815 if (intv < 0 && intv != -1)
1816 return -EINVAL;
1817
Tejun Heoc3af54a2011-06-09 20:43:55 +02001818 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001819 disk->ev->poll_msecs = intv;
1820 __disk_unblock_events(disk, true);
1821
1822 return count;
1823}
1824
1825static const DEVICE_ATTR(events, S_IRUGO, disk_events_show, NULL);
1826static const DEVICE_ATTR(events_async, S_IRUGO, disk_events_async_show, NULL);
1827static const DEVICE_ATTR(events_poll_msecs, S_IRUGO|S_IWUSR,
1828 disk_events_poll_msecs_show,
1829 disk_events_poll_msecs_store);
1830
1831static const struct attribute *disk_events_attrs[] = {
1832 &dev_attr_events.attr,
1833 &dev_attr_events_async.attr,
1834 &dev_attr_events_poll_msecs.attr,
1835 NULL,
1836};
1837
1838/*
1839 * The default polling interval can be specified by the kernel
1840 * parameter block.events_dfl_poll_msecs which defaults to 0
1841 * (disable). This can also be modified runtime by writing to
1842 * /sys/module/block/events_dfl_poll_msecs.
1843 */
1844static int disk_events_set_dfl_poll_msecs(const char *val,
1845 const struct kernel_param *kp)
1846{
1847 struct disk_events *ev;
1848 int ret;
1849
1850 ret = param_set_ulong(val, kp);
1851 if (ret < 0)
1852 return ret;
1853
1854 mutex_lock(&disk_events_mutex);
1855
1856 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02001857 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001858
1859 mutex_unlock(&disk_events_mutex);
1860
1861 return 0;
1862}
1863
1864static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1865 .set = disk_events_set_dfl_poll_msecs,
1866 .get = param_get_ulong,
1867};
1868
1869#undef MODULE_PARAM_PREFIX
1870#define MODULE_PARAM_PREFIX "block."
1871
1872module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1873 &disk_events_dfl_poll_msecs, 0644);
1874
1875/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001876 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01001877 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001878static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001879{
1880 struct disk_events *ev;
1881
Tejun Heo75e3f3e2011-05-26 21:06:50 +02001882 if (!disk->fops->check_events)
Tejun Heo77ea8872010-12-08 20:57:37 +01001883 return;
1884
1885 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1886 if (!ev) {
1887 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1888 return;
1889 }
1890
Tejun Heo77ea8872010-12-08 20:57:37 +01001891 INIT_LIST_HEAD(&ev->node);
1892 ev->disk = disk;
1893 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02001894 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001895 ev->block = 1;
1896 ev->poll_msecs = -1;
1897 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1898
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001899 disk->ev = ev;
1900}
1901
1902static void disk_add_events(struct gendisk *disk)
1903{
1904 if (!disk->ev)
1905 return;
1906
1907 /* FIXME: error handling */
1908 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
1909 pr_warn("%s: failed to create sysfs files for events\n",
1910 disk->disk_name);
1911
Tejun Heo77ea8872010-12-08 20:57:37 +01001912 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001913 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01001914 mutex_unlock(&disk_events_mutex);
1915
1916 /*
1917 * Block count is initialized to 1 and the following initial
1918 * unblock kicks it into action.
1919 */
1920 __disk_unblock_events(disk, true);
1921}
1922
1923static void disk_del_events(struct gendisk *disk)
1924{
1925 if (!disk->ev)
1926 return;
1927
Tejun Heoc3af54a2011-06-09 20:43:55 +02001928 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001929
1930 mutex_lock(&disk_events_mutex);
1931 list_del_init(&disk->ev->node);
1932 mutex_unlock(&disk_events_mutex);
1933
1934 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
1935}
1936
1937static void disk_release_events(struct gendisk *disk)
1938{
1939 /* the block count should be 1 from disk_del_events() */
1940 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
1941 kfree(disk->ev);
1942}