blob: ef0936184d6983ed7ab968ec0ab5bdb176ea53da [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
Omar Sandovalbf0ddab2018-04-26 00:21:59 -070085void part_in_flight_rw(struct request_queue *q, struct hd_struct *part,
86 unsigned int inflight[2])
87{
88 if (q->mq_ops) {
89 blk_mq_in_flight_rw(q, part, inflight);
90 return;
91 }
92
93 inflight[0] = atomic_read(&part->in_flight[0]);
94 inflight[1] = atomic_read(&part->in_flight[1]);
95}
96
Christoph Hellwig807d4af2017-08-23 19:10:30 +020097struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
98{
99 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
100
101 if (unlikely(partno < 0 || partno >= ptbl->len))
102 return NULL;
103 return rcu_dereference(ptbl->part[partno]);
104}
105
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200106/**
107 * disk_get_part - get partition
108 * @disk: disk to look partition from
109 * @partno: partition number
110 *
111 * Look for partition @partno from @disk. If found, increment
112 * reference count and return it.
113 *
114 * CONTEXT:
115 * Don't care.
116 *
117 * RETURNS:
118 * Pointer to the found partition on success, NULL if not found.
119 */
120struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
121{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200122 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900123
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200124 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200125 part = __disk_get_part(disk, partno);
126 if (part)
127 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200128 rcu_read_unlock();
129
130 return part;
131}
132EXPORT_SYMBOL_GPL(disk_get_part);
133
134/**
135 * disk_part_iter_init - initialize partition iterator
136 * @piter: iterator to initialize
137 * @disk: disk to iterate over
138 * @flags: DISK_PITER_* flags
139 *
140 * Initialize @piter so that it iterates over partitions of @disk.
141 *
142 * CONTEXT:
143 * Don't care.
144 */
145void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
146 unsigned int flags)
147{
Tejun Heo540eed52008-08-25 19:56:15 +0900148 struct disk_part_tbl *ptbl;
149
150 rcu_read_lock();
151 ptbl = rcu_dereference(disk->part_tbl);
152
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200153 piter->disk = disk;
154 piter->part = NULL;
155
156 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900157 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200158 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200159 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200160 else
161 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200162
163 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900164
165 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200166}
167EXPORT_SYMBOL_GPL(disk_part_iter_init);
168
169/**
170 * disk_part_iter_next - proceed iterator to the next partition and return it
171 * @piter: iterator of interest
172 *
173 * Proceed @piter to the next partition and return it.
174 *
175 * CONTEXT:
176 * Don't care.
177 */
178struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
179{
Tejun Heo540eed52008-08-25 19:56:15 +0900180 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200181 int inc, end;
182
183 /* put the last partition */
184 disk_put_part(piter->part);
185 piter->part = NULL;
186
Tejun Heo540eed52008-08-25 19:56:15 +0900187 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200188 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900189 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200190
191 /* determine iteration parameters */
192 if (piter->flags & DISK_PITER_REVERSE) {
193 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200194 if (piter->flags & (DISK_PITER_INCL_PART0 |
195 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200196 end = -1;
197 else
198 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200199 } else {
200 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900201 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200202 }
203
204 /* iterate to the next partition */
205 for (; piter->idx != end; piter->idx += inc) {
206 struct hd_struct *part;
207
Tejun Heo540eed52008-08-25 19:56:15 +0900208 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200209 if (!part)
210 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200211 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200212 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
213 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
214 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200215 continue;
216
Tejun Heoed9e1982008-08-25 19:56:05 +0900217 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200218 piter->part = part;
219 piter->idx += inc;
220 break;
221 }
222
223 rcu_read_unlock();
224
225 return piter->part;
226}
227EXPORT_SYMBOL_GPL(disk_part_iter_next);
228
229/**
230 * disk_part_iter_exit - finish up partition iteration
231 * @piter: iter of interest
232 *
233 * Called when iteration is over. Cleans up @piter.
234 *
235 * CONTEXT:
236 * Don't care.
237 */
238void disk_part_iter_exit(struct disk_part_iter *piter)
239{
240 disk_put_part(piter->part);
241 piter->part = NULL;
242}
243EXPORT_SYMBOL_GPL(disk_part_iter_exit);
244
Jens Axboea6f23652008-10-24 12:52:42 +0200245static inline int sector_in_part(struct hd_struct *part, sector_t sector)
246{
247 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200248 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200249}
250
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200251/**
252 * disk_map_sector_rcu - map sector to partition
253 * @disk: gendisk of interest
254 * @sector: sector to map
255 *
256 * Find out which partition @sector maps to on @disk. This is
257 * primarily used for stats accounting.
258 *
259 * CONTEXT:
260 * RCU read locked. The returned partition pointer is valid only
261 * while preemption is disabled.
262 *
263 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900264 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200265 */
266struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
267{
Tejun Heo540eed52008-08-25 19:56:15 +0900268 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200269 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200270 int i;
271
Tejun Heo540eed52008-08-25 19:56:15 +0900272 ptbl = rcu_dereference(disk->part_tbl);
273
Jens Axboea6f23652008-10-24 12:52:42 +0200274 part = rcu_dereference(ptbl->last_lookup);
275 if (part && sector_in_part(part, sector))
276 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200277
Jens Axboea6f23652008-10-24 12:52:42 +0200278 for (i = 1; i < ptbl->len; i++) {
279 part = rcu_dereference(ptbl->part[i]);
280
281 if (part && sector_in_part(part, sector)) {
282 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200283 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200284 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200285 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900286 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200287}
288EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/*
291 * Can be deleted altogether. Later.
292 *
293 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600294#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295static struct blk_major_name {
296 struct blk_major_name *next;
297 int major;
298 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800299} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100302static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Joe Korty68eef3b2006-03-31 02:30:32 -0800304 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Joe Korty68eef3b2006-03-31 02:30:32 -0800307#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200308void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800309{
Joe Korty68eef3b2006-03-31 02:30:32 -0800310 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800311
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600312 mutex_lock(&block_class_lock);
313 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
314 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200315 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600316 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
Joe Korty68eef3b2006-03-31 02:30:32 -0800318#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100320/**
321 * register_blkdev - register a new block device
322 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800323 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
324 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100325 * @name: the name of the new block device as a zero terminated string
326 *
327 * The @name must be unique within the system.
328 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300329 * The return value depends on the @major input parameter:
330 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800331 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
332 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300333 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100334 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800335 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
336 *
337 * See Documentation/admin-guide/devices.txt for the list of allocated
338 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100339 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340int register_blkdev(unsigned int major, const char *name)
341{
342 struct blk_major_name **n, *p;
343 int index, ret = 0;
344
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200345 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /* temporary */
348 if (major == 0) {
349 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
350 if (major_names[index] == NULL)
351 break;
352 }
353
354 if (index == 0) {
355 printk("register_blkdev: failed to get major for %s\n",
356 name);
357 ret = -EBUSY;
358 goto out;
359 }
360 major = index;
361 ret = major;
362 }
363
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600364 if (major >= BLKDEV_MAJOR_MAX) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800365 pr_err("register_blkdev: major requested (%u) is greater than the maximum (%u) for %s\n",
366 major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600367
368 ret = -EINVAL;
369 goto out;
370 }
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
373 if (p == NULL) {
374 ret = -ENOMEM;
375 goto out;
376 }
377
378 p->major = major;
379 strlcpy(p->name, name, sizeof(p->name));
380 p->next = NULL;
381 index = major_to_index(major);
382
383 for (n = &major_names[index]; *n; n = &(*n)->next) {
384 if ((*n)->major == major)
385 break;
386 }
387 if (!*n)
388 *n = p;
389 else
390 ret = -EBUSY;
391
392 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800393 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 major, name);
395 kfree(p);
396 }
397out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200398 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return ret;
400}
401
402EXPORT_SYMBOL(register_blkdev);
403
Akinobu Mitaf4480242007-07-17 04:03:47 -0700404void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 struct blk_major_name **n;
407 struct blk_major_name *p = NULL;
408 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200410 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 for (n = &major_names[index]; *n; n = &(*n)->next)
412 if ((*n)->major == major)
413 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700414 if (!*n || strcmp((*n)->name, name)) {
415 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700416 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 p = *n;
418 *n = p->next;
419 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200420 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424EXPORT_SYMBOL(unregister_blkdev);
425
426static struct kobj_map *bdev_map;
427
Tejun Heobcce3de2008-08-25 19:47:22 +0900428/**
Tejun Heo870d6652008-08-25 19:47:25 +0900429 * blk_mangle_minor - scatter minor numbers apart
430 * @minor: minor number to mangle
431 *
432 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
433 * is enabled. Mangling twice gives the original value.
434 *
435 * RETURNS:
436 * Mangled value.
437 *
438 * CONTEXT:
439 * Don't care.
440 */
441static int blk_mangle_minor(int minor)
442{
443#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
444 int i;
445
446 for (i = 0; i < MINORBITS / 2; i++) {
447 int low = minor & (1 << i);
448 int high = minor & (1 << (MINORBITS - 1 - i));
449 int distance = MINORBITS - 1 - 2 * i;
450
451 minor ^= low | high; /* clear both bits */
452 low <<= distance; /* swap the positions */
453 high >>= distance;
454 minor |= low | high; /* and set */
455 }
456#endif
457 return minor;
458}
459
460/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900461 * blk_alloc_devt - allocate a dev_t for a partition
462 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900463 * @devt: out parameter for resulting dev_t
464 *
465 * Allocate a dev_t for block device.
466 *
467 * RETURNS:
468 * 0 on success, allocated dev_t is returned in *@devt. -errno on
469 * failure.
470 *
471 * CONTEXT:
472 * Might sleep.
473 */
474int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
475{
476 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800477 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900478
479 /* in consecutive minor range? */
480 if (part->partno < disk->minors) {
481 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
482 return 0;
483 }
484
485 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600486 idr_preload(GFP_KERNEL);
487
Dan Williams4d66e5e2015-06-10 23:47:14 -0400488 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600489 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400490 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600491
492 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800493 if (idx < 0)
494 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900495
Tejun Heo870d6652008-08-25 19:47:25 +0900496 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900497 return 0;
498}
499
500/**
501 * blk_free_devt - free a dev_t
502 * @devt: dev_t to free
503 *
504 * Free @devt which was allocated using blk_alloc_devt().
505 *
506 * CONTEXT:
507 * Might sleep.
508 */
509void blk_free_devt(dev_t devt)
510{
Tejun Heobcce3de2008-08-25 19:47:22 +0900511 if (devt == MKDEV(0, 0))
512 return;
513
514 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400515 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900516 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400517 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900518 }
519}
520
Tejun Heo1f014292008-08-25 19:47:23 +0900521static char *bdevt_str(dev_t devt, char *buf)
522{
523 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
524 char tbuf[BDEVT_SIZE];
525 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
526 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
527 } else
528 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
529
530 return buf;
531}
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/*
534 * Register device numbers dev..(dev+range-1)
535 * range must be nonzero
536 * The hash chain is sorted on range, so that subranges can override.
537 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200538void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct kobject *(*probe)(dev_t, int *, void *),
540 int (*lock)(dev_t, void *), void *data)
541{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200542 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545EXPORT_SYMBOL(blk_register_region);
546
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200547void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200549 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
552EXPORT_SYMBOL(blk_unregister_region);
553
Tejun Heocf771cb2008-09-03 09:01:09 +0200554static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200557
Tejun Heoed9e1982008-08-25 19:56:05 +0900558 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200561static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 struct gendisk *p = data;
564
Jan Kara3079c222018-02-26 13:01:38 +0100565 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return -1;
567 return 0;
568}
569
Hannes Reineckefef912b2018-09-28 08:17:19 +0200570static void register_disk(struct device *parent, struct gendisk *disk,
571 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100572{
573 struct device *ddev = disk_to_dev(disk);
574 struct block_device *bdev;
575 struct disk_part_iter piter;
576 struct hd_struct *part;
577 int err;
578
Dan Williamse63a46b2016-06-15 18:17:27 -0700579 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100580
Kees Cookffc8b302013-07-03 15:01:14 -0700581 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100582
583 /* delay uevents, until we scanned partition table */
584 dev_set_uevent_suppress(ddev, 1);
585
Hannes Reineckefef912b2018-09-28 08:17:19 +0200586 if (groups) {
587 WARN_ON(ddev->groups);
588 ddev->groups = groups;
589 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100590 if (device_add(ddev))
591 return;
592 if (!sysfs_deprecated) {
593 err = sysfs_create_link(block_depr, &ddev->kobj,
594 kobject_name(&ddev->kobj));
595 if (err) {
596 device_del(ddev);
597 return;
598 }
599 }
Ming Lei25e823c2013-02-22 16:34:13 -0800600
601 /*
602 * avoid probable deadlock caused by allocating memory with
603 * GFP_KERNEL in runtime_resume callback of its all ancestor
604 * devices
605 */
606 pm_runtime_set_memalloc_noio(ddev, true);
607
Tejun Heod2bf1b62010-12-08 20:57:36 +0100608 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
609 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
610
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300611 if (disk->flags & GENHD_FL_HIDDEN) {
612 dev_set_uevent_suppress(ddev, 0);
613 return;
614 }
615
Tejun Heod2bf1b62010-12-08 20:57:36 +0100616 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200617 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100618 goto exit;
619
620 /* No such device (e.g., media were just removed) */
621 if (!get_capacity(disk))
622 goto exit;
623
624 bdev = bdget_disk(disk, 0);
625 if (!bdev)
626 goto exit;
627
628 bdev->bd_invalidated = 1;
629 err = blkdev_get(bdev, FMODE_READ, NULL);
630 if (err < 0)
631 goto exit;
632 blkdev_put(bdev, FMODE_READ);
633
634exit:
635 /* announce disk after possible partitions are created */
636 dev_set_uevent_suppress(ddev, 0);
637 kobject_uevent(&ddev->kobj, KOBJ_ADD);
638
639 /* announce possible partitions */
640 disk_part_iter_init(&piter, disk, 0);
641 while ((part = disk_part_iter_next(&piter)))
642 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
643 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300644
645 err = sysfs_create_link(&ddev->kobj,
646 &disk->queue->backing_dev_info->dev->kobj,
647 "bdi");
648 WARN_ON(err);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500652 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700653 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200655 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500656 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *
658 * This function registers the partitioning information in @disk
659 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900660 *
661 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500663static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200664 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500665 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900667 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400668 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700669
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900670 /* minors == 0 indicates to use ext devt from part0 and should
671 * be accompanied with EXT_DEVT flag. Make sure all
672 * parameters make sense.
673 */
674 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300675 WARN_ON(!disk->minors &&
676 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900679
680 retval = blk_alloc_devt(&disk->part0, &devt);
681 if (retval) {
682 WARN_ON(1);
683 return;
684 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900685 disk->major = MAJOR(devt);
686 disk->first_minor = MINOR(devt);
687
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100688 disk_alloc_events(disk);
689
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300690 if (disk->flags & GENHD_FL_HIDDEN) {
691 /*
692 * Don't let hidden disks show up in /proc/partitions,
693 * and don't bother scanning for partitions either.
694 */
695 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
696 disk->flags |= GENHD_FL_NO_PART_SCAN;
697 } else {
weiping zhang3a921682017-10-31 18:38:59 +0800698 int ret;
699
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300700 /* Register BDI before referencing it from bdev */
701 disk_to_dev(disk)->devt = devt;
weiping zhang3a921682017-10-31 18:38:59 +0800702 ret = bdi_register_owner(disk->queue->backing_dev_info,
703 disk_to_dev(disk));
704 WARN_ON(ret);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300705 blk_register_region(disk_devt(disk), disk->minors, NULL,
706 exact_match, exact_lock, disk);
707 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200708 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500709 if (register_queue)
710 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700711
Tejun Heo523e1d32011-10-19 14:31:07 +0200712 /*
713 * Take an extra ref on queue which will be put on disk_release()
714 * so that it sticks around as long as @disk is there.
715 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100716 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200717
Tejun Heo77ea8872010-12-08 20:57:37 +0100718 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400719 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500721
Hannes Reineckefef912b2018-09-28 08:17:19 +0200722void device_add_disk(struct device *parent, struct gendisk *disk,
723 const struct attribute_group **groups)
724
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500725{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200726 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500727}
Dan Williamse63a46b2016-06-15 18:17:27 -0700728EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500730void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
731{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200732 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500733}
734EXPORT_SYMBOL(device_add_disk_no_queue_reg);
735
Tejun Heod2bf1b62010-12-08 20:57:36 +0100736void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100738 struct disk_part_iter piter;
739 struct hd_struct *part;
740
Martin K. Petersen25520d52015-10-21 13:19:49 -0400741 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100742 disk_del_events(disk);
743
Jan Kara56c09082018-02-26 13:01:41 +0100744 /*
745 * Block lookups of the disk until all bdevs are unhashed and the
746 * disk is marked as dead (GENHD_FL_UP cleared).
747 */
748 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100749 /* invalidate stuff */
750 disk_part_iter_init(&piter, disk,
751 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
752 while ((part = disk_part_iter_next(&piter))) {
753 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100754 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100755 delete_partition(disk, part->partno);
756 }
757 disk_part_iter_exit(&piter);
758
759 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100760 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100761 set_capacity(disk, 0);
762 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100763 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100764
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300765 if (!(disk->flags & GENHD_FL_HIDDEN))
766 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100767 if (disk->queue) {
768 /*
769 * Unregister bdi before releasing device numbers (as they can
770 * get reused and we'd get clashes in sysfs).
771 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500772 if (!(disk->flags & GENHD_FL_HIDDEN))
773 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100774 blk_unregister_queue(disk);
775 } else {
776 WARN_ON(1);
777 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100778
Hannes Reinecke17eac092017-11-09 17:57:06 +0100779 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300780 blk_unregister_region(disk_devt(disk), disk->minors);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100781
782 kobject_put(disk->part0.holder_dir);
783 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900786 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100787 if (!sysfs_deprecated)
788 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800789 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100790 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100792EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Vishal Verma99e66082016-01-09 08:36:51 -0800794/* sysfs access to bad-blocks list. */
795static ssize_t disk_badblocks_show(struct device *dev,
796 struct device_attribute *attr,
797 char *page)
798{
799 struct gendisk *disk = dev_to_disk(dev);
800
801 if (!disk->bb)
802 return sprintf(page, "\n");
803
804 return badblocks_show(disk->bb, page, 0);
805}
806
807static ssize_t disk_badblocks_store(struct device *dev,
808 struct device_attribute *attr,
809 const char *page, size_t len)
810{
811 struct gendisk *disk = dev_to_disk(dev);
812
813 if (!disk->bb)
814 return -ENXIO;
815
816 return badblocks_store(disk->bb, page, len, 0);
817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/**
820 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200821 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200822 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 *
824 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200825 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200827struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Tejun Heobcce3de2008-08-25 19:47:22 +0900829 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200830
Tejun Heobcce3de2008-08-25 19:47:22 +0900831 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
832 struct kobject *kobj;
833
834 kobj = kobj_lookup(bdev_map, devt, partno);
835 if (kobj)
836 disk = dev_to_disk(kobj_to_dev(kobj));
837 } else {
838 struct hd_struct *part;
839
Dan Williams4d66e5e2015-06-10 23:47:14 -0400840 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900841 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +0100842 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +0900843 *partno = part->partno;
844 disk = part_to_disk(part);
845 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400846 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900847 }
848
Jan Kara56c09082018-02-26 13:01:41 +0100849 if (!disk)
850 return NULL;
851
852 /*
853 * Synchronize with del_gendisk() to not return disk that is being
854 * destroyed.
855 */
856 down_read(&disk->lookup_sem);
857 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
858 !(disk->flags & GENHD_FL_UP))) {
859 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +0100860 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300861 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +0100862 } else {
863 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300864 }
Tejun Heobcce3de2008-08-25 19:47:22 +0900865 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200867EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Tejun Heof331c022008-09-03 09:01:48 +0200869/**
870 * bdget_disk - do bdget() by gendisk and partition number
871 * @disk: gendisk of interest
872 * @partno: partition number
873 *
874 * Find partition @partno from @disk, do bdget() on it.
875 *
876 * CONTEXT:
877 * Don't care.
878 *
879 * RETURNS:
880 * Resulting block_device on success, NULL on failure.
881 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200882struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200883{
Tejun Heo548b10e2008-08-29 09:01:47 +0200884 struct hd_struct *part;
885 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200886
Tejun Heo548b10e2008-08-29 09:01:47 +0200887 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200888 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200889 bdev = bdget(part_devt(part));
890 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200891
Tejun Heo548b10e2008-08-29 09:01:47 +0200892 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200893}
894EXPORT_SYMBOL(bdget_disk);
895
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700896/*
897 * print a full list of all partitions - intended for places where the root
898 * filesystem can't be mounted and thus to give the victim some idea of what
899 * went wrong
900 */
901void __init printk_all_partitions(void)
902{
Tejun Heodef4e382008-09-03 08:57:12 +0200903 struct class_dev_iter iter;
904 struct device *dev;
905
906 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
907 while ((dev = class_dev_iter_next(&iter))) {
908 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200909 struct disk_part_iter piter;
910 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900911 char name_buf[BDEVNAME_SIZE];
912 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200913
914 /*
915 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300916 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200917 */
918 if (get_capacity(disk) == 0 ||
919 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
920 continue;
921
922 /*
923 * Note, unlike /proc/partitions, I am showing the
924 * numbers in hex - the same format as the root=
925 * option takes.
926 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900927 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
928 while ((part = disk_part_iter_next(&piter))) {
929 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200930
Will Drewryb5af9212010-08-31 15:47:07 -0500931 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900932 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200933 (unsigned long long)part_nr_sects_read(part) >> 1
934 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800935 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900936 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700937 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900938 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700939 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900940 else
941 printk(" (driver?)\n");
942 } else
943 printk("\n");
944 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200945 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200946 }
947 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700948}
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950#ifdef CONFIG_PROC_FS
951/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200952static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400953{
Tejun Heodef4e382008-09-03 08:57:12 +0200954 loff_t skip = *pos;
955 struct class_dev_iter *iter;
956 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400957
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200958 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +0200959 if (!iter)
960 return ERR_PTR(-ENOMEM);
961
962 seqf->private = iter;
963 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
964 do {
965 dev = class_dev_iter_next(iter);
966 if (!dev)
967 return NULL;
968 } while (skip--);
969
970 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400971}
972
Tejun Heodef4e382008-09-03 08:57:12 +0200973static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200975 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -0400976
Tejun Heodef4e382008-09-03 08:57:12 +0200977 (*pos)++;
978 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200979 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400980 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +0200981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return NULL;
983}
984
Tejun Heodef4e382008-09-03 08:57:12 +0200985static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400986{
Tejun Heodef4e382008-09-03 08:57:12 +0200987 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -0400988
Tejun Heodef4e382008-09-03 08:57:12 +0200989 /* stop is called even after start failed :-( */
990 if (iter) {
991 class_dev_iter_exit(iter);
992 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +0200993 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +0200994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
Tejun Heodef4e382008-09-03 08:57:12 +0200997static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Jianpeng Ma06768062012-08-03 10:42:00 +0200999 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001000
1001 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001002 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001003 seq_puts(seqf, "major minor #blocks name\n\n");
1004 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Tejun Heocf771cb2008-09-03 09:01:09 +02001007static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001010 struct disk_part_iter piter;
1011 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 char buf[BDEVNAME_SIZE];
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001015 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001016 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return 0;
1018 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1019 return 0;
1020
1021 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001022 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001023 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001024 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001025 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001026 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001027 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001028 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 return 0;
1031}
1032
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001033static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001034 .start = show_partition_start,
1035 .next = disk_seqf_next,
1036 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001037 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038};
1039#endif
1040
1041
Tejun Heocf771cb2008-09-03 09:01:09 +02001042static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001044 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001046 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return NULL;
1048}
1049
1050static int __init genhd_device_init(void)
1051{
Dan Williamse105b8b2008-04-21 10:51:07 -07001052 int error;
1053
1054 block_class.dev_kobj = sysfs_dev_block_kobj;
1055 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001056 if (unlikely(error))
1057 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001058 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001060
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001061 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1062
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001063 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001064 if (!sysfs_deprecated)
1065 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069subsys_initcall(genhd_device_init);
1070
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001071static ssize_t disk_range_show(struct device *dev,
1072 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001074 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001076 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Tejun Heo1f014292008-08-25 19:47:23 +09001079static ssize_t disk_ext_range_show(struct device *dev,
1080 struct device_attribute *attr, char *buf)
1081{
1082 struct gendisk *disk = dev_to_disk(dev);
1083
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001084 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001085}
1086
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001087static ssize_t disk_removable_show(struct device *dev,
1088 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001089{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001090 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001091
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001092 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001096static ssize_t disk_hidden_show(struct device *dev,
1097 struct device_attribute *attr, char *buf)
1098{
1099 struct gendisk *disk = dev_to_disk(dev);
1100
1101 return sprintf(buf, "%d\n",
1102 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1103}
1104
Kay Sievers1c9ce522008-06-13 09:41:00 +02001105static ssize_t disk_ro_show(struct device *dev,
1106 struct device_attribute *attr, char *buf)
1107{
1108 struct gendisk *disk = dev_to_disk(dev);
1109
Tejun Heob7db9952008-08-25 19:56:10 +09001110 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001111}
1112
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001113static ssize_t disk_capability_show(struct device *dev,
1114 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001115{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001116 struct gendisk *disk = dev_to_disk(dev);
1117
1118 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001119}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001120
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001121static ssize_t disk_alignment_offset_show(struct device *dev,
1122 struct device_attribute *attr,
1123 char *buf)
1124{
1125 struct gendisk *disk = dev_to_disk(dev);
1126
1127 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1128}
1129
Martin K. Petersen86b37282009-11-10 11:50:21 +01001130static ssize_t disk_discard_alignment_show(struct device *dev,
1131 struct device_attribute *attr,
1132 char *buf)
1133{
1134 struct gendisk *disk = dev_to_disk(dev);
1135
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001136 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001137}
1138
Joe Perches5657a812018-05-24 13:38:59 -06001139static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1140static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1141static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1142static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1143static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1144static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1145static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1146static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1147static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1148static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1149static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1150static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001151#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001152static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001153 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001154#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001155#ifdef CONFIG_FAIL_IO_TIMEOUT
1156static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001157 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001158#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001159
1160static struct attribute *disk_attrs[] = {
1161 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001162 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001163 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001164 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001165 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001166 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001167 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001168 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001169 &dev_attr_capability.attr,
1170 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001171 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001172 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001173#ifdef CONFIG_FAIL_MAKE_REQUEST
1174 &dev_attr_fail.attr,
1175#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001176#ifdef CONFIG_FAIL_IO_TIMEOUT
1177 &dev_attr_fail_timeout.attr,
1178#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001179 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180};
1181
Dan Williams9438b3e02017-04-27 14:46:26 -07001182static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1183{
1184 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1185 struct gendisk *disk = dev_to_disk(dev);
1186
1187 if (a == &dev_attr_badblocks.attr && !disk->bb)
1188 return 0;
1189 return a->mode;
1190}
1191
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001192static struct attribute_group disk_attr_group = {
1193 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001194 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001195};
1196
David Brownella4dbd672009-06-24 10:06:31 -07001197static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001198 &disk_attr_group,
1199 NULL
1200};
1201
Tejun Heo540eed52008-08-25 19:56:15 +09001202/**
1203 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1204 * @disk: disk to replace part_tbl for
1205 * @new_ptbl: new part_tbl to install
1206 *
1207 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1208 * original ptbl is freed using RCU callback.
1209 *
1210 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001211 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001212 */
1213static void disk_replace_part_tbl(struct gendisk *disk,
1214 struct disk_part_tbl *new_ptbl)
1215{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001216 struct disk_part_tbl *old_ptbl =
1217 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001218
1219 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001220
1221 if (old_ptbl) {
1222 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001223 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001224 }
Tejun Heo540eed52008-08-25 19:56:15 +09001225}
1226
1227/**
1228 * disk_expand_part_tbl - expand disk->part_tbl
1229 * @disk: disk to expand part_tbl for
1230 * @partno: expand such that this partno can fit in
1231 *
1232 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1233 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1234 *
1235 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001236 * Matching bd_mutex locked or the caller is the only user of @disk.
1237 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001238 *
1239 * RETURNS:
1240 * 0 on success, -errno on failure.
1241 */
1242int disk_expand_part_tbl(struct gendisk *disk, int partno)
1243{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001244 struct disk_part_tbl *old_ptbl =
1245 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001246 struct disk_part_tbl *new_ptbl;
1247 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001248 int i, target;
Tejun Heo540eed52008-08-25 19:56:15 +09001249 size_t size;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001250
1251 /*
1252 * check for int overflow, since we can get here from blkpg_ioctl()
1253 * with a user passed 'partno'.
1254 */
1255 target = partno + 1;
1256 if (target < 0)
1257 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001258
1259 /* disk_max_parts() is zero during initialization, ignore if so */
1260 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1261 return -EINVAL;
1262
1263 if (target <= len)
1264 return 0;
1265
1266 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
1267 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
1268 if (!new_ptbl)
1269 return -ENOMEM;
1270
Tejun Heo540eed52008-08-25 19:56:15 +09001271 new_ptbl->len = target;
1272
1273 for (i = 0; i < len; i++)
1274 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1275
1276 disk_replace_part_tbl(disk, new_ptbl);
1277 return 0;
1278}
1279
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001280static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001282 struct gendisk *disk = dev_to_disk(dev);
1283
Keith Busch2da78092014-08-26 09:05:36 -06001284 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001285 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001287 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001288 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001289 if (disk->queue)
1290 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 kfree(disk);
1292}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001293struct class block_class = {
1294 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295};
1296
Kay Sievers3c2670e2013-04-06 09:56:00 -07001297static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001298 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001299{
1300 struct gendisk *disk = dev_to_disk(dev);
1301
Kay Sieverse454cea2009-09-18 23:01:12 +02001302 if (disk->devnode)
1303 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001304 return NULL;
1305}
1306
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001307static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001308 .name = "disk",
1309 .groups = disk_attr_groups,
1310 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001311 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312};
1313
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001314#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001315/*
1316 * aggregate disk stat collector. Uses the same stats that the sysfs
1317 * entries do, above, but makes them available through one seq_file.
1318 *
1319 * The output looks suspiciously like /proc/partitions with a bunch of
1320 * extra fields.
1321 */
1322static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001325 struct disk_part_iter piter;
1326 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 char buf[BDEVNAME_SIZE];
Jens Axboe0609e0e2017-08-08 17:49:47 -06001328 unsigned int inflight[2];
Tejun Heoc9959052008-08-25 19:47:21 +09001329 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001332 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001333 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 " rio rmerge rsect ruse wio wmerge "
1335 "wsect wuse running use aveq"
1336 "\n\n");
1337 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001338
Tejun Heo71982a42009-04-17 08:34:48 +02001339 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001340 while ((hd = disk_part_iter_next(&piter))) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001341 cpu = part_stat_lock();
Jens Axboed62e26b2017-06-30 21:55:08 -06001342 part_round_stats(gp->queue, cpu, hd);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001343 part_stat_unlock();
Jens Axboe0609e0e2017-08-08 17:49:47 -06001344 part_in_flight(gp->queue, hd, inflight);
Michael Callahanbdca3c82018-07-18 04:47:40 -07001345 seq_printf(seqf, "%4d %7d %s "
1346 "%lu %lu %lu %u "
1347 "%lu %lu %lu %u "
1348 "%u %u %u "
1349 "%lu %lu %lu %u\n",
Tejun Heof331c022008-09-03 09:01:48 +02001350 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1351 disk_name(gp, hd->partno, buf),
Michael Callahandbae2c52018-07-18 04:47:38 -07001352 part_stat_read(hd, ios[STAT_READ]),
1353 part_stat_read(hd, merges[STAT_READ]),
1354 part_stat_read(hd, sectors[STAT_READ]),
1355 jiffies_to_msecs(part_stat_read(hd, ticks[STAT_READ])),
1356 part_stat_read(hd, ios[STAT_WRITE]),
1357 part_stat_read(hd, merges[STAT_WRITE]),
1358 part_stat_read(hd, sectors[STAT_WRITE]),
1359 jiffies_to_msecs(part_stat_read(hd, ticks[STAT_WRITE])),
Jens Axboe0609e0e2017-08-08 17:49:47 -06001360 inflight[0],
Jerome Marchand28f39d52008-02-08 11:04:56 +01001361 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
Michael Callahanbdca3c82018-07-18 04:47:40 -07001362 jiffies_to_msecs(part_stat_read(hd, time_in_queue)),
1363 part_stat_read(hd, ios[STAT_DISCARD]),
1364 part_stat_read(hd, merges[STAT_DISCARD]),
1365 part_stat_read(hd, sectors[STAT_DISCARD]),
1366 jiffies_to_msecs(part_stat_read(hd, ticks[STAT_DISCARD]))
Jerome Marchand28f39d52008-02-08 11:04:56 +01001367 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001369 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return 0;
1372}
1373
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001374static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001375 .start = disk_seqf_start,
1376 .next = disk_seqf_next,
1377 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 .show = diskstats_show
1379};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001380
1381static int __init proc_genhd_init(void)
1382{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001383 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1384 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001385 return 0;
1386}
1387module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001388#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Tejun Heocf771cb2008-09-03 09:01:09 +02001390dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001391{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001392 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001393 struct class_dev_iter iter;
1394 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001395
Tejun Heodef4e382008-09-03 08:57:12 +02001396 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1397 while ((dev = class_dev_iter_next(&iter))) {
1398 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001399 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001400
Kay Sievers3ada8b72009-01-06 10:44:43 -08001401 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001402 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001403
Neil Brown41b8c852009-02-18 10:33:59 +01001404 if (partno < disk->minors) {
1405 /* We need to return the right devno, even
1406 * if the partition doesn't exist yet.
1407 */
1408 devt = MKDEV(MAJOR(dev->devt),
1409 MINOR(dev->devt) + partno);
1410 break;
1411 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001412 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001413 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001414 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001415 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001416 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001417 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001418 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001419 }
Tejun Heodef4e382008-09-03 08:57:12 +02001420 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001421 return devt;
1422}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001423EXPORT_SYMBOL(blk_lookup_devt);
1424
Byungchul Parke319e1f2017-10-25 17:56:05 +09001425struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001426{
1427 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001428 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001429
Christoph Hellwigde65b012017-08-23 19:10:29 +02001430 if (minors > DISK_MAX_PARTS) {
1431 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001432 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001433 DISK_MAX_PARTS);
1434 minors = DISK_MAX_PARTS;
1435 }
Christoph Lameter19460892005-06-23 00:08:19 -07001436
Joe Perchesc1b511e2013-08-29 15:21:42 -07001437 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001439 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 kfree(disk);
1441 return NULL;
1442 }
Jan Kara56c09082018-02-26 13:01:41 +01001443 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001444 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001445 if (disk_expand_part_tbl(disk, 0)) {
1446 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001447 kfree(disk);
1448 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001450 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1451 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001452
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001453 /*
1454 * set_capacity() and get_capacity() currently don't use
1455 * seqcounter to read/update the part0->nr_sects. Still init
1456 * the counter as we can read the sectors in IO submission
1457 * patch using seqence counters.
1458 *
1459 * TODO: Ideally set_capacity() and get_capacity() should be
1460 * converted to make use of bd_mutex and sequence counters.
1461 */
1462 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001463 if (hd_ref_init(&disk->part0)) {
1464 hd_free_part(&disk->part0);
1465 kfree(disk);
1466 return NULL;
1467 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001471 disk_to_dev(disk)->class = &block_class;
1472 disk_to_dev(disk)->type = &disk_type;
1473 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
1475 return disk;
1476}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001477EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Jan Kara3079c222018-02-26 13:01:38 +01001479struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 struct module *owner;
1482 struct kobject *kobj;
1483
1484 if (!disk->fops)
1485 return NULL;
1486 owner = disk->fops->owner;
1487 if (owner && !try_module_get(owner))
1488 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001489 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (kobj == NULL) {
1491 module_put(owner);
1492 return NULL;
1493 }
1494 return kobj;
1495
1496}
Jan Kara3079c222018-02-26 13:01:38 +01001497EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499void put_disk(struct gendisk *disk)
1500{
1501 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001502 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504EXPORT_SYMBOL(put_disk);
1505
Jan Kara9df6c292018-02-26 13:01:39 +01001506/*
1507 * This is a counterpart of get_disk_and_module() and thus also of
1508 * get_gendisk().
1509 */
1510void put_disk_and_module(struct gendisk *disk)
1511{
1512 if (disk) {
1513 struct module *owner = disk->fops->owner;
1514
1515 put_disk(disk);
1516 module_put(owner);
1517 }
1518}
1519EXPORT_SYMBOL(put_disk_and_module);
1520
Hannes Reineckee3264a42009-07-28 09:13:13 +02001521static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1522{
1523 char event[] = "DISK_RO=1";
1524 char *envp[] = { event, NULL };
1525
1526 if (!ro)
1527 event[8] = '0';
1528 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1529}
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531void set_device_ro(struct block_device *bdev, int flag)
1532{
Tejun Heob7db9952008-08-25 19:56:10 +09001533 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
1536EXPORT_SYMBOL(set_device_ro);
1537
1538void set_disk_ro(struct gendisk *disk, int flag)
1539{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001540 struct disk_part_iter piter;
1541 struct hd_struct *part;
1542
Hannes Reineckee3264a42009-07-28 09:13:13 +02001543 if (disk->part0.policy != flag) {
1544 set_disk_ro_uevent(disk, flag);
1545 disk->part0.policy = flag;
1546 }
1547
1548 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001549 while ((part = disk_part_iter_next(&piter)))
1550 part->policy = flag;
1551 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
1554EXPORT_SYMBOL(set_disk_ro);
1555
1556int bdev_read_only(struct block_device *bdev)
1557{
1558 if (!bdev)
1559 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001560 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563EXPORT_SYMBOL(bdev_read_only);
1564
Tejun Heocf771cb2008-09-03 09:01:09 +02001565int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001568 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001570 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001571 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 bdput(bdev);
1573 }
1574 return res;
1575}
1576
1577EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001578
1579/*
1580 * Disk events - monitor disk events like media change and eject request.
1581 */
1582struct disk_events {
1583 struct list_head node; /* all disk_event's */
1584 struct gendisk *disk; /* the associated disk */
1585 spinlock_t lock;
1586
Tejun Heofdd514e2011-06-09 20:43:59 +02001587 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001588 int block; /* event blocking depth */
1589 unsigned int pending; /* events already sent out */
1590 unsigned int clearing; /* events being cleared */
1591
1592 long poll_msecs; /* interval, -1 for default */
1593 struct delayed_work dwork;
1594};
1595
1596static const char *disk_events_strs[] = {
1597 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1598 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1599};
1600
1601static char *disk_uevents[] = {
1602 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1603 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1604};
1605
1606/* list of all disk_events */
1607static DEFINE_MUTEX(disk_events_mutex);
1608static LIST_HEAD(disk_events);
1609
1610/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001611static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001612
1613static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1614{
1615 struct disk_events *ev = disk->ev;
1616 long intv_msecs = 0;
1617
1618 /*
1619 * If device-specific poll interval is set, always use it. If
1620 * the default is being used, poll iff there are events which
1621 * can't be monitored asynchronously.
1622 */
1623 if (ev->poll_msecs >= 0)
1624 intv_msecs = ev->poll_msecs;
1625 else if (disk->events & ~disk->async_events)
1626 intv_msecs = disk_events_dfl_poll_msecs;
1627
1628 return msecs_to_jiffies(intv_msecs);
1629}
1630
Tejun Heoc3af54a2011-06-09 20:43:55 +02001631/**
1632 * disk_block_events - block and flush disk event checking
1633 * @disk: disk to block events for
1634 *
1635 * On return from this function, it is guaranteed that event checking
1636 * isn't in progress and won't happen until unblocked by
1637 * disk_unblock_events(). Events blocking is counted and the actual
1638 * unblocking happens after the matching number of unblocks are done.
1639 *
1640 * Note that this intentionally does not block event checking from
1641 * disk_clear_events().
1642 *
1643 * CONTEXT:
1644 * Might sleep.
1645 */
1646void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001647{
1648 struct disk_events *ev = disk->ev;
1649 unsigned long flags;
1650 bool cancel;
1651
Tejun Heoc3af54a2011-06-09 20:43:55 +02001652 if (!ev)
1653 return;
1654
Tejun Heofdd514e2011-06-09 20:43:59 +02001655 /*
1656 * Outer mutex ensures that the first blocker completes canceling
1657 * the event work before further blockers are allowed to finish.
1658 */
1659 mutex_lock(&ev->block_mutex);
1660
Tejun Heo77ea8872010-12-08 20:57:37 +01001661 spin_lock_irqsave(&ev->lock, flags);
1662 cancel = !ev->block++;
1663 spin_unlock_irqrestore(&ev->lock, flags);
1664
Tejun Heoc3af54a2011-06-09 20:43:55 +02001665 if (cancel)
1666 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001667
1668 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001669}
1670
1671static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1672{
1673 struct disk_events *ev = disk->ev;
1674 unsigned long intv;
1675 unsigned long flags;
1676
1677 spin_lock_irqsave(&ev->lock, flags);
1678
1679 if (WARN_ON_ONCE(ev->block <= 0))
1680 goto out_unlock;
1681
1682 if (--ev->block)
1683 goto out_unlock;
1684
Tejun Heo77ea8872010-12-08 20:57:37 +01001685 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001686 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301687 queue_delayed_work(system_freezable_power_efficient_wq,
1688 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001689 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301690 queue_delayed_work(system_freezable_power_efficient_wq,
1691 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001692out_unlock:
1693 spin_unlock_irqrestore(&ev->lock, flags);
1694}
1695
1696/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001697 * disk_unblock_events - unblock disk event checking
1698 * @disk: disk to unblock events for
1699 *
1700 * Undo disk_block_events(). When the block count reaches zero, it
1701 * starts events polling if configured.
1702 *
1703 * CONTEXT:
1704 * Don't care. Safe to call from irq context.
1705 */
1706void disk_unblock_events(struct gendisk *disk)
1707{
1708 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001709 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001710}
1711
1712/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001713 * disk_flush_events - schedule immediate event checking and flushing
1714 * @disk: disk to check and flush events for
1715 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001716 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001717 * Schedule immediate event checking on @disk if not blocked. Events in
1718 * @mask are scheduled to be cleared from the driver. Note that this
1719 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001720 *
1721 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001722 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001723 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001724void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001725{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001726 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001727
1728 if (!ev)
1729 return;
1730
Tejun Heo85ef06d2011-07-01 16:17:47 +02001731 spin_lock_irq(&ev->lock);
1732 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001733 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301734 mod_delayed_work(system_freezable_power_efficient_wq,
1735 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001736 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001737}
Tejun Heo77ea8872010-12-08 20:57:37 +01001738
1739/**
1740 * disk_clear_events - synchronously check, clear and return pending events
1741 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001742 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001743 *
1744 * Disk events are synchronously checked and pending events in @mask
1745 * are cleared and returned. This ignores the block count.
1746 *
1747 * CONTEXT:
1748 * Might sleep.
1749 */
1750unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1751{
1752 const struct block_device_operations *bdops = disk->fops;
1753 struct disk_events *ev = disk->ev;
1754 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001755 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001756
1757 if (!ev) {
1758 /* for drivers still using the old ->media_changed method */
1759 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1760 bdops->media_changed && bdops->media_changed(disk))
1761 return DISK_EVENT_MEDIA_CHANGE;
1762 return 0;
1763 }
1764
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001765 disk_block_events(disk);
1766
1767 /*
1768 * store the union of mask and ev->clearing on the stack so that the
1769 * race with disk_flush_events does not cause ambiguity (ev->clearing
1770 * can still be modified even if events are blocked).
1771 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001772 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001773 clearing |= ev->clearing;
1774 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001775 spin_unlock_irq(&ev->lock);
1776
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001777 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001778 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001779 * if ev->clearing is not 0, the disk_flush_events got called in the
1780 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001781 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001782 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001783
1784 /* then, fetch and clear pending events */
1785 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001786 pending = ev->pending & mask;
1787 ev->pending &= ~mask;
1788 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001789 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001790
1791 return pending;
1792}
1793
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001794/*
1795 * Separate this part out so that a different pointer for clearing_ptr can be
1796 * passed in for disk_clear_events.
1797 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001798static void disk_events_workfn(struct work_struct *work)
1799{
1800 struct delayed_work *dwork = to_delayed_work(work);
1801 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001802
1803 disk_check_events(ev, &ev->clearing);
1804}
1805
1806static void disk_check_events(struct disk_events *ev,
1807 unsigned int *clearing_ptr)
1808{
Tejun Heo77ea8872010-12-08 20:57:37 +01001809 struct gendisk *disk = ev->disk;
1810 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001811 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001812 unsigned int events;
1813 unsigned long intv;
1814 int nr_events = 0, i;
1815
1816 /* check events */
1817 events = disk->fops->check_events(disk, clearing);
1818
1819 /* accumulate pending events and schedule next poll if necessary */
1820 spin_lock_irq(&ev->lock);
1821
1822 events &= ~ev->pending;
1823 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001824 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001825
1826 intv = disk_events_poll_jiffies(disk);
1827 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301828 queue_delayed_work(system_freezable_power_efficient_wq,
1829 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001830
1831 spin_unlock_irq(&ev->lock);
1832
Tejun Heo7c88a162011-04-21 19:43:58 +02001833 /*
1834 * Tell userland about new events. Only the events listed in
1835 * @disk->events are reported. Unlisted events are processed the
1836 * same internally but never get reported to userland.
1837 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001838 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Tejun Heo7c88a162011-04-21 19:43:58 +02001839 if (events & disk->events & (1 << i))
Tejun Heo77ea8872010-12-08 20:57:37 +01001840 envp[nr_events++] = disk_uevents[i];
1841
1842 if (nr_events)
1843 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1844}
1845
1846/*
1847 * A disk events enabled device has the following sysfs nodes under
1848 * its /sys/block/X/ directory.
1849 *
1850 * events : list of all supported events
1851 * events_async : list of events which can be detected w/o polling
1852 * events_poll_msecs : polling interval, 0: disable, -1: system default
1853 */
1854static ssize_t __disk_events_show(unsigned int events, char *buf)
1855{
1856 const char *delim = "";
1857 ssize_t pos = 0;
1858 int i;
1859
1860 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1861 if (events & (1 << i)) {
1862 pos += sprintf(buf + pos, "%s%s",
1863 delim, disk_events_strs[i]);
1864 delim = " ";
1865 }
1866 if (pos)
1867 pos += sprintf(buf + pos, "\n");
1868 return pos;
1869}
1870
1871static ssize_t disk_events_show(struct device *dev,
1872 struct device_attribute *attr, char *buf)
1873{
1874 struct gendisk *disk = dev_to_disk(dev);
1875
1876 return __disk_events_show(disk->events, buf);
1877}
1878
1879static ssize_t disk_events_async_show(struct device *dev,
1880 struct device_attribute *attr, char *buf)
1881{
1882 struct gendisk *disk = dev_to_disk(dev);
1883
1884 return __disk_events_show(disk->async_events, buf);
1885}
1886
1887static ssize_t disk_events_poll_msecs_show(struct device *dev,
1888 struct device_attribute *attr,
1889 char *buf)
1890{
1891 struct gendisk *disk = dev_to_disk(dev);
1892
1893 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1894}
1895
1896static ssize_t disk_events_poll_msecs_store(struct device *dev,
1897 struct device_attribute *attr,
1898 const char *buf, size_t count)
1899{
1900 struct gendisk *disk = dev_to_disk(dev);
1901 long intv;
1902
1903 if (!count || !sscanf(buf, "%ld", &intv))
1904 return -EINVAL;
1905
1906 if (intv < 0 && intv != -1)
1907 return -EINVAL;
1908
Tejun Heoc3af54a2011-06-09 20:43:55 +02001909 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001910 disk->ev->poll_msecs = intv;
1911 __disk_unblock_events(disk, true);
1912
1913 return count;
1914}
1915
Joe Perches5657a812018-05-24 13:38:59 -06001916static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
1917static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
1918static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01001919 disk_events_poll_msecs_show,
1920 disk_events_poll_msecs_store);
1921
1922static const struct attribute *disk_events_attrs[] = {
1923 &dev_attr_events.attr,
1924 &dev_attr_events_async.attr,
1925 &dev_attr_events_poll_msecs.attr,
1926 NULL,
1927};
1928
1929/*
1930 * The default polling interval can be specified by the kernel
1931 * parameter block.events_dfl_poll_msecs which defaults to 0
1932 * (disable). This can also be modified runtime by writing to
1933 * /sys/module/block/events_dfl_poll_msecs.
1934 */
1935static int disk_events_set_dfl_poll_msecs(const char *val,
1936 const struct kernel_param *kp)
1937{
1938 struct disk_events *ev;
1939 int ret;
1940
1941 ret = param_set_ulong(val, kp);
1942 if (ret < 0)
1943 return ret;
1944
1945 mutex_lock(&disk_events_mutex);
1946
1947 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02001948 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001949
1950 mutex_unlock(&disk_events_mutex);
1951
1952 return 0;
1953}
1954
1955static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
1956 .set = disk_events_set_dfl_poll_msecs,
1957 .get = param_get_ulong,
1958};
1959
1960#undef MODULE_PARAM_PREFIX
1961#define MODULE_PARAM_PREFIX "block."
1962
1963module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
1964 &disk_events_dfl_poll_msecs, 0644);
1965
1966/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001967 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01001968 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001969static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001970{
1971 struct disk_events *ev;
1972
Tejun Heo75e3f3e2011-05-26 21:06:50 +02001973 if (!disk->fops->check_events)
Tejun Heo77ea8872010-12-08 20:57:37 +01001974 return;
1975
1976 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1977 if (!ev) {
1978 pr_warn("%s: failed to initialize events\n", disk->disk_name);
1979 return;
1980 }
1981
Tejun Heo77ea8872010-12-08 20:57:37 +01001982 INIT_LIST_HEAD(&ev->node);
1983 ev->disk = disk;
1984 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02001985 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001986 ev->block = 1;
1987 ev->poll_msecs = -1;
1988 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
1989
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01001990 disk->ev = ev;
1991}
1992
1993static void disk_add_events(struct gendisk *disk)
1994{
1995 if (!disk->ev)
1996 return;
1997
1998 /* FIXME: error handling */
1999 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2000 pr_warn("%s: failed to create sysfs files for events\n",
2001 disk->disk_name);
2002
Tejun Heo77ea8872010-12-08 20:57:37 +01002003 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002004 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002005 mutex_unlock(&disk_events_mutex);
2006
2007 /*
2008 * Block count is initialized to 1 and the following initial
2009 * unblock kicks it into action.
2010 */
2011 __disk_unblock_events(disk, true);
2012}
2013
2014static void disk_del_events(struct gendisk *disk)
2015{
2016 if (!disk->ev)
2017 return;
2018
Tejun Heoc3af54a2011-06-09 20:43:55 +02002019 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002020
2021 mutex_lock(&disk_events_mutex);
2022 list_del_init(&disk->ev->node);
2023 mutex_unlock(&disk_events_mutex);
2024
2025 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2026}
2027
2028static void disk_release_events(struct gendisk *disk)
2029{
2030 /* the block count should be 1 from disk_del_events() */
2031 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2032 kfree(disk->ev);
2033}