blob: ff6268970ddc069f84b3977069cca72ba10627c6 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * gendisk handling
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/module.h>
7#include <linux/fs.h>
8#include <linux/genhd.h>
Andrew Mortonb446b602007-02-20 13:57:48 -08009#include <linux/kdev_t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
11#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040012#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/spinlock.h>
Alexey Dobriyanf5009752008-10-04 23:53:21 +040015#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/seq_file.h>
17#include <linux/slab.h>
18#include <linux/kmod.h>
19#include <linux/kobj_map.h>
Jes Sorensen58383af2006-02-06 14:12:43 -080020#include <linux/mutex.h>
Tejun Heobcce3de2008-08-25 19:47:22 +090021#include <linux/idr.h>
Tejun Heo77ea8872010-12-08 20:57:37 +010022#include <linux/log2.h>
Ming Lei25e823c2013-02-22 16:34:13 -080023#include <linux/pm_runtime.h>
Vishal Verma99e66082016-01-09 08:36:51 -080024#include <linux/badblocks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Adrian Bunkff889722008-03-04 11:23:45 +010026#include "blk.h"
27
Kay Sieversedfaa7c2007-05-21 22:08:01 +020028static DEFINE_MUTEX(block_class_lock);
Kay Sieversedfaa7c2007-05-21 22:08:01 +020029struct kobject *block_depr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Tejun Heobcce3de2008-08-25 19:47:22 +090031/* for extended dynamic devt allocation, currently only one major is used */
Tejun Heoce23bba2013-02-27 17:03:56 -080032#define NR_EXT_DEVT (1 << MINORBITS)
Tejun Heobcce3de2008-08-25 19:47:22 +090033
Keith Busch2da78092014-08-26 09:05:36 -060034/* For extended devt allocation. ext_devt_lock prevents look up
Tejun Heobcce3de2008-08-25 19:47:22 +090035 * results from going away underneath its user.
36 */
Keith Busch2da78092014-08-26 09:05:36 -060037static DEFINE_SPINLOCK(ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +090038static DEFINE_IDR(ext_devt_idr);
39
Bart Van Asscheedf8ff52017-06-20 11:15:48 -070040static const struct device_type disk_type;
Adrian Bunk1826ead2008-03-04 11:23:46 +010041
Derek Basehore12c2bdb2012-12-18 12:27:20 -080042static void disk_check_events(struct disk_events *ev,
43 unsigned int *clearing_ptr);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +010044static void disk_alloc_events(struct gendisk *disk);
Tejun Heo77ea8872010-12-08 20:57:37 +010045static void disk_add_events(struct gendisk *disk);
46static void disk_del_events(struct gendisk *disk);
47static void disk_release_events(struct gendisk *disk);
48
Jens Axboef299b7c2017-08-08 17:51:45 -060049void part_inc_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
50{
Jens Axboe344e9ff2018-11-15 12:22:51 -070051 if (queue_is_mq(q))
Jens Axboef299b7c2017-08-08 17:51:45 -060052 return;
53
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050054 part_stat_local_inc(part, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060055 if (part->partno)
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050056 part_stat_local_inc(&part_to_disk(part)->part0, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060057}
58
59void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
60{
Jens Axboe344e9ff2018-11-15 12:22:51 -070061 if (queue_is_mq(q))
Jens Axboef299b7c2017-08-08 17:51:45 -060062 return;
63
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050064 part_stat_local_dec(part, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060065 if (part->partno)
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050066 part_stat_local_dec(&part_to_disk(part)->part0, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -060067}
68
Mikulas Patockae016b782018-12-06 11:41:21 -050069unsigned int part_in_flight(struct request_queue *q, struct hd_struct *part)
Jens Axboef299b7c2017-08-08 17:51:45 -060070{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050071 int cpu;
Mikulas Patockae016b782018-12-06 11:41:21 -050072 unsigned int inflight;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050073
Jens Axboe344e9ff2018-11-15 12:22:51 -070074 if (queue_is_mq(q)) {
Mikulas Patockae016b782018-12-06 11:41:21 -050075 return blk_mq_in_flight(q, part);
Jens Axboef299b7c2017-08-08 17:51:45 -060076 }
77
Mikulas Patockae016b782018-12-06 11:41:21 -050078 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050079 for_each_possible_cpu(cpu) {
Mikulas Patockae016b782018-12-06 11:41:21 -050080 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
81 part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050082 }
Mikulas Patockae016b782018-12-06 11:41:21 -050083 if ((int)inflight < 0)
84 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050085
Mikulas Patockae016b782018-12-06 11:41:21 -050086 return inflight;
Jens Axboef299b7c2017-08-08 17:51:45 -060087}
88
Omar Sandovalbf0ddab2018-04-26 00:21:59 -070089void part_in_flight_rw(struct request_queue *q, struct hd_struct *part,
90 unsigned int inflight[2])
91{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050092 int cpu;
93
Jens Axboe344e9ff2018-11-15 12:22:51 -070094 if (queue_is_mq(q)) {
Omar Sandovalbf0ddab2018-04-26 00:21:59 -070095 blk_mq_in_flight_rw(q, part, inflight);
96 return;
97 }
98
Mikulas Patocka1226b8d2018-12-06 11:41:20 -050099 inflight[0] = 0;
100 inflight[1] = 0;
101 for_each_possible_cpu(cpu) {
102 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
103 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
104 }
105 if ((int)inflight[0] < 0)
106 inflight[0] = 0;
107 if ((int)inflight[1] < 0)
108 inflight[1] = 0;
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700109}
110
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200111struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
112{
113 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
114
115 if (unlikely(partno < 0 || partno >= ptbl->len))
116 return NULL;
117 return rcu_dereference(ptbl->part[partno]);
118}
119
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200120/**
121 * disk_get_part - get partition
122 * @disk: disk to look partition from
123 * @partno: partition number
124 *
125 * Look for partition @partno from @disk. If found, increment
126 * reference count and return it.
127 *
128 * CONTEXT:
129 * Don't care.
130 *
131 * RETURNS:
132 * Pointer to the found partition on success, NULL if not found.
133 */
134struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
135{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200136 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900137
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200138 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200139 part = __disk_get_part(disk, partno);
140 if (part)
141 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200142 rcu_read_unlock();
143
144 return part;
145}
146EXPORT_SYMBOL_GPL(disk_get_part);
147
148/**
149 * disk_part_iter_init - initialize partition iterator
150 * @piter: iterator to initialize
151 * @disk: disk to iterate over
152 * @flags: DISK_PITER_* flags
153 *
154 * Initialize @piter so that it iterates over partitions of @disk.
155 *
156 * CONTEXT:
157 * Don't care.
158 */
159void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
160 unsigned int flags)
161{
Tejun Heo540eed52008-08-25 19:56:15 +0900162 struct disk_part_tbl *ptbl;
163
164 rcu_read_lock();
165 ptbl = rcu_dereference(disk->part_tbl);
166
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200167 piter->disk = disk;
168 piter->part = NULL;
169
170 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900171 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200172 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200173 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200174 else
175 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200176
177 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900178
179 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200180}
181EXPORT_SYMBOL_GPL(disk_part_iter_init);
182
183/**
184 * disk_part_iter_next - proceed iterator to the next partition and return it
185 * @piter: iterator of interest
186 *
187 * Proceed @piter to the next partition and return it.
188 *
189 * CONTEXT:
190 * Don't care.
191 */
192struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
193{
Tejun Heo540eed52008-08-25 19:56:15 +0900194 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200195 int inc, end;
196
197 /* put the last partition */
198 disk_put_part(piter->part);
199 piter->part = NULL;
200
Tejun Heo540eed52008-08-25 19:56:15 +0900201 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200202 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900203 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200204
205 /* determine iteration parameters */
206 if (piter->flags & DISK_PITER_REVERSE) {
207 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200208 if (piter->flags & (DISK_PITER_INCL_PART0 |
209 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200210 end = -1;
211 else
212 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200213 } else {
214 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900215 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200216 }
217
218 /* iterate to the next partition */
219 for (; piter->idx != end; piter->idx += inc) {
220 struct hd_struct *part;
221
Tejun Heo540eed52008-08-25 19:56:15 +0900222 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200223 if (!part)
224 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200225 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200226 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
227 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
228 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200229 continue;
230
Tejun Heoed9e1982008-08-25 19:56:05 +0900231 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200232 piter->part = part;
233 piter->idx += inc;
234 break;
235 }
236
237 rcu_read_unlock();
238
239 return piter->part;
240}
241EXPORT_SYMBOL_GPL(disk_part_iter_next);
242
243/**
244 * disk_part_iter_exit - finish up partition iteration
245 * @piter: iter of interest
246 *
247 * Called when iteration is over. Cleans up @piter.
248 *
249 * CONTEXT:
250 * Don't care.
251 */
252void disk_part_iter_exit(struct disk_part_iter *piter)
253{
254 disk_put_part(piter->part);
255 piter->part = NULL;
256}
257EXPORT_SYMBOL_GPL(disk_part_iter_exit);
258
Jens Axboea6f23652008-10-24 12:52:42 +0200259static inline int sector_in_part(struct hd_struct *part, sector_t sector)
260{
261 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200262 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200263}
264
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200265/**
266 * disk_map_sector_rcu - map sector to partition
267 * @disk: gendisk of interest
268 * @sector: sector to map
269 *
270 * Find out which partition @sector maps to on @disk. This is
271 * primarily used for stats accounting.
272 *
273 * CONTEXT:
274 * RCU read locked. The returned partition pointer is valid only
275 * while preemption is disabled.
276 *
277 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900278 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200279 */
280struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
281{
Tejun Heo540eed52008-08-25 19:56:15 +0900282 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200283 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200284 int i;
285
Tejun Heo540eed52008-08-25 19:56:15 +0900286 ptbl = rcu_dereference(disk->part_tbl);
287
Jens Axboea6f23652008-10-24 12:52:42 +0200288 part = rcu_dereference(ptbl->last_lookup);
289 if (part && sector_in_part(part, sector))
290 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200291
Jens Axboea6f23652008-10-24 12:52:42 +0200292 for (i = 1; i < ptbl->len; i++) {
293 part = rcu_dereference(ptbl->part[i]);
294
295 if (part && sector_in_part(part, sector)) {
296 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200297 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200298 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200299 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900300 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200301}
302EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
305 * Can be deleted altogether. Later.
306 *
307 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600308#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309static struct blk_major_name {
310 struct blk_major_name *next;
311 int major;
312 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800313} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100316static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Joe Korty68eef3b2006-03-31 02:30:32 -0800318 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Joe Korty68eef3b2006-03-31 02:30:32 -0800321#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200322void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800323{
Joe Korty68eef3b2006-03-31 02:30:32 -0800324 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800325
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600326 mutex_lock(&block_class_lock);
327 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
328 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200329 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600330 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
Joe Korty68eef3b2006-03-31 02:30:32 -0800332#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100334/**
335 * register_blkdev - register a new block device
336 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800337 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
338 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100339 * @name: the name of the new block device as a zero terminated string
340 *
341 * The @name must be unique within the system.
342 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300343 * The return value depends on the @major input parameter:
344 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800345 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
346 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300347 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100348 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800349 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
350 *
351 * See Documentation/admin-guide/devices.txt for the list of allocated
352 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100353 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354int register_blkdev(unsigned int major, const char *name)
355{
356 struct blk_major_name **n, *p;
357 int index, ret = 0;
358
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200359 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* temporary */
362 if (major == 0) {
363 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
364 if (major_names[index] == NULL)
365 break;
366 }
367
368 if (index == 0) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500369 printk("%s: failed to get major for %s\n",
370 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ret = -EBUSY;
372 goto out;
373 }
374 major = index;
375 ret = major;
376 }
377
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600378 if (major >= BLKDEV_MAJOR_MAX) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500379 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
380 __func__, major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600381
382 ret = -EINVAL;
383 goto out;
384 }
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
387 if (p == NULL) {
388 ret = -ENOMEM;
389 goto out;
390 }
391
392 p->major = major;
393 strlcpy(p->name, name, sizeof(p->name));
394 p->next = NULL;
395 index = major_to_index(major);
396
397 for (n = &major_names[index]; *n; n = &(*n)->next) {
398 if ((*n)->major == major)
399 break;
400 }
401 if (!*n)
402 *n = p;
403 else
404 ret = -EBUSY;
405
406 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800407 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 major, name);
409 kfree(p);
410 }
411out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200412 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return ret;
414}
415
416EXPORT_SYMBOL(register_blkdev);
417
Akinobu Mitaf4480242007-07-17 04:03:47 -0700418void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct blk_major_name **n;
421 struct blk_major_name *p = NULL;
422 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200424 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 for (n = &major_names[index]; *n; n = &(*n)->next)
426 if ((*n)->major == major)
427 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700428 if (!*n || strcmp((*n)->name, name)) {
429 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700430 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 p = *n;
432 *n = p->next;
433 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200434 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438EXPORT_SYMBOL(unregister_blkdev);
439
440static struct kobj_map *bdev_map;
441
Tejun Heobcce3de2008-08-25 19:47:22 +0900442/**
Tejun Heo870d6652008-08-25 19:47:25 +0900443 * blk_mangle_minor - scatter minor numbers apart
444 * @minor: minor number to mangle
445 *
446 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
447 * is enabled. Mangling twice gives the original value.
448 *
449 * RETURNS:
450 * Mangled value.
451 *
452 * CONTEXT:
453 * Don't care.
454 */
455static int blk_mangle_minor(int minor)
456{
457#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
458 int i;
459
460 for (i = 0; i < MINORBITS / 2; i++) {
461 int low = minor & (1 << i);
462 int high = minor & (1 << (MINORBITS - 1 - i));
463 int distance = MINORBITS - 1 - 2 * i;
464
465 minor ^= low | high; /* clear both bits */
466 low <<= distance; /* swap the positions */
467 high >>= distance;
468 minor |= low | high; /* and set */
469 }
470#endif
471 return minor;
472}
473
474/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900475 * blk_alloc_devt - allocate a dev_t for a partition
476 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900477 * @devt: out parameter for resulting dev_t
478 *
479 * Allocate a dev_t for block device.
480 *
481 * RETURNS:
482 * 0 on success, allocated dev_t is returned in *@devt. -errno on
483 * failure.
484 *
485 * CONTEXT:
486 * Might sleep.
487 */
488int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
489{
490 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800491 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900492
493 /* in consecutive minor range? */
494 if (part->partno < disk->minors) {
495 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
496 return 0;
497 }
498
499 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600500 idr_preload(GFP_KERNEL);
501
Dan Williams4d66e5e2015-06-10 23:47:14 -0400502 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600503 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400504 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600505
506 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800507 if (idx < 0)
508 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900509
Tejun Heo870d6652008-08-25 19:47:25 +0900510 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900511 return 0;
512}
513
514/**
515 * blk_free_devt - free a dev_t
516 * @devt: dev_t to free
517 *
518 * Free @devt which was allocated using blk_alloc_devt().
519 *
520 * CONTEXT:
521 * Might sleep.
522 */
523void blk_free_devt(dev_t devt)
524{
Tejun Heobcce3de2008-08-25 19:47:22 +0900525 if (devt == MKDEV(0, 0))
526 return;
527
528 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400529 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900530 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400531 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900532 }
533}
534
Bart Van Assche33c826e2019-05-30 17:00:47 -0700535/*
536 * We invalidate devt by assigning NULL pointer for devt in idr.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800537 */
538void blk_invalidate_devt(dev_t devt)
539{
540 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
541 spin_lock_bh(&ext_devt_lock);
542 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
543 spin_unlock_bh(&ext_devt_lock);
544 }
545}
546
Tejun Heo1f014292008-08-25 19:47:23 +0900547static char *bdevt_str(dev_t devt, char *buf)
548{
549 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
550 char tbuf[BDEVT_SIZE];
551 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
552 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
553 } else
554 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
555
556 return buf;
557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/*
560 * Register device numbers dev..(dev+range-1)
561 * range must be nonzero
562 * The hash chain is sorted on range, so that subranges can override.
563 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200564void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct kobject *(*probe)(dev_t, int *, void *),
566 int (*lock)(dev_t, void *), void *data)
567{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200568 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571EXPORT_SYMBOL(blk_register_region);
572
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200573void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200575 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578EXPORT_SYMBOL(blk_unregister_region);
579
Tejun Heocf771cb2008-09-03 09:01:09 +0200580static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200583
Tejun Heoed9e1982008-08-25 19:56:05 +0900584 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200587static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct gendisk *p = data;
590
Jan Kara3079c222018-02-26 13:01:38 +0100591 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return -1;
593 return 0;
594}
595
Hannes Reineckefef912b2018-09-28 08:17:19 +0200596static void register_disk(struct device *parent, struct gendisk *disk,
597 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100598{
599 struct device *ddev = disk_to_dev(disk);
600 struct block_device *bdev;
601 struct disk_part_iter piter;
602 struct hd_struct *part;
603 int err;
604
Dan Williamse63a46b2016-06-15 18:17:27 -0700605 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100606
Kees Cookffc8b302013-07-03 15:01:14 -0700607 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100608
609 /* delay uevents, until we scanned partition table */
610 dev_set_uevent_suppress(ddev, 1);
611
Hannes Reineckefef912b2018-09-28 08:17:19 +0200612 if (groups) {
613 WARN_ON(ddev->groups);
614 ddev->groups = groups;
615 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100616 if (device_add(ddev))
617 return;
618 if (!sysfs_deprecated) {
619 err = sysfs_create_link(block_depr, &ddev->kobj,
620 kobject_name(&ddev->kobj));
621 if (err) {
622 device_del(ddev);
623 return;
624 }
625 }
Ming Lei25e823c2013-02-22 16:34:13 -0800626
627 /*
628 * avoid probable deadlock caused by allocating memory with
629 * GFP_KERNEL in runtime_resume callback of its all ancestor
630 * devices
631 */
632 pm_runtime_set_memalloc_noio(ddev, true);
633
Tejun Heod2bf1b62010-12-08 20:57:36 +0100634 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
635 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
636
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300637 if (disk->flags & GENHD_FL_HIDDEN) {
638 dev_set_uevent_suppress(ddev, 0);
639 return;
640 }
641
Tejun Heod2bf1b62010-12-08 20:57:36 +0100642 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200643 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100644 goto exit;
645
646 /* No such device (e.g., media were just removed) */
647 if (!get_capacity(disk))
648 goto exit;
649
650 bdev = bdget_disk(disk, 0);
651 if (!bdev)
652 goto exit;
653
654 bdev->bd_invalidated = 1;
655 err = blkdev_get(bdev, FMODE_READ, NULL);
656 if (err < 0)
657 goto exit;
658 blkdev_put(bdev, FMODE_READ);
659
660exit:
661 /* announce disk after possible partitions are created */
662 dev_set_uevent_suppress(ddev, 0);
663 kobject_uevent(&ddev->kobj, KOBJ_ADD);
664
665 /* announce possible partitions */
666 disk_part_iter_init(&piter, disk, 0);
667 while ((part = disk_part_iter_next(&piter)))
668 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
669 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300670
zhengbin4d7c1d32019-02-20 21:27:05 +0800671 if (disk->queue->backing_dev_info->dev) {
672 err = sysfs_create_link(&ddev->kobj,
673 &disk->queue->backing_dev_info->dev->kobj,
674 "bdi");
675 WARN_ON(err);
676 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500680 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700681 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200683 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500684 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 *
686 * This function registers the partitioning information in @disk
687 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900688 *
689 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500691static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200692 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500693 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900695 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400696 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700697
Damien Le Moal737eb782019-09-05 18:51:33 +0900698 /*
699 * The disk queue should now be all set with enough information about
700 * the device for the elevator code to pick an adequate default
701 * elevator if one is needed, that is, for devices requesting queue
702 * registration.
703 */
704 if (register_queue)
705 elevator_init_mq(disk->queue);
706
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900707 /* minors == 0 indicates to use ext devt from part0 and should
708 * be accompanied with EXT_DEVT flag. Make sure all
709 * parameters make sense.
710 */
711 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300712 WARN_ON(!disk->minors &&
713 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900716
717 retval = blk_alloc_devt(&disk->part0, &devt);
718 if (retval) {
719 WARN_ON(1);
720 return;
721 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900722 disk->major = MAJOR(devt);
723 disk->first_minor = MINOR(devt);
724
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100725 disk_alloc_events(disk);
726
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300727 if (disk->flags & GENHD_FL_HIDDEN) {
728 /*
729 * Don't let hidden disks show up in /proc/partitions,
730 * and don't bother scanning for partitions either.
731 */
732 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
733 disk->flags |= GENHD_FL_NO_PART_SCAN;
734 } else {
weiping zhang3a921682017-10-31 18:38:59 +0800735 int ret;
736
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300737 /* Register BDI before referencing it from bdev */
738 disk_to_dev(disk)->devt = devt;
weiping zhang3a921682017-10-31 18:38:59 +0800739 ret = bdi_register_owner(disk->queue->backing_dev_info,
740 disk_to_dev(disk));
741 WARN_ON(ret);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300742 blk_register_region(disk_devt(disk), disk->minors, NULL,
743 exact_match, exact_lock, disk);
744 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200745 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500746 if (register_queue)
747 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700748
Tejun Heo523e1d32011-10-19 14:31:07 +0200749 /*
750 * Take an extra ref on queue which will be put on disk_release()
751 * so that it sticks around as long as @disk is there.
752 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100753 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200754
Tejun Heo77ea8872010-12-08 20:57:37 +0100755 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400756 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500758
Hannes Reineckefef912b2018-09-28 08:17:19 +0200759void device_add_disk(struct device *parent, struct gendisk *disk,
760 const struct attribute_group **groups)
761
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500762{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200763 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500764}
Dan Williamse63a46b2016-06-15 18:17:27 -0700765EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500767void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
768{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200769 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500770}
771EXPORT_SYMBOL(device_add_disk_no_queue_reg);
772
Tejun Heod2bf1b62010-12-08 20:57:36 +0100773void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100775 struct disk_part_iter piter;
776 struct hd_struct *part;
777
Martin K. Petersen25520d52015-10-21 13:19:49 -0400778 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100779 disk_del_events(disk);
780
Jan Kara56c09082018-02-26 13:01:41 +0100781 /*
782 * Block lookups of the disk until all bdevs are unhashed and the
783 * disk is marked as dead (GENHD_FL_UP cleared).
784 */
785 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100786 /* invalidate stuff */
787 disk_part_iter_init(&piter, disk,
788 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
789 while ((part = disk_part_iter_next(&piter))) {
790 invalidate_partition(disk, part->partno);
Jan Kara4b8c8612017-02-21 18:09:46 +0100791 bdev_unhash_inode(part_devt(part));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100792 delete_partition(disk, part->partno);
793 }
794 disk_part_iter_exit(&piter);
795
796 invalidate_partition(disk, 0);
Jan Karad06e05c2017-02-21 18:09:47 +0100797 bdev_unhash_inode(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100798 set_capacity(disk, 0);
799 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100800 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100801
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300802 if (!(disk->flags & GENHD_FL_HIDDEN))
803 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100804 if (disk->queue) {
805 /*
806 * Unregister bdi before releasing device numbers (as they can
807 * get reused and we'd get clashes in sysfs).
808 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500809 if (!(disk->flags & GENHD_FL_HIDDEN))
810 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100811 blk_unregister_queue(disk);
812 } else {
813 WARN_ON(1);
814 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100815
Hannes Reinecke17eac092017-11-09 17:57:06 +0100816 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300817 blk_unregister_region(disk_devt(disk), disk->minors);
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800818 /*
819 * Remove gendisk pointer from idr so that it cannot be looked up
820 * while RCU period before freeing gendisk is running to prevent
821 * use-after-free issues. Note that the device number stays
822 * "in-use" until we really free the gendisk.
823 */
824 blk_invalidate_devt(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100825
826 kobject_put(disk->part0.holder_dir);
827 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900830 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100831 if (!sysfs_deprecated)
832 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800833 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100834 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100836EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Vishal Verma99e66082016-01-09 08:36:51 -0800838/* sysfs access to bad-blocks list. */
839static ssize_t disk_badblocks_show(struct device *dev,
840 struct device_attribute *attr,
841 char *page)
842{
843 struct gendisk *disk = dev_to_disk(dev);
844
845 if (!disk->bb)
846 return sprintf(page, "\n");
847
848 return badblocks_show(disk->bb, page, 0);
849}
850
851static ssize_t disk_badblocks_store(struct device *dev,
852 struct device_attribute *attr,
853 const char *page, size_t len)
854{
855 struct gendisk *disk = dev_to_disk(dev);
856
857 if (!disk->bb)
858 return -ENXIO;
859
860 return badblocks_store(disk->bb, page, len, 0);
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/**
864 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200865 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200866 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 *
868 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200869 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200871struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Tejun Heobcce3de2008-08-25 19:47:22 +0900873 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200874
Tejun Heobcce3de2008-08-25 19:47:22 +0900875 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
876 struct kobject *kobj;
877
878 kobj = kobj_lookup(bdev_map, devt, partno);
879 if (kobj)
880 disk = dev_to_disk(kobj_to_dev(kobj));
881 } else {
882 struct hd_struct *part;
883
Dan Williams4d66e5e2015-06-10 23:47:14 -0400884 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900885 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +0100886 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +0900887 *partno = part->partno;
888 disk = part_to_disk(part);
889 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400890 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900891 }
892
Jan Kara56c09082018-02-26 13:01:41 +0100893 if (!disk)
894 return NULL;
895
896 /*
897 * Synchronize with del_gendisk() to not return disk that is being
898 * destroyed.
899 */
900 down_read(&disk->lookup_sem);
901 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
902 !(disk->flags & GENHD_FL_UP))) {
903 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +0100904 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300905 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +0100906 } else {
907 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300908 }
Tejun Heobcce3de2008-08-25 19:47:22 +0900909 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +0200911EXPORT_SYMBOL(get_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Tejun Heof331c022008-09-03 09:01:48 +0200913/**
914 * bdget_disk - do bdget() by gendisk and partition number
915 * @disk: gendisk of interest
916 * @partno: partition number
917 *
918 * Find partition @partno from @disk, do bdget() on it.
919 *
920 * CONTEXT:
921 * Don't care.
922 *
923 * RETURNS:
924 * Resulting block_device on success, NULL on failure.
925 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +0200926struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +0200927{
Tejun Heo548b10e2008-08-29 09:01:47 +0200928 struct hd_struct *part;
929 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +0200930
Tejun Heo548b10e2008-08-29 09:01:47 +0200931 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +0200932 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +0200933 bdev = bdget(part_devt(part));
934 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +0200935
Tejun Heo548b10e2008-08-29 09:01:47 +0200936 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +0200937}
938EXPORT_SYMBOL(bdget_disk);
939
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700940/*
941 * print a full list of all partitions - intended for places where the root
942 * filesystem can't be mounted and thus to give the victim some idea of what
943 * went wrong
944 */
945void __init printk_all_partitions(void)
946{
Tejun Heodef4e382008-09-03 08:57:12 +0200947 struct class_dev_iter iter;
948 struct device *dev;
949
950 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
951 while ((dev = class_dev_iter_next(&iter))) {
952 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200953 struct disk_part_iter piter;
954 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +0900955 char name_buf[BDEVNAME_SIZE];
956 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +0200957
958 /*
959 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300960 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +0200961 */
962 if (get_capacity(disk) == 0 ||
963 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
964 continue;
965
966 /*
967 * Note, unlike /proc/partitions, I am showing the
968 * numbers in hex - the same format as the root=
969 * option takes.
970 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900971 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
972 while ((part = disk_part_iter_next(&piter))) {
973 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +0200974
Will Drewryb5af9212010-08-31 15:47:07 -0500975 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +0900976 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200977 (unsigned long long)part_nr_sects_read(part) >> 1
978 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -0800979 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +0900980 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -0700981 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900982 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -0700983 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900984 else
985 printk(" (driver?)\n");
986 } else
987 printk("\n");
988 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200989 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +0200990 }
991 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994#ifdef CONFIG_PROC_FS
995/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +0200996static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -0400997{
Tejun Heodef4e382008-09-03 08:57:12 +0200998 loff_t skip = *pos;
999 struct class_dev_iter *iter;
1000 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001001
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001002 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +02001003 if (!iter)
1004 return ERR_PTR(-ENOMEM);
1005
1006 seqf->private = iter;
1007 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1008 do {
1009 dev = class_dev_iter_next(iter);
1010 if (!dev)
1011 return NULL;
1012 } while (skip--);
1013
1014 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001015}
1016
Tejun Heodef4e382008-09-03 08:57:12 +02001017static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001019 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -04001020
Tejun Heodef4e382008-09-03 08:57:12 +02001021 (*pos)++;
1022 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001023 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001024 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return NULL;
1027}
1028
Tejun Heodef4e382008-09-03 08:57:12 +02001029static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001030{
Tejun Heodef4e382008-09-03 08:57:12 +02001031 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001032
Tejun Heodef4e382008-09-03 08:57:12 +02001033 /* stop is called even after start failed :-( */
1034 if (iter) {
1035 class_dev_iter_exit(iter);
1036 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001037 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Tejun Heodef4e382008-09-03 08:57:12 +02001041static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Jianpeng Ma06768062012-08-03 10:42:00 +02001043 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001044
1045 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001046 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001047 seq_puts(seqf, "major minor #blocks name\n\n");
1048 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
Tejun Heocf771cb2008-09-03 09:01:09 +02001051static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001054 struct disk_part_iter piter;
1055 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 char buf[BDEVNAME_SIZE];
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001059 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001060 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return 0;
1062 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1063 return 0;
1064
1065 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001066 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001067 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001068 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001069 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001070 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001071 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001072 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 return 0;
1075}
1076
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001077static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001078 .start = show_partition_start,
1079 .next = disk_seqf_next,
1080 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001081 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082};
1083#endif
1084
1085
Tejun Heocf771cb2008-09-03 09:01:09 +02001086static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001088 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001090 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return NULL;
1092}
1093
1094static int __init genhd_device_init(void)
1095{
Dan Williamse105b8b2008-04-21 10:51:07 -07001096 int error;
1097
1098 block_class.dev_kobj = sysfs_dev_block_kobj;
1099 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001100 if (unlikely(error))
1101 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001102 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001104
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001105 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1106
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001107 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001108 if (!sysfs_deprecated)
1109 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001110 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
1113subsys_initcall(genhd_device_init);
1114
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001115static ssize_t disk_range_show(struct device *dev,
1116 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001118 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001120 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
Tejun Heo1f014292008-08-25 19:47:23 +09001123static ssize_t disk_ext_range_show(struct device *dev,
1124 struct device_attribute *attr, char *buf)
1125{
1126 struct gendisk *disk = dev_to_disk(dev);
1127
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001128 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001129}
1130
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001131static ssize_t disk_removable_show(struct device *dev,
1132 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001133{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001134 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001135
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001136 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001138}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001140static ssize_t disk_hidden_show(struct device *dev,
1141 struct device_attribute *attr, char *buf)
1142{
1143 struct gendisk *disk = dev_to_disk(dev);
1144
1145 return sprintf(buf, "%d\n",
1146 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1147}
1148
Kay Sievers1c9ce522008-06-13 09:41:00 +02001149static ssize_t disk_ro_show(struct device *dev,
1150 struct device_attribute *attr, char *buf)
1151{
1152 struct gendisk *disk = dev_to_disk(dev);
1153
Tejun Heob7db9952008-08-25 19:56:10 +09001154 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001155}
1156
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001157static ssize_t disk_capability_show(struct device *dev,
1158 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001159{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001160 struct gendisk *disk = dev_to_disk(dev);
1161
1162 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001163}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001164
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001165static ssize_t disk_alignment_offset_show(struct device *dev,
1166 struct device_attribute *attr,
1167 char *buf)
1168{
1169 struct gendisk *disk = dev_to_disk(dev);
1170
1171 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1172}
1173
Martin K. Petersen86b37282009-11-10 11:50:21 +01001174static ssize_t disk_discard_alignment_show(struct device *dev,
1175 struct device_attribute *attr,
1176 char *buf)
1177{
1178 struct gendisk *disk = dev_to_disk(dev);
1179
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001180 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001181}
1182
Joe Perches5657a812018-05-24 13:38:59 -06001183static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1184static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1185static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1186static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1187static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1188static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1189static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1190static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1191static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1192static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1193static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1194static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001195#ifdef CONFIG_FAIL_MAKE_REQUEST
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001196static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001197 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001198#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001199#ifdef CONFIG_FAIL_IO_TIMEOUT
1200static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001201 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001202#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001203
1204static struct attribute *disk_attrs[] = {
1205 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001206 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001207 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001208 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001209 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001210 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001211 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001212 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001213 &dev_attr_capability.attr,
1214 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001215 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001216 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001217#ifdef CONFIG_FAIL_MAKE_REQUEST
1218 &dev_attr_fail.attr,
1219#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001220#ifdef CONFIG_FAIL_IO_TIMEOUT
1221 &dev_attr_fail_timeout.attr,
1222#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001223 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224};
1225
Dan Williams9438b3e02017-04-27 14:46:26 -07001226static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1227{
1228 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1229 struct gendisk *disk = dev_to_disk(dev);
1230
1231 if (a == &dev_attr_badblocks.attr && !disk->bb)
1232 return 0;
1233 return a->mode;
1234}
1235
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001236static struct attribute_group disk_attr_group = {
1237 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001238 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001239};
1240
David Brownella4dbd672009-06-24 10:06:31 -07001241static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001242 &disk_attr_group,
1243 NULL
1244};
1245
Tejun Heo540eed52008-08-25 19:56:15 +09001246/**
1247 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1248 * @disk: disk to replace part_tbl for
1249 * @new_ptbl: new part_tbl to install
1250 *
1251 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1252 * original ptbl is freed using RCU callback.
1253 *
1254 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001255 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001256 */
1257static void disk_replace_part_tbl(struct gendisk *disk,
1258 struct disk_part_tbl *new_ptbl)
1259{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001260 struct disk_part_tbl *old_ptbl =
1261 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001262
1263 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001264
1265 if (old_ptbl) {
1266 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001267 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001268 }
Tejun Heo540eed52008-08-25 19:56:15 +09001269}
1270
1271/**
1272 * disk_expand_part_tbl - expand disk->part_tbl
1273 * @disk: disk to expand part_tbl for
1274 * @partno: expand such that this partno can fit in
1275 *
1276 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1277 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1278 *
1279 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001280 * Matching bd_mutex locked or the caller is the only user of @disk.
1281 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001282 *
1283 * RETURNS:
1284 * 0 on success, -errno on failure.
1285 */
1286int disk_expand_part_tbl(struct gendisk *disk, int partno)
1287{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001288 struct disk_part_tbl *old_ptbl =
1289 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001290 struct disk_part_tbl *new_ptbl;
1291 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001292 int i, target;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001293
1294 /*
1295 * check for int overflow, since we can get here from blkpg_ioctl()
1296 * with a user passed 'partno'.
1297 */
1298 target = partno + 1;
1299 if (target < 0)
1300 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001301
1302 /* disk_max_parts() is zero during initialization, ignore if so */
1303 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1304 return -EINVAL;
1305
1306 if (target <= len)
1307 return 0;
1308
Gustavo A. R. Silva78b90a22019-05-31 13:47:54 -05001309 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1310 disk->node_id);
Tejun Heo540eed52008-08-25 19:56:15 +09001311 if (!new_ptbl)
1312 return -ENOMEM;
1313
Tejun Heo540eed52008-08-25 19:56:15 +09001314 new_ptbl->len = target;
1315
1316 for (i = 0; i < len; i++)
1317 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1318
1319 disk_replace_part_tbl(disk, new_ptbl);
1320 return 0;
1321}
1322
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001323static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001325 struct gendisk *disk = dev_to_disk(dev);
1326
Keith Busch2da78092014-08-26 09:05:36 -06001327 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001328 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001330 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001331 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001332 if (disk->queue)
1333 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 kfree(disk);
1335}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001336struct class block_class = {
1337 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338};
1339
Kay Sievers3c2670e2013-04-06 09:56:00 -07001340static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001341 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001342{
1343 struct gendisk *disk = dev_to_disk(dev);
1344
Kay Sieverse454cea2009-09-18 23:01:12 +02001345 if (disk->devnode)
1346 return disk->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001347 return NULL;
1348}
1349
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001350static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001351 .name = "disk",
1352 .groups = disk_attr_groups,
1353 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001354 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355};
1356
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001357#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001358/*
1359 * aggregate disk stat collector. Uses the same stats that the sysfs
1360 * entries do, above, but makes them available through one seq_file.
1361 *
1362 * The output looks suspiciously like /proc/partitions with a bunch of
1363 * extra fields.
1364 */
1365static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001368 struct disk_part_iter piter;
1369 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001371 unsigned int inflight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001374 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001375 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 " rio rmerge rsect ruse wio wmerge "
1377 "wsect wuse running use aveq"
1378 "\n\n");
1379 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001380
Tejun Heo71982a42009-04-17 08:34:48 +02001381 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001382 while ((hd = disk_part_iter_next(&piter))) {
Mikulas Patockae016b782018-12-06 11:41:21 -05001383 inflight = part_in_flight(gp->queue, hd);
Michael Callahanbdca3c82018-07-18 04:47:40 -07001384 seq_printf(seqf, "%4d %7d %s "
1385 "%lu %lu %lu %u "
1386 "%lu %lu %lu %u "
1387 "%u %u %u "
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001388 "%lu %lu %lu %u "
1389 "%lu %u"
1390 "\n",
Tejun Heof331c022008-09-03 09:01:48 +02001391 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1392 disk_name(gp, hd->partno, buf),
Michael Callahandbae2c52018-07-18 04:47:38 -07001393 part_stat_read(hd, ios[STAT_READ]),
1394 part_stat_read(hd, merges[STAT_READ]),
1395 part_stat_read(hd, sectors[STAT_READ]),
Omar Sandovalb57e99b2018-09-21 16:44:34 -07001396 (unsigned int)part_stat_read_msecs(hd, STAT_READ),
Michael Callahandbae2c52018-07-18 04:47:38 -07001397 part_stat_read(hd, ios[STAT_WRITE]),
1398 part_stat_read(hd, merges[STAT_WRITE]),
1399 part_stat_read(hd, sectors[STAT_WRITE]),
Omar Sandovalb57e99b2018-09-21 16:44:34 -07001400 (unsigned int)part_stat_read_msecs(hd, STAT_WRITE),
Mikulas Patockae016b782018-12-06 11:41:21 -05001401 inflight,
Jerome Marchand28f39d52008-02-08 11:04:56 +01001402 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
Michael Callahanbdca3c82018-07-18 04:47:40 -07001403 jiffies_to_msecs(part_stat_read(hd, time_in_queue)),
1404 part_stat_read(hd, ios[STAT_DISCARD]),
1405 part_stat_read(hd, merges[STAT_DISCARD]),
1406 part_stat_read(hd, sectors[STAT_DISCARD]),
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001407 (unsigned int)part_stat_read_msecs(hd, STAT_DISCARD),
1408 part_stat_read(hd, ios[STAT_FLUSH]),
1409 (unsigned int)part_stat_read_msecs(hd, STAT_FLUSH)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001410 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001412 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return 0;
1415}
1416
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001417static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001418 .start = disk_seqf_start,
1419 .next = disk_seqf_next,
1420 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 .show = diskstats_show
1422};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001423
1424static int __init proc_genhd_init(void)
1425{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001426 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1427 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001428 return 0;
1429}
1430module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001431#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Tejun Heocf771cb2008-09-03 09:01:09 +02001433dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001434{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001435 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001436 struct class_dev_iter iter;
1437 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001438
Tejun Heodef4e382008-09-03 08:57:12 +02001439 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1440 while ((dev = class_dev_iter_next(&iter))) {
1441 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001442 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001443
Kay Sievers3ada8b72009-01-06 10:44:43 -08001444 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001445 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001446
Neil Brown41b8c852009-02-18 10:33:59 +01001447 if (partno < disk->minors) {
1448 /* We need to return the right devno, even
1449 * if the partition doesn't exist yet.
1450 */
1451 devt = MKDEV(MAJOR(dev->devt),
1452 MINOR(dev->devt) + partno);
1453 break;
1454 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001455 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001456 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001457 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001458 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001459 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001460 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001461 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001462 }
Tejun Heodef4e382008-09-03 08:57:12 +02001463 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001464 return devt;
1465}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001466EXPORT_SYMBOL(blk_lookup_devt);
1467
Byungchul Parke319e1f2017-10-25 17:56:05 +09001468struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001469{
1470 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001471 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001472
Christoph Hellwigde65b012017-08-23 19:10:29 +02001473 if (minors > DISK_MAX_PARTS) {
1474 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001475 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001476 DISK_MAX_PARTS);
1477 minors = DISK_MAX_PARTS;
1478 }
Christoph Lameter19460892005-06-23 00:08:19 -07001479
Joe Perchesc1b511e2013-08-29 15:21:42 -07001480 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001482 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 kfree(disk);
1484 return NULL;
1485 }
Jan Kara56c09082018-02-26 13:01:41 +01001486 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001487 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001488 if (disk_expand_part_tbl(disk, 0)) {
1489 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001490 kfree(disk);
1491 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001493 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1494 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001495
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001496 /*
1497 * set_capacity() and get_capacity() currently don't use
1498 * seqcounter to read/update the part0->nr_sects. Still init
1499 * the counter as we can read the sectors in IO submission
1500 * patch using seqence counters.
1501 *
1502 * TODO: Ideally set_capacity() and get_capacity() should be
1503 * converted to make use of bd_mutex and sequence counters.
1504 */
1505 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001506 if (hd_ref_init(&disk->part0)) {
1507 hd_free_part(&disk->part0);
1508 kfree(disk);
1509 return NULL;
1510 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001514 disk_to_dev(disk)->class = &block_class;
1515 disk_to_dev(disk)->type = &disk_type;
1516 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
1518 return disk;
1519}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001520EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Jan Kara3079c222018-02-26 13:01:38 +01001522struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
1524 struct module *owner;
1525 struct kobject *kobj;
1526
1527 if (!disk->fops)
1528 return NULL;
1529 owner = disk->fops->owner;
1530 if (owner && !try_module_get(owner))
1531 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001532 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (kobj == NULL) {
1534 module_put(owner);
1535 return NULL;
1536 }
1537 return kobj;
1538
1539}
Jan Kara3079c222018-02-26 13:01:38 +01001540EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542void put_disk(struct gendisk *disk)
1543{
1544 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001545 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547EXPORT_SYMBOL(put_disk);
1548
Jan Kara9df6c292018-02-26 13:01:39 +01001549/*
1550 * This is a counterpart of get_disk_and_module() and thus also of
1551 * get_gendisk().
1552 */
1553void put_disk_and_module(struct gendisk *disk)
1554{
1555 if (disk) {
1556 struct module *owner = disk->fops->owner;
1557
1558 put_disk(disk);
1559 module_put(owner);
1560 }
1561}
1562EXPORT_SYMBOL(put_disk_and_module);
1563
Hannes Reineckee3264a42009-07-28 09:13:13 +02001564static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1565{
1566 char event[] = "DISK_RO=1";
1567 char *envp[] = { event, NULL };
1568
1569 if (!ro)
1570 event[8] = '0';
1571 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1572}
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574void set_device_ro(struct block_device *bdev, int flag)
1575{
Tejun Heob7db9952008-08-25 19:56:10 +09001576 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579EXPORT_SYMBOL(set_device_ro);
1580
1581void set_disk_ro(struct gendisk *disk, int flag)
1582{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001583 struct disk_part_iter piter;
1584 struct hd_struct *part;
1585
Hannes Reineckee3264a42009-07-28 09:13:13 +02001586 if (disk->part0.policy != flag) {
1587 set_disk_ro_uevent(disk, flag);
1588 disk->part0.policy = flag;
1589 }
1590
1591 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001592 while ((part = disk_part_iter_next(&piter)))
1593 part->policy = flag;
1594 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
1597EXPORT_SYMBOL(set_disk_ro);
1598
1599int bdev_read_only(struct block_device *bdev)
1600{
1601 if (!bdev)
1602 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001603 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
1606EXPORT_SYMBOL(bdev_read_only);
1607
Tejun Heocf771cb2008-09-03 09:01:09 +02001608int invalidate_partition(struct gendisk *disk, int partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 int res = 0;
Tejun Heocf771cb2008-09-03 09:01:09 +02001611 struct block_device *bdev = bdget_disk(disk, partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (bdev) {
Christoph Hellwig2ef41632005-05-05 16:15:59 -07001613 fsync_bdev(bdev);
NeilBrown93b270f2011-02-24 17:25:47 +11001614 res = __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 bdput(bdev);
1616 }
1617 return res;
1618}
1619
1620EXPORT_SYMBOL(invalidate_partition);
Tejun Heo77ea8872010-12-08 20:57:37 +01001621
1622/*
1623 * Disk events - monitor disk events like media change and eject request.
1624 */
1625struct disk_events {
1626 struct list_head node; /* all disk_event's */
1627 struct gendisk *disk; /* the associated disk */
1628 spinlock_t lock;
1629
Tejun Heofdd514e2011-06-09 20:43:59 +02001630 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001631 int block; /* event blocking depth */
1632 unsigned int pending; /* events already sent out */
1633 unsigned int clearing; /* events being cleared */
1634
1635 long poll_msecs; /* interval, -1 for default */
1636 struct delayed_work dwork;
1637};
1638
1639static const char *disk_events_strs[] = {
1640 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1641 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1642};
1643
1644static char *disk_uevents[] = {
1645 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1646 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1647};
1648
1649/* list of all disk_events */
1650static DEFINE_MUTEX(disk_events_mutex);
1651static LIST_HEAD(disk_events);
1652
1653/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001654static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001655
1656static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1657{
1658 struct disk_events *ev = disk->ev;
1659 long intv_msecs = 0;
1660
1661 /*
1662 * If device-specific poll interval is set, always use it. If
Martin Wilck673387a2019-03-27 14:51:01 +01001663 * the default is being used, poll if the POLL flag is set.
Tejun Heo77ea8872010-12-08 20:57:37 +01001664 */
1665 if (ev->poll_msecs >= 0)
1666 intv_msecs = ev->poll_msecs;
Martin Wilckc92e2f02019-03-27 14:51:02 +01001667 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
Tejun Heo77ea8872010-12-08 20:57:37 +01001668 intv_msecs = disk_events_dfl_poll_msecs;
1669
1670 return msecs_to_jiffies(intv_msecs);
1671}
1672
Tejun Heoc3af54a2011-06-09 20:43:55 +02001673/**
1674 * disk_block_events - block and flush disk event checking
1675 * @disk: disk to block events for
1676 *
1677 * On return from this function, it is guaranteed that event checking
1678 * isn't in progress and won't happen until unblocked by
1679 * disk_unblock_events(). Events blocking is counted and the actual
1680 * unblocking happens after the matching number of unblocks are done.
1681 *
1682 * Note that this intentionally does not block event checking from
1683 * disk_clear_events().
1684 *
1685 * CONTEXT:
1686 * Might sleep.
1687 */
1688void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001689{
1690 struct disk_events *ev = disk->ev;
1691 unsigned long flags;
1692 bool cancel;
1693
Tejun Heoc3af54a2011-06-09 20:43:55 +02001694 if (!ev)
1695 return;
1696
Tejun Heofdd514e2011-06-09 20:43:59 +02001697 /*
1698 * Outer mutex ensures that the first blocker completes canceling
1699 * the event work before further blockers are allowed to finish.
1700 */
1701 mutex_lock(&ev->block_mutex);
1702
Tejun Heo77ea8872010-12-08 20:57:37 +01001703 spin_lock_irqsave(&ev->lock, flags);
1704 cancel = !ev->block++;
1705 spin_unlock_irqrestore(&ev->lock, flags);
1706
Tejun Heoc3af54a2011-06-09 20:43:55 +02001707 if (cancel)
1708 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001709
1710 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001711}
1712
1713static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1714{
1715 struct disk_events *ev = disk->ev;
1716 unsigned long intv;
1717 unsigned long flags;
1718
1719 spin_lock_irqsave(&ev->lock, flags);
1720
1721 if (WARN_ON_ONCE(ev->block <= 0))
1722 goto out_unlock;
1723
1724 if (--ev->block)
1725 goto out_unlock;
1726
Tejun Heo77ea8872010-12-08 20:57:37 +01001727 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001728 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301729 queue_delayed_work(system_freezable_power_efficient_wq,
1730 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001731 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301732 queue_delayed_work(system_freezable_power_efficient_wq,
1733 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001734out_unlock:
1735 spin_unlock_irqrestore(&ev->lock, flags);
1736}
1737
1738/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001739 * disk_unblock_events - unblock disk event checking
1740 * @disk: disk to unblock events for
1741 *
1742 * Undo disk_block_events(). When the block count reaches zero, it
1743 * starts events polling if configured.
1744 *
1745 * CONTEXT:
1746 * Don't care. Safe to call from irq context.
1747 */
1748void disk_unblock_events(struct gendisk *disk)
1749{
1750 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001751 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001752}
1753
1754/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001755 * disk_flush_events - schedule immediate event checking and flushing
1756 * @disk: disk to check and flush events for
1757 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001758 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001759 * Schedule immediate event checking on @disk if not blocked. Events in
1760 * @mask are scheduled to be cleared from the driver. Note that this
1761 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001762 *
1763 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001764 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001765 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001766void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001767{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001768 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001769
1770 if (!ev)
1771 return;
1772
Tejun Heo85ef06d2011-07-01 16:17:47 +02001773 spin_lock_irq(&ev->lock);
1774 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001775 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301776 mod_delayed_work(system_freezable_power_efficient_wq,
1777 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001778 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001779}
Tejun Heo77ea8872010-12-08 20:57:37 +01001780
1781/**
1782 * disk_clear_events - synchronously check, clear and return pending events
1783 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001784 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001785 *
1786 * Disk events are synchronously checked and pending events in @mask
1787 * are cleared and returned. This ignores the block count.
1788 *
1789 * CONTEXT:
1790 * Might sleep.
1791 */
1792unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1793{
1794 const struct block_device_operations *bdops = disk->fops;
1795 struct disk_events *ev = disk->ev;
1796 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001797 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001798
1799 if (!ev) {
1800 /* for drivers still using the old ->media_changed method */
1801 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1802 bdops->media_changed && bdops->media_changed(disk))
1803 return DISK_EVENT_MEDIA_CHANGE;
1804 return 0;
1805 }
1806
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001807 disk_block_events(disk);
1808
1809 /*
1810 * store the union of mask and ev->clearing on the stack so that the
1811 * race with disk_flush_events does not cause ambiguity (ev->clearing
1812 * can still be modified even if events are blocked).
1813 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001814 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001815 clearing |= ev->clearing;
1816 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001817 spin_unlock_irq(&ev->lock);
1818
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001819 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08001820 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001821 * if ev->clearing is not 0, the disk_flush_events got called in the
1822 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08001823 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001824 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001825
1826 /* then, fetch and clear pending events */
1827 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001828 pending = ev->pending & mask;
1829 ev->pending &= ~mask;
1830 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001831 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01001832
1833 return pending;
1834}
1835
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001836/*
1837 * Separate this part out so that a different pointer for clearing_ptr can be
1838 * passed in for disk_clear_events.
1839 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001840static void disk_events_workfn(struct work_struct *work)
1841{
1842 struct delayed_work *dwork = to_delayed_work(work);
1843 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001844
1845 disk_check_events(ev, &ev->clearing);
1846}
1847
1848static void disk_check_events(struct disk_events *ev,
1849 unsigned int *clearing_ptr)
1850{
Tejun Heo77ea8872010-12-08 20:57:37 +01001851 struct gendisk *disk = ev->disk;
1852 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001853 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01001854 unsigned int events;
1855 unsigned long intv;
1856 int nr_events = 0, i;
1857
1858 /* check events */
1859 events = disk->fops->check_events(disk, clearing);
1860
1861 /* accumulate pending events and schedule next poll if necessary */
1862 spin_lock_irq(&ev->lock);
1863
1864 events &= ~ev->pending;
1865 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001866 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01001867
1868 intv = disk_events_poll_jiffies(disk);
1869 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301870 queue_delayed_work(system_freezable_power_efficient_wq,
1871 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001872
1873 spin_unlock_irq(&ev->lock);
1874
Tejun Heo7c88a162011-04-21 19:43:58 +02001875 /*
1876 * Tell userland about new events. Only the events listed in
Martin Wilckc92e2f02019-03-27 14:51:02 +01001877 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
1878 * is set. Otherwise, events are processed internally but never
1879 * get reported to userland.
Tejun Heo7c88a162011-04-21 19:43:58 +02001880 */
Tejun Heo77ea8872010-12-08 20:57:37 +01001881 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Martin Wilckc92e2f02019-03-27 14:51:02 +01001882 if ((events & disk->events & (1 << i)) &&
1883 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
Tejun Heo77ea8872010-12-08 20:57:37 +01001884 envp[nr_events++] = disk_uevents[i];
1885
1886 if (nr_events)
1887 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
1888}
1889
1890/*
1891 * A disk events enabled device has the following sysfs nodes under
1892 * its /sys/block/X/ directory.
1893 *
1894 * events : list of all supported events
1895 * events_async : list of events which can be detected w/o polling
Martin Wilck673387a2019-03-27 14:51:01 +01001896 * (always empty, only for backwards compatibility)
Tejun Heo77ea8872010-12-08 20:57:37 +01001897 * events_poll_msecs : polling interval, 0: disable, -1: system default
1898 */
1899static ssize_t __disk_events_show(unsigned int events, char *buf)
1900{
1901 const char *delim = "";
1902 ssize_t pos = 0;
1903 int i;
1904
1905 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
1906 if (events & (1 << i)) {
1907 pos += sprintf(buf + pos, "%s%s",
1908 delim, disk_events_strs[i]);
1909 delim = " ";
1910 }
1911 if (pos)
1912 pos += sprintf(buf + pos, "\n");
1913 return pos;
1914}
1915
1916static ssize_t disk_events_show(struct device *dev,
1917 struct device_attribute *attr, char *buf)
1918{
1919 struct gendisk *disk = dev_to_disk(dev);
1920
Martin Wilckc92e2f02019-03-27 14:51:02 +01001921 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
1922 return 0;
1923
Tejun Heo77ea8872010-12-08 20:57:37 +01001924 return __disk_events_show(disk->events, buf);
1925}
1926
1927static ssize_t disk_events_async_show(struct device *dev,
1928 struct device_attribute *attr, char *buf)
1929{
Martin Wilck673387a2019-03-27 14:51:01 +01001930 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01001931}
1932
1933static ssize_t disk_events_poll_msecs_show(struct device *dev,
1934 struct device_attribute *attr,
1935 char *buf)
1936{
1937 struct gendisk *disk = dev_to_disk(dev);
1938
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01001939 if (!disk->ev)
1940 return sprintf(buf, "-1\n");
1941
Tejun Heo77ea8872010-12-08 20:57:37 +01001942 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
1943}
1944
1945static ssize_t disk_events_poll_msecs_store(struct device *dev,
1946 struct device_attribute *attr,
1947 const char *buf, size_t count)
1948{
1949 struct gendisk *disk = dev_to_disk(dev);
1950 long intv;
1951
1952 if (!count || !sscanf(buf, "%ld", &intv))
1953 return -EINVAL;
1954
1955 if (intv < 0 && intv != -1)
1956 return -EINVAL;
1957
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01001958 if (!disk->ev)
1959 return -ENODEV;
1960
Tejun Heoc3af54a2011-06-09 20:43:55 +02001961 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001962 disk->ev->poll_msecs = intv;
1963 __disk_unblock_events(disk, true);
1964
1965 return count;
1966}
1967
Joe Perches5657a812018-05-24 13:38:59 -06001968static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
1969static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
1970static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01001971 disk_events_poll_msecs_show,
1972 disk_events_poll_msecs_store);
1973
1974static const struct attribute *disk_events_attrs[] = {
1975 &dev_attr_events.attr,
1976 &dev_attr_events_async.attr,
1977 &dev_attr_events_poll_msecs.attr,
1978 NULL,
1979};
1980
1981/*
1982 * The default polling interval can be specified by the kernel
1983 * parameter block.events_dfl_poll_msecs which defaults to 0
1984 * (disable). This can also be modified runtime by writing to
Akinobu Mita1624b0b2019-07-16 21:59:35 +09001985 * /sys/module/block/parameters/events_dfl_poll_msecs.
Tejun Heo77ea8872010-12-08 20:57:37 +01001986 */
1987static int disk_events_set_dfl_poll_msecs(const char *val,
1988 const struct kernel_param *kp)
1989{
1990 struct disk_events *ev;
1991 int ret;
1992
1993 ret = param_set_ulong(val, kp);
1994 if (ret < 0)
1995 return ret;
1996
1997 mutex_lock(&disk_events_mutex);
1998
1999 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02002000 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01002001
2002 mutex_unlock(&disk_events_mutex);
2003
2004 return 0;
2005}
2006
2007static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2008 .set = disk_events_set_dfl_poll_msecs,
2009 .get = param_get_ulong,
2010};
2011
2012#undef MODULE_PARAM_PREFIX
2013#define MODULE_PARAM_PREFIX "block."
2014
2015module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2016 &disk_events_dfl_poll_msecs, 0644);
2017
2018/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002019 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01002020 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002021static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01002022{
2023 struct disk_events *ev;
2024
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002025 if (!disk->fops->check_events || !disk->events)
Tejun Heo77ea8872010-12-08 20:57:37 +01002026 return;
2027
2028 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2029 if (!ev) {
2030 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2031 return;
2032 }
2033
Tejun Heo77ea8872010-12-08 20:57:37 +01002034 INIT_LIST_HEAD(&ev->node);
2035 ev->disk = disk;
2036 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02002037 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01002038 ev->block = 1;
2039 ev->poll_msecs = -1;
2040 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2041
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002042 disk->ev = ev;
2043}
2044
2045static void disk_add_events(struct gendisk *disk)
2046{
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002047 /* FIXME: error handling */
2048 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2049 pr_warn("%s: failed to create sysfs files for events\n",
2050 disk->disk_name);
2051
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002052 if (!disk->ev)
2053 return;
2054
Tejun Heo77ea8872010-12-08 20:57:37 +01002055 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002056 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002057 mutex_unlock(&disk_events_mutex);
2058
2059 /*
2060 * Block count is initialized to 1 and the following initial
2061 * unblock kicks it into action.
2062 */
2063 __disk_unblock_events(disk, true);
2064}
2065
2066static void disk_del_events(struct gendisk *disk)
2067{
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002068 if (disk->ev) {
2069 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002070
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002071 mutex_lock(&disk_events_mutex);
2072 list_del_init(&disk->ev->node);
2073 mutex_unlock(&disk_events_mutex);
2074 }
Tejun Heo77ea8872010-12-08 20:57:37 +01002075
2076 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2077}
2078
2079static void disk_release_events(struct gendisk *disk)
2080{
2081 /* the block count should be 1 from disk_del_events() */
2082 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2083 kfree(disk->ev);
2084}