blob: 0a273211fec28383eb85311acbf811a7b10f0623 [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>
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01007#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/fs.h>
9#include <linux/genhd.h>
Andrew Mortonb446b602007-02-20 13:57:48 -080010#include <linux/kdev_t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040013#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/spinlock.h>
Alexey Dobriyanf5009752008-10-04 23:53:21 +040016#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/seq_file.h>
18#include <linux/slab.h>
19#include <linux/kmod.h>
20#include <linux/kobj_map.h>
Jes Sorensen58383af2006-02-06 14:12:43 -080021#include <linux/mutex.h>
Tejun Heobcce3de2008-08-25 19:47:22 +090022#include <linux/idr.h>
Tejun Heo77ea8872010-12-08 20:57:37 +010023#include <linux/log2.h>
Ming Lei25e823c2013-02-22 16:34:13 -080024#include <linux/pm_runtime.h>
Vishal Verma99e66082016-01-09 08:36:51 -080025#include <linux/badblocks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Adrian Bunkff889722008-03-04 11:23:45 +010027#include "blk.h"
28
Kay Sieversedfaa7c2007-05-21 22:08:01 +020029static DEFINE_MUTEX(block_class_lock);
Christoph Hellwig31eb6182020-03-25 16:48:35 +010030static struct kobject *block_depr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Tejun Heobcce3de2008-08-25 19:47:22 +090032/* for extended dynamic devt allocation, currently only one major is used */
Tejun Heoce23bba2013-02-27 17:03:56 -080033#define NR_EXT_DEVT (1 << MINORBITS)
Tejun Heobcce3de2008-08-25 19:47:22 +090034
Keith Busch2da78092014-08-26 09:05:36 -060035/* For extended devt allocation. ext_devt_lock prevents look up
Tejun Heobcce3de2008-08-25 19:47:22 +090036 * results from going away underneath its user.
37 */
Keith Busch2da78092014-08-26 09:05:36 -060038static DEFINE_SPINLOCK(ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +090039static DEFINE_IDR(ext_devt_idr);
40
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
Balbir Singhe598a722020-03-13 05:30:05 +000048/*
49 * Set disk capacity and notify if the size is not currently
50 * zero and will not be set to zero
51 */
52void set_capacity_revalidate_and_notify(struct gendisk *disk, sector_t size,
Christoph Hellwigb8086d32020-09-01 17:57:44 +020053 bool update_bdev)
Balbir Singhe598a722020-03-13 05:30:05 +000054{
55 sector_t capacity = get_capacity(disk);
56
57 set_capacity(disk, size);
Christoph Hellwigb8086d32020-09-01 17:57:44 +020058 if (update_bdev)
59 revalidate_disk_size(disk, true);
Balbir Singhe598a722020-03-13 05:30:05 +000060
61 if (capacity != size && capacity != 0 && size != 0) {
62 char *envp[] = { "RESIZE=1", NULL };
63
64 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
65 }
66}
67
68EXPORT_SYMBOL_GPL(set_capacity_revalidate_and_notify);
69
Christoph Hellwig5cbd28e2020-03-24 08:25:12 +010070/*
71 * Format the device name of the indicated disk into the supplied buffer and
72 * return a pointer to that same buffer for convenience.
73 */
74char *disk_name(struct gendisk *hd, int partno, char *buf)
75{
76 if (!partno)
77 snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name);
78 else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1]))
79 snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, partno);
80 else
81 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno);
82
83 return buf;
84}
85
86const char *bdevname(struct block_device *bdev, char *buf)
87{
Christoph Hellwig8a63a862020-09-03 07:41:03 +020088 return disk_name(bdev->bd_disk, bdev->bd_partno, buf);
Christoph Hellwig5cbd28e2020-03-24 08:25:12 +010089}
90EXPORT_SYMBOL(bdevname);
Balbir Singhe598a722020-03-13 05:30:05 +000091
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +030092static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
93{
94 int cpu;
95
96 memset(stat, 0, sizeof(struct disk_stats));
97 for_each_possible_cpu(cpu) {
98 struct disk_stats *ptr = per_cpu_ptr(part->dkstats, cpu);
99 int group;
100
101 for (group = 0; group < NR_STAT_GROUPS; group++) {
102 stat->nsecs[group] += ptr->nsecs[group];
103 stat->sectors[group] += ptr->sectors[group];
104 stat->ios[group] += ptr->ios[group];
105 stat->merges[group] += ptr->merges[group];
106 }
107
108 stat->io_ticks += ptr->io_ticks;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300109 }
110}
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300111
Christoph Hellwig1f069592020-08-31 20:02:39 +0200112static unsigned int part_in_flight(struct hd_struct *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600113{
Christoph Hellwigb2f609e2020-05-13 12:49:33 +0200114 unsigned int inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500115 int cpu;
116
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500117 for_each_possible_cpu(cpu) {
Mikulas Patockae016b782018-12-06 11:41:21 -0500118 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
119 part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500120 }
Mikulas Patockae016b782018-12-06 11:41:21 -0500121 if ((int)inflight < 0)
122 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500123
Mikulas Patockae016b782018-12-06 11:41:21 -0500124 return inflight;
Jens Axboef299b7c2017-08-08 17:51:45 -0600125}
126
Christoph Hellwig1f069592020-08-31 20:02:39 +0200127static void part_in_flight_rw(struct hd_struct *part, unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700128{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500129 int cpu;
130
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500131 inflight[0] = 0;
132 inflight[1] = 0;
133 for_each_possible_cpu(cpu) {
134 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
135 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
136 }
137 if ((int)inflight[0] < 0)
138 inflight[0] = 0;
139 if ((int)inflight[1] < 0)
140 inflight[1] = 0;
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700141}
142
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200143struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
144{
145 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
146
147 if (unlikely(partno < 0 || partno >= ptbl->len))
148 return NULL;
149 return rcu_dereference(ptbl->part[partno]);
150}
151
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200152/**
153 * disk_get_part - get partition
154 * @disk: disk to look partition from
155 * @partno: partition number
156 *
157 * Look for partition @partno from @disk. If found, increment
158 * reference count and return it.
159 *
160 * CONTEXT:
161 * Don't care.
162 *
163 * RETURNS:
164 * Pointer to the found partition on success, NULL if not found.
165 */
166struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
167{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200168 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900169
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200170 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200171 part = __disk_get_part(disk, partno);
172 if (part)
173 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200174 rcu_read_unlock();
175
176 return part;
177}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200178
179/**
180 * disk_part_iter_init - initialize partition iterator
181 * @piter: iterator to initialize
182 * @disk: disk to iterate over
183 * @flags: DISK_PITER_* flags
184 *
185 * Initialize @piter so that it iterates over partitions of @disk.
186 *
187 * CONTEXT:
188 * Don't care.
189 */
190void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
191 unsigned int flags)
192{
Tejun Heo540eed52008-08-25 19:56:15 +0900193 struct disk_part_tbl *ptbl;
194
195 rcu_read_lock();
196 ptbl = rcu_dereference(disk->part_tbl);
197
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200198 piter->disk = disk;
199 piter->part = NULL;
200
201 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900202 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200203 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200204 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200205 else
206 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200207
208 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900209
210 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200211}
212EXPORT_SYMBOL_GPL(disk_part_iter_init);
213
214/**
215 * disk_part_iter_next - proceed iterator to the next partition and return it
216 * @piter: iterator of interest
217 *
218 * Proceed @piter to the next partition and return it.
219 *
220 * CONTEXT:
221 * Don't care.
222 */
223struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
224{
Tejun Heo540eed52008-08-25 19:56:15 +0900225 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200226 int inc, end;
227
228 /* put the last partition */
229 disk_put_part(piter->part);
230 piter->part = NULL;
231
Tejun Heo540eed52008-08-25 19:56:15 +0900232 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200233 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900234 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200235
236 /* determine iteration parameters */
237 if (piter->flags & DISK_PITER_REVERSE) {
238 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200239 if (piter->flags & (DISK_PITER_INCL_PART0 |
240 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200241 end = -1;
242 else
243 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200244 } else {
245 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900246 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200247 }
248
249 /* iterate to the next partition */
250 for (; piter->idx != end; piter->idx += inc) {
251 struct hd_struct *part;
252
Tejun Heo540eed52008-08-25 19:56:15 +0900253 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200254 if (!part)
255 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200256 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200257 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
258 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
259 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200260 continue;
261
Tejun Heoed9e1982008-08-25 19:56:05 +0900262 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200263 piter->part = part;
264 piter->idx += inc;
265 break;
266 }
267
268 rcu_read_unlock();
269
270 return piter->part;
271}
272EXPORT_SYMBOL_GPL(disk_part_iter_next);
273
274/**
275 * disk_part_iter_exit - finish up partition iteration
276 * @piter: iter of interest
277 *
278 * Called when iteration is over. Cleans up @piter.
279 *
280 * CONTEXT:
281 * Don't care.
282 */
283void disk_part_iter_exit(struct disk_part_iter *piter)
284{
285 disk_put_part(piter->part);
286 piter->part = NULL;
287}
288EXPORT_SYMBOL_GPL(disk_part_iter_exit);
289
Jens Axboea6f23652008-10-24 12:52:42 +0200290static inline int sector_in_part(struct hd_struct *part, sector_t sector)
291{
292 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200293 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200294}
295
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200296/**
297 * disk_map_sector_rcu - map sector to partition
298 * @disk: gendisk of interest
299 * @sector: sector to map
300 *
301 * Find out which partition @sector maps to on @disk. This is
302 * primarily used for stats accounting.
303 *
304 * CONTEXT:
Ming Leib7d6c302020-05-08 16:17:55 +0800305 * RCU read locked. The returned partition pointer is always valid
Ming Lei27eb3af2020-05-08 16:17:58 +0800306 * because its refcount is grabbed except for part0, which lifetime
307 * is same with the disk.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200308 *
309 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900310 * Found partition on success, part0 is returned if no partition matches
Ming Leib7d6c302020-05-08 16:17:55 +0800311 * or the matched partition is being deleted.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200312 */
313struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
314{
Tejun Heo540eed52008-08-25 19:56:15 +0900315 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200316 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200317 int i;
318
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200319 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900320 ptbl = rcu_dereference(disk->part_tbl);
321
Jens Axboea6f23652008-10-24 12:52:42 +0200322 part = rcu_dereference(ptbl->last_lookup);
Ming Leib7d6c302020-05-08 16:17:55 +0800323 if (part && sector_in_part(part, sector) && hd_struct_try_get(part))
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200324 goto out_unlock;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200325
Jens Axboea6f23652008-10-24 12:52:42 +0200326 for (i = 1; i < ptbl->len; i++) {
327 part = rcu_dereference(ptbl->part[i]);
328
329 if (part && sector_in_part(part, sector)) {
Ming Leib7d6c302020-05-08 16:17:55 +0800330 /*
331 * only live partition can be cached for lookup,
332 * so use-after-free on cached & deleting partition
333 * can be avoided
334 */
335 if (!hd_struct_try_get(part))
336 break;
Jens Axboea6f23652008-10-24 12:52:42 +0200337 rcu_assign_pointer(ptbl->last_lookup, part);
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200338 goto out_unlock;
Jens Axboea6f23652008-10-24 12:52:42 +0200339 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200340 }
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200341
342 part = &disk->part0;
343out_unlock:
344 rcu_read_unlock();
345 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200346}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200347
Shin'ichiro Kawasakib53df2e2020-02-21 10:37:08 +0900348/**
349 * disk_has_partitions
350 * @disk: gendisk of interest
351 *
352 * Walk through the partition table and check if valid partition exists.
353 *
354 * CONTEXT:
355 * Don't care.
356 *
357 * RETURNS:
358 * True if the gendisk has at least one valid non-zero size partition.
359 * Otherwise false.
360 */
361bool disk_has_partitions(struct gendisk *disk)
362{
363 struct disk_part_tbl *ptbl;
364 int i;
365 bool ret = false;
366
367 rcu_read_lock();
368 ptbl = rcu_dereference(disk->part_tbl);
369
370 /* Iterate partitions skipping the whole device at index 0 */
371 for (i = 1; i < ptbl->len; i++) {
372 if (rcu_dereference(ptbl->part[i])) {
373 ret = true;
374 break;
375 }
376 }
377
378 rcu_read_unlock();
379
380 return ret;
381}
382EXPORT_SYMBOL_GPL(disk_has_partitions);
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*
385 * Can be deleted altogether. Later.
386 *
387 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600388#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389static struct blk_major_name {
390 struct blk_major_name *next;
391 int major;
392 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800393} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100396static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Joe Korty68eef3b2006-03-31 02:30:32 -0800398 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Joe Korty68eef3b2006-03-31 02:30:32 -0800401#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200402void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800403{
Joe Korty68eef3b2006-03-31 02:30:32 -0800404 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800405
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600406 mutex_lock(&block_class_lock);
407 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
408 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200409 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600410 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
Joe Korty68eef3b2006-03-31 02:30:32 -0800412#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100414/**
415 * register_blkdev - register a new block device
416 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800417 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
418 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100419 * @name: the name of the new block device as a zero terminated string
420 *
421 * The @name must be unique within the system.
422 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300423 * The return value depends on the @major input parameter:
424 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800425 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
426 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300427 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100428 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800429 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
430 *
431 * See Documentation/admin-guide/devices.txt for the list of allocated
432 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434int register_blkdev(unsigned int major, const char *name)
435{
436 struct blk_major_name **n, *p;
437 int index, ret = 0;
438
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200439 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* temporary */
442 if (major == 0) {
443 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
444 if (major_names[index] == NULL)
445 break;
446 }
447
448 if (index == 0) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500449 printk("%s: failed to get major for %s\n",
450 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 ret = -EBUSY;
452 goto out;
453 }
454 major = index;
455 ret = major;
456 }
457
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600458 if (major >= BLKDEV_MAJOR_MAX) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500459 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
460 __func__, major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600461
462 ret = -EINVAL;
463 goto out;
464 }
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
467 if (p == NULL) {
468 ret = -ENOMEM;
469 goto out;
470 }
471
472 p->major = major;
473 strlcpy(p->name, name, sizeof(p->name));
474 p->next = NULL;
475 index = major_to_index(major);
476
477 for (n = &major_names[index]; *n; n = &(*n)->next) {
478 if ((*n)->major == major)
479 break;
480 }
481 if (!*n)
482 *n = p;
483 else
484 ret = -EBUSY;
485
486 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800487 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 major, name);
489 kfree(p);
490 }
491out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200492 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return ret;
494}
495
496EXPORT_SYMBOL(register_blkdev);
497
Akinobu Mitaf4480242007-07-17 04:03:47 -0700498void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct blk_major_name **n;
501 struct blk_major_name *p = NULL;
502 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200504 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 for (n = &major_names[index]; *n; n = &(*n)->next)
506 if ((*n)->major == major)
507 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700508 if (!*n || strcmp((*n)->name, name)) {
509 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700510 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 p = *n;
512 *n = p->next;
513 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200514 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518EXPORT_SYMBOL(unregister_blkdev);
519
520static struct kobj_map *bdev_map;
521
Tejun Heobcce3de2008-08-25 19:47:22 +0900522/**
Tejun Heo870d6652008-08-25 19:47:25 +0900523 * blk_mangle_minor - scatter minor numbers apart
524 * @minor: minor number to mangle
525 *
526 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
527 * is enabled. Mangling twice gives the original value.
528 *
529 * RETURNS:
530 * Mangled value.
531 *
532 * CONTEXT:
533 * Don't care.
534 */
535static int blk_mangle_minor(int minor)
536{
537#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
538 int i;
539
540 for (i = 0; i < MINORBITS / 2; i++) {
541 int low = minor & (1 << i);
542 int high = minor & (1 << (MINORBITS - 1 - i));
543 int distance = MINORBITS - 1 - 2 * i;
544
545 minor ^= low | high; /* clear both bits */
546 low <<= distance; /* swap the positions */
547 high >>= distance;
548 minor |= low | high; /* and set */
549 }
550#endif
551 return minor;
552}
553
554/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900555 * blk_alloc_devt - allocate a dev_t for a partition
556 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900557 * @devt: out parameter for resulting dev_t
558 *
559 * Allocate a dev_t for block device.
560 *
561 * RETURNS:
562 * 0 on success, allocated dev_t is returned in *@devt. -errno on
563 * failure.
564 *
565 * CONTEXT:
566 * Might sleep.
567 */
568int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
569{
570 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800571 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900572
573 /* in consecutive minor range? */
574 if (part->partno < disk->minors) {
575 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
576 return 0;
577 }
578
579 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600580 idr_preload(GFP_KERNEL);
581
Dan Williams4d66e5e2015-06-10 23:47:14 -0400582 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600583 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400584 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600585
586 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800587 if (idx < 0)
588 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900589
Tejun Heo870d6652008-08-25 19:47:25 +0900590 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900591 return 0;
592}
593
594/**
595 * blk_free_devt - free a dev_t
596 * @devt: dev_t to free
597 *
598 * Free @devt which was allocated using blk_alloc_devt().
599 *
600 * CONTEXT:
601 * Might sleep.
602 */
603void blk_free_devt(dev_t devt)
604{
Tejun Heobcce3de2008-08-25 19:47:22 +0900605 if (devt == MKDEV(0, 0))
606 return;
607
608 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400609 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900610 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400611 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900612 }
613}
614
Bart Van Assche33c826e2019-05-30 17:00:47 -0700615/*
616 * We invalidate devt by assigning NULL pointer for devt in idr.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800617 */
618void blk_invalidate_devt(dev_t devt)
619{
620 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
621 spin_lock_bh(&ext_devt_lock);
622 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
623 spin_unlock_bh(&ext_devt_lock);
624 }
625}
626
Tejun Heo1f014292008-08-25 19:47:23 +0900627static char *bdevt_str(dev_t devt, char *buf)
628{
629 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
630 char tbuf[BDEVT_SIZE];
631 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
632 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
633 } else
634 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
635
636 return buf;
637}
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639/*
640 * Register device numbers dev..(dev+range-1)
641 * range must be nonzero
642 * The hash chain is sorted on range, so that subranges can override.
643 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200644void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 struct kobject *(*probe)(dev_t, int *, void *),
646 int (*lock)(dev_t, void *), void *data)
647{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200648 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651EXPORT_SYMBOL(blk_register_region);
652
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200653void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200655 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658EXPORT_SYMBOL(blk_unregister_region);
659
Tejun Heocf771cb2008-09-03 09:01:09 +0200660static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200663
Tejun Heoed9e1982008-08-25 19:56:05 +0900664 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200667static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct gendisk *p = data;
670
Jan Kara3079c222018-02-26 13:01:38 +0100671 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return -1;
673 return 0;
674}
675
Christoph Hellwig9301fe72020-09-21 09:19:46 +0200676static void disk_scan_partitions(struct gendisk *disk)
677{
678 struct block_device *bdev;
679
680 if (!get_capacity(disk) || !disk_part_scan_enabled(disk))
681 return;
682
683 set_bit(GD_NEED_PART_SCAN, &disk->state);
684 bdev = blkdev_get_by_dev(disk_devt(disk), FMODE_READ, NULL);
685 if (!IS_ERR(bdev))
686 blkdev_put(bdev, FMODE_READ);
687}
688
Hannes Reineckefef912b2018-09-28 08:17:19 +0200689static void register_disk(struct device *parent, struct gendisk *disk,
690 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100691{
692 struct device *ddev = disk_to_dev(disk);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100693 struct disk_part_iter piter;
694 struct hd_struct *part;
695 int err;
696
Dan Williamse63a46b2016-06-15 18:17:27 -0700697 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100698
Kees Cookffc8b302013-07-03 15:01:14 -0700699 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100700
701 /* delay uevents, until we scanned partition table */
702 dev_set_uevent_suppress(ddev, 1);
703
Hannes Reineckefef912b2018-09-28 08:17:19 +0200704 if (groups) {
705 WARN_ON(ddev->groups);
706 ddev->groups = groups;
707 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100708 if (device_add(ddev))
709 return;
710 if (!sysfs_deprecated) {
711 err = sysfs_create_link(block_depr, &ddev->kobj,
712 kobject_name(&ddev->kobj));
713 if (err) {
714 device_del(ddev);
715 return;
716 }
717 }
Ming Lei25e823c2013-02-22 16:34:13 -0800718
719 /*
720 * avoid probable deadlock caused by allocating memory with
721 * GFP_KERNEL in runtime_resume callback of its all ancestor
722 * devices
723 */
724 pm_runtime_set_memalloc_noio(ddev, true);
725
Tejun Heod2bf1b62010-12-08 20:57:36 +0100726 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
727 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
728
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300729 if (disk->flags & GENHD_FL_HIDDEN) {
730 dev_set_uevent_suppress(ddev, 0);
731 return;
732 }
733
Christoph Hellwig9301fe72020-09-21 09:19:46 +0200734 disk_scan_partitions(disk);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100735
Tejun Heod2bf1b62010-12-08 20:57:36 +0100736 /* announce disk after possible partitions are created */
737 dev_set_uevent_suppress(ddev, 0);
738 kobject_uevent(&ddev->kobj, KOBJ_ADD);
739
740 /* announce possible partitions */
741 disk_part_iter_init(&piter, disk, 0);
742 while ((part = disk_part_iter_next(&piter)))
743 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
744 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300745
zhengbin4d7c1d32019-02-20 21:27:05 +0800746 if (disk->queue->backing_dev_info->dev) {
747 err = sysfs_create_link(&ddev->kobj,
748 &disk->queue->backing_dev_info->dev->kobj,
749 "bdi");
750 WARN_ON(err);
751 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100752}
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500755 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700756 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200758 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500759 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *
761 * This function registers the partitioning information in @disk
762 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900763 *
764 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500766static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200767 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500768 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900770 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400771 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700772
Damien Le Moal737eb782019-09-05 18:51:33 +0900773 /*
774 * The disk queue should now be all set with enough information about
775 * the device for the elevator code to pick an adequate default
776 * elevator if one is needed, that is, for devices requesting queue
777 * registration.
778 */
779 if (register_queue)
780 elevator_init_mq(disk->queue);
781
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900782 /* minors == 0 indicates to use ext devt from part0 and should
783 * be accompanied with EXT_DEVT flag. Make sure all
784 * parameters make sense.
785 */
786 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300787 WARN_ON(!disk->minors &&
788 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900791
792 retval = blk_alloc_devt(&disk->part0, &devt);
793 if (retval) {
794 WARN_ON(1);
795 return;
796 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900797 disk->major = MAJOR(devt);
798 disk->first_minor = MINOR(devt);
799
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100800 disk_alloc_events(disk);
801
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300802 if (disk->flags & GENHD_FL_HIDDEN) {
803 /*
804 * Don't let hidden disks show up in /proc/partitions,
805 * and don't bother scanning for partitions either.
806 */
807 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
808 disk->flags |= GENHD_FL_NO_PART_SCAN;
809 } else {
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200810 struct backing_dev_info *bdi = disk->queue->backing_dev_info;
811 struct device *dev = disk_to_dev(disk);
weiping zhang3a921682017-10-31 18:38:59 +0800812 int ret;
813
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300814 /* Register BDI before referencing it from bdev */
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200815 dev->devt = devt;
816 ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt));
weiping zhang3a921682017-10-31 18:38:59 +0800817 WARN_ON(ret);
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200818 bdi_set_owner(bdi, dev);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300819 blk_register_region(disk_devt(disk), disk->minors, NULL,
820 exact_match, exact_lock, disk);
821 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200822 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500823 if (register_queue)
824 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700825
Tejun Heo523e1d32011-10-19 14:31:07 +0200826 /*
827 * Take an extra ref on queue which will be put on disk_release()
828 * so that it sticks around as long as @disk is there.
829 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100830 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200831
Tejun Heo77ea8872010-12-08 20:57:37 +0100832 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400833 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500835
Hannes Reineckefef912b2018-09-28 08:17:19 +0200836void device_add_disk(struct device *parent, struct gendisk *disk,
837 const struct attribute_group **groups)
838
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500839{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200840 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500841}
Dan Williamse63a46b2016-06-15 18:17:27 -0700842EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500844void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
845{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200846 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500847}
848EXPORT_SYMBOL(device_add_disk_no_queue_reg);
849
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200850static void invalidate_partition(struct gendisk *disk, int partno)
851{
852 struct block_device *bdev;
853
854 bdev = bdget_disk(disk, partno);
855 if (!bdev)
856 return;
857
858 fsync_bdev(bdev);
859 __invalidate_device(bdev, true);
Christoph Hellwig9bc5c392020-04-14 09:29:02 +0200860
861 /*
862 * Unhash the bdev inode for this device so that it gets evicted as soon
863 * as last inode reference is dropped.
864 */
865 remove_inode_hash(bdev->bd_inode);
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200866 bdput(bdev);
867}
868
Luis Chamberlainb5bd3572020-06-19 20:47:23 +0000869/**
870 * del_gendisk - remove the gendisk
871 * @disk: the struct gendisk to remove
872 *
873 * Removes the gendisk and all its associated resources. This deletes the
874 * partitions associated with the gendisk, and unregisters the associated
875 * request_queue.
876 *
877 * This is the counter to the respective __device_add_disk() call.
878 *
879 * The final removal of the struct gendisk happens when its refcount reaches 0
880 * with put_disk(), which should be called after del_gendisk(), if
881 * __device_add_disk() was used.
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000882 *
883 * Drivers exist which depend on the release of the gendisk to be synchronous,
884 * it should not be deferred.
885 *
886 * Context: can sleep
Luis Chamberlainb5bd3572020-06-19 20:47:23 +0000887 */
Tejun Heod2bf1b62010-12-08 20:57:36 +0100888void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100890 struct disk_part_iter piter;
891 struct hd_struct *part;
892
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000893 might_sleep();
894
Martin K. Petersen25520d52015-10-21 13:19:49 -0400895 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100896 disk_del_events(disk);
897
Jan Kara56c09082018-02-26 13:01:41 +0100898 /*
899 * Block lookups of the disk until all bdevs are unhashed and the
900 * disk is marked as dead (GENHD_FL_UP cleared).
901 */
902 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100903 /* invalidate stuff */
904 disk_part_iter_init(&piter, disk,
905 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
906 while ((part = disk_part_iter_next(&piter))) {
907 invalidate_partition(disk, part->partno);
Christoph Hellwig8328eb22020-08-31 20:02:38 +0200908 delete_partition(part);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100909 }
910 disk_part_iter_exit(&piter);
911
912 invalidate_partition(disk, 0);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100913 set_capacity(disk, 0);
914 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100915 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100916
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300917 if (!(disk->flags & GENHD_FL_HIDDEN))
918 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100919 if (disk->queue) {
920 /*
921 * Unregister bdi before releasing device numbers (as they can
922 * get reused and we'd get clashes in sysfs).
923 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500924 if (!(disk->flags & GENHD_FL_HIDDEN))
925 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100926 blk_unregister_queue(disk);
927 } else {
928 WARN_ON(1);
929 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100930
Hannes Reinecke17eac092017-11-09 17:57:06 +0100931 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300932 blk_unregister_region(disk_devt(disk), disk->minors);
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800933 /*
934 * Remove gendisk pointer from idr so that it cannot be looked up
935 * while RCU period before freeing gendisk is running to prevent
936 * use-after-free issues. Note that the device number stays
937 * "in-use" until we really free the gendisk.
938 */
939 blk_invalidate_devt(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100940
941 kobject_put(disk->part0.holder_dir);
942 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900945 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100946 if (!sysfs_deprecated)
947 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800948 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100949 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100951EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Vishal Verma99e66082016-01-09 08:36:51 -0800953/* sysfs access to bad-blocks list. */
954static ssize_t disk_badblocks_show(struct device *dev,
955 struct device_attribute *attr,
956 char *page)
957{
958 struct gendisk *disk = dev_to_disk(dev);
959
960 if (!disk->bb)
961 return sprintf(page, "\n");
962
963 return badblocks_show(disk->bb, page, 0);
964}
965
966static ssize_t disk_badblocks_store(struct device *dev,
967 struct device_attribute *attr,
968 const char *page, size_t len)
969{
970 struct gendisk *disk = dev_to_disk(dev);
971
972 if (!disk->bb)
973 return -ENXIO;
974
975 return badblocks_store(disk->bb, page, len, 0);
976}
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978/**
979 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200980 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200981 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 *
983 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200984 * information for the given device @devt.
Luis Chamberlain763b5892020-06-19 20:47:24 +0000985 *
986 * Context: can sleep
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200988struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Tejun Heobcce3de2008-08-25 19:47:22 +0900990 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200991
Luis Chamberlain763b5892020-06-19 20:47:24 +0000992 might_sleep();
993
Tejun Heobcce3de2008-08-25 19:47:22 +0900994 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
995 struct kobject *kobj;
996
997 kobj = kobj_lookup(bdev_map, devt, partno);
998 if (kobj)
999 disk = dev_to_disk(kobj_to_dev(kobj));
1000 } else {
1001 struct hd_struct *part;
1002
Dan Williams4d66e5e2015-06-10 23:47:14 -04001003 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +09001004 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +01001005 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +09001006 *partno = part->partno;
1007 disk = part_to_disk(part);
1008 }
Dan Williams4d66e5e2015-06-10 23:47:14 -04001009 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +09001010 }
1011
Jan Kara56c09082018-02-26 13:01:41 +01001012 if (!disk)
1013 return NULL;
1014
1015 /*
1016 * Synchronize with del_gendisk() to not return disk that is being
1017 * destroyed.
1018 */
1019 down_read(&disk->lookup_sem);
1020 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
1021 !(disk->flags & GENHD_FL_UP))) {
1022 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +01001023 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001024 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +01001025 } else {
1026 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001027 }
Tejun Heobcce3de2008-08-25 19:47:22 +09001028 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Tejun Heof331c022008-09-03 09:01:48 +02001031/**
1032 * bdget_disk - do bdget() by gendisk and partition number
1033 * @disk: gendisk of interest
1034 * @partno: partition number
1035 *
1036 * Find partition @partno from @disk, do bdget() on it.
1037 *
1038 * CONTEXT:
1039 * Don't care.
1040 *
1041 * RETURNS:
1042 * Resulting block_device on success, NULL on failure.
1043 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001044struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +02001045{
Tejun Heo548b10e2008-08-29 09:01:47 +02001046 struct hd_struct *part;
1047 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +02001048
Tejun Heo548b10e2008-08-29 09:01:47 +02001049 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001050 if (part)
Christoph Hellwig10ed1662020-09-25 18:06:18 +02001051 bdev = bdget_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001052 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +02001053
Tejun Heo548b10e2008-08-29 09:01:47 +02001054 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +02001055}
1056EXPORT_SYMBOL(bdget_disk);
1057
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001058/*
1059 * print a full list of all partitions - intended for places where the root
1060 * filesystem can't be mounted and thus to give the victim some idea of what
1061 * went wrong
1062 */
1063void __init printk_all_partitions(void)
1064{
Tejun Heodef4e382008-09-03 08:57:12 +02001065 struct class_dev_iter iter;
1066 struct device *dev;
1067
1068 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1069 while ((dev = class_dev_iter_next(&iter))) {
1070 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001071 struct disk_part_iter piter;
1072 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +09001073 char name_buf[BDEVNAME_SIZE];
1074 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +02001075
1076 /*
1077 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001078 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +02001079 */
1080 if (get_capacity(disk) == 0 ||
1081 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
1082 continue;
1083
1084 /*
1085 * Note, unlike /proc/partitions, I am showing the
1086 * numbers in hex - the same format as the root=
1087 * option takes.
1088 */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001089 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
1090 while ((part = disk_part_iter_next(&piter))) {
1091 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +02001092
Will Drewryb5af9212010-08-31 15:47:07 -05001093 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +09001094 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001095 (unsigned long long)part_nr_sects_read(part) >> 1
1096 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -08001097 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +09001098 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -07001099 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +09001100 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -07001101 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001102 else
1103 printk(" (driver?)\n");
1104 } else
1105 printk("\n");
1106 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001107 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +02001108 }
1109 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112#ifdef CONFIG_PROC_FS
1113/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +02001114static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001115{
Tejun Heodef4e382008-09-03 08:57:12 +02001116 loff_t skip = *pos;
1117 struct class_dev_iter *iter;
1118 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001119
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001120 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +02001121 if (!iter)
1122 return ERR_PTR(-ENOMEM);
1123
1124 seqf->private = iter;
1125 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1126 do {
1127 dev = class_dev_iter_next(iter);
1128 if (!dev)
1129 return NULL;
1130 } while (skip--);
1131
1132 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001133}
1134
Tejun Heodef4e382008-09-03 08:57:12 +02001135static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001137 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -04001138
Tejun Heodef4e382008-09-03 08:57:12 +02001139 (*pos)++;
1140 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001141 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001142 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return NULL;
1145}
1146
Tejun Heodef4e382008-09-03 08:57:12 +02001147static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001148{
Tejun Heodef4e382008-09-03 08:57:12 +02001149 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001150
Tejun Heodef4e382008-09-03 08:57:12 +02001151 /* stop is called even after start failed :-( */
1152 if (iter) {
1153 class_dev_iter_exit(iter);
1154 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001155 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Tejun Heodef4e382008-09-03 08:57:12 +02001159static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Jianpeng Ma06768062012-08-03 10:42:00 +02001161 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001162
1163 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001164 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001165 seq_puts(seqf, "major minor #blocks name\n\n");
1166 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Tejun Heocf771cb2008-09-03 09:01:09 +02001169static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001172 struct disk_part_iter piter;
1173 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 char buf[BDEVNAME_SIZE];
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001177 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001178 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return 0;
1180 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1181 return 0;
1182
1183 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001184 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001185 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001186 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001187 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001188 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001189 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001190 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 return 0;
1193}
1194
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001195static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001196 .start = show_partition_start,
1197 .next = disk_seqf_next,
1198 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001199 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200};
1201#endif
1202
1203
Tejun Heocf771cb2008-09-03 09:01:09 +02001204static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001206 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001208 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return NULL;
1210}
1211
1212static int __init genhd_device_init(void)
1213{
Dan Williamse105b8b2008-04-21 10:51:07 -07001214 int error;
1215
1216 block_class.dev_kobj = sysfs_dev_block_kobj;
1217 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001218 if (unlikely(error))
1219 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001220 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001222
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001223 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1224
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001225 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001226 if (!sysfs_deprecated)
1227 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
1231subsys_initcall(genhd_device_init);
1232
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001233static ssize_t disk_range_show(struct device *dev,
1234 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001236 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001238 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Tejun Heo1f014292008-08-25 19:47:23 +09001241static ssize_t disk_ext_range_show(struct device *dev,
1242 struct device_attribute *attr, char *buf)
1243{
1244 struct gendisk *disk = dev_to_disk(dev);
1245
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001246 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001247}
1248
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001249static ssize_t disk_removable_show(struct device *dev,
1250 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001251{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001252 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001253
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001254 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001256}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001258static ssize_t disk_hidden_show(struct device *dev,
1259 struct device_attribute *attr, char *buf)
1260{
1261 struct gendisk *disk = dev_to_disk(dev);
1262
1263 return sprintf(buf, "%d\n",
1264 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1265}
1266
Kay Sievers1c9ce522008-06-13 09:41:00 +02001267static ssize_t disk_ro_show(struct device *dev,
1268 struct device_attribute *attr, char *buf)
1269{
1270 struct gendisk *disk = dev_to_disk(dev);
1271
Tejun Heob7db9952008-08-25 19:56:10 +09001272 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001273}
1274
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001275ssize_t part_size_show(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
1278 struct hd_struct *p = dev_to_part(dev);
1279
1280 return sprintf(buf, "%llu\n",
1281 (unsigned long long)part_nr_sects_read(p));
1282}
1283
1284ssize_t part_stat_show(struct device *dev,
1285 struct device_attribute *attr, char *buf)
1286{
1287 struct hd_struct *p = dev_to_part(dev);
1288 struct request_queue *q = part_to_disk(p)->queue;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001289 struct disk_stats stat;
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001290 unsigned int inflight;
1291
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001292 part_stat_read_all(p, &stat);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001293 if (queue_is_mq(q))
1294 inflight = blk_mq_in_flight(q, p);
1295 else
Christoph Hellwig1f069592020-08-31 20:02:39 +02001296 inflight = part_in_flight(p);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001297
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001298 return sprintf(buf,
1299 "%8lu %8lu %8llu %8u "
1300 "%8lu %8lu %8llu %8u "
1301 "%8u %8u %8u "
1302 "%8lu %8lu %8llu %8u "
1303 "%8lu %8u"
1304 "\n",
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001305 stat.ios[STAT_READ],
1306 stat.merges[STAT_READ],
1307 (unsigned long long)stat.sectors[STAT_READ],
1308 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1309 stat.ios[STAT_WRITE],
1310 stat.merges[STAT_WRITE],
1311 (unsigned long long)stat.sectors[STAT_WRITE],
1312 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001313 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001314 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001315 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1316 stat.nsecs[STAT_WRITE] +
1317 stat.nsecs[STAT_DISCARD] +
1318 stat.nsecs[STAT_FLUSH],
1319 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001320 stat.ios[STAT_DISCARD],
1321 stat.merges[STAT_DISCARD],
1322 (unsigned long long)stat.sectors[STAT_DISCARD],
1323 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1324 stat.ios[STAT_FLUSH],
1325 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001326}
1327
1328ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1329 char *buf)
1330{
1331 struct hd_struct *p = dev_to_part(dev);
1332 struct request_queue *q = part_to_disk(p)->queue;
1333 unsigned int inflight[2];
1334
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001335 if (queue_is_mq(q))
1336 blk_mq_in_flight_rw(q, p, inflight);
1337 else
Christoph Hellwig1f069592020-08-31 20:02:39 +02001338 part_in_flight_rw(p, inflight);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001339
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001340 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1341}
1342
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001343static ssize_t disk_capability_show(struct device *dev,
1344 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001345{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001346 struct gendisk *disk = dev_to_disk(dev);
1347
1348 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001349}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001350
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001351static ssize_t disk_alignment_offset_show(struct device *dev,
1352 struct device_attribute *attr,
1353 char *buf)
1354{
1355 struct gendisk *disk = dev_to_disk(dev);
1356
1357 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1358}
1359
Martin K. Petersen86b37282009-11-10 11:50:21 +01001360static ssize_t disk_discard_alignment_show(struct device *dev,
1361 struct device_attribute *attr,
1362 char *buf)
1363{
1364 struct gendisk *disk = dev_to_disk(dev);
1365
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001366 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001367}
1368
Joe Perches5657a812018-05-24 13:38:59 -06001369static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1370static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1371static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1372static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1373static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1374static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1375static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1376static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1377static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1378static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1379static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1380static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001381
Akinobu Mitac17bb492006-12-08 02:39:46 -08001382#ifdef CONFIG_FAIL_MAKE_REQUEST
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001383ssize_t part_fail_show(struct device *dev,
1384 struct device_attribute *attr, char *buf)
1385{
1386 struct hd_struct *p = dev_to_part(dev);
1387
1388 return sprintf(buf, "%d\n", p->make_it_fail);
1389}
1390
1391ssize_t part_fail_store(struct device *dev,
1392 struct device_attribute *attr,
1393 const char *buf, size_t count)
1394{
1395 struct hd_struct *p = dev_to_part(dev);
1396 int i;
1397
1398 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1399 p->make_it_fail = (i == 0) ? 0 : 1;
1400
1401 return count;
1402}
1403
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001404static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001405 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001406#endif /* CONFIG_FAIL_MAKE_REQUEST */
1407
Jens Axboe581d4e22008-09-14 05:56:33 -07001408#ifdef CONFIG_FAIL_IO_TIMEOUT
1409static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001410 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001411#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001412
1413static struct attribute *disk_attrs[] = {
1414 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001415 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001416 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001417 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001418 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001419 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001420 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001421 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001422 &dev_attr_capability.attr,
1423 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001424 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001425 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001426#ifdef CONFIG_FAIL_MAKE_REQUEST
1427 &dev_attr_fail.attr,
1428#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001429#ifdef CONFIG_FAIL_IO_TIMEOUT
1430 &dev_attr_fail_timeout.attr,
1431#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001432 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433};
1434
Dan Williams9438b3e02017-04-27 14:46:26 -07001435static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1436{
1437 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1438 struct gendisk *disk = dev_to_disk(dev);
1439
1440 if (a == &dev_attr_badblocks.attr && !disk->bb)
1441 return 0;
1442 return a->mode;
1443}
1444
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001445static struct attribute_group disk_attr_group = {
1446 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001447 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001448};
1449
David Brownella4dbd672009-06-24 10:06:31 -07001450static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001451 &disk_attr_group,
1452 NULL
1453};
1454
Tejun Heo540eed52008-08-25 19:56:15 +09001455/**
1456 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1457 * @disk: disk to replace part_tbl for
1458 * @new_ptbl: new part_tbl to install
1459 *
1460 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1461 * original ptbl is freed using RCU callback.
1462 *
1463 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001464 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001465 */
1466static void disk_replace_part_tbl(struct gendisk *disk,
1467 struct disk_part_tbl *new_ptbl)
1468{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001469 struct disk_part_tbl *old_ptbl =
1470 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001471
1472 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001473
1474 if (old_ptbl) {
1475 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001476 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001477 }
Tejun Heo540eed52008-08-25 19:56:15 +09001478}
1479
1480/**
1481 * disk_expand_part_tbl - expand disk->part_tbl
1482 * @disk: disk to expand part_tbl for
1483 * @partno: expand such that this partno can fit in
1484 *
1485 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1486 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1487 *
1488 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001489 * Matching bd_mutex locked or the caller is the only user of @disk.
1490 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001491 *
1492 * RETURNS:
1493 * 0 on success, -errno on failure.
1494 */
1495int disk_expand_part_tbl(struct gendisk *disk, int partno)
1496{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001497 struct disk_part_tbl *old_ptbl =
1498 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001499 struct disk_part_tbl *new_ptbl;
1500 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001501 int i, target;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001502
1503 /*
1504 * check for int overflow, since we can get here from blkpg_ioctl()
1505 * with a user passed 'partno'.
1506 */
1507 target = partno + 1;
1508 if (target < 0)
1509 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001510
1511 /* disk_max_parts() is zero during initialization, ignore if so */
1512 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1513 return -EINVAL;
1514
1515 if (target <= len)
1516 return 0;
1517
Gustavo A. R. Silva78b90a22019-05-31 13:47:54 -05001518 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1519 disk->node_id);
Tejun Heo540eed52008-08-25 19:56:15 +09001520 if (!new_ptbl)
1521 return -ENOMEM;
1522
Tejun Heo540eed52008-08-25 19:56:15 +09001523 new_ptbl->len = target;
1524
1525 for (i = 0; i < len; i++)
1526 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1527
1528 disk_replace_part_tbl(disk, new_ptbl);
1529 return 0;
1530}
1531
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001532/**
1533 * disk_release - releases all allocated resources of the gendisk
1534 * @dev: the device representing this disk
1535 *
1536 * This function releases all allocated resources of the gendisk.
1537 *
1538 * The struct gendisk refcount is incremented with get_gendisk() or
1539 * get_disk_and_module(), and its refcount is decremented with
1540 * put_disk_and_module() or put_disk(). Once the refcount reaches 0 this
1541 * function is called.
1542 *
1543 * Drivers which used __device_add_disk() have a gendisk with a request_queue
1544 * assigned. Since the request_queue sits on top of the gendisk for these
1545 * drivers we also call blk_put_queue() for them, and we expect the
1546 * request_queue refcount to reach 0 at this point, and so the request_queue
1547 * will also be freed prior to the disk.
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001548 *
1549 * Context: can sleep
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001550 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001551static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001553 struct gendisk *disk = dev_to_disk(dev);
1554
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001555 might_sleep();
1556
Keith Busch2da78092014-08-26 09:05:36 -06001557 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001558 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001560 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001561 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001562 if (disk->queue)
1563 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 kfree(disk);
1565}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001566struct class block_class = {
1567 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568};
1569
Kay Sievers3c2670e2013-04-06 09:56:00 -07001570static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001571 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001572{
1573 struct gendisk *disk = dev_to_disk(dev);
1574
Christoph Hellwig348e1142020-03-27 09:07:17 +01001575 if (disk->fops->devnode)
1576 return disk->fops->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001577 return NULL;
1578}
1579
Boris Burkovef45fe42020-06-01 13:12:05 -07001580const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001581 .name = "disk",
1582 .groups = disk_attr_groups,
1583 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001584 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585};
1586
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001587#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001588/*
1589 * aggregate disk stat collector. Uses the same stats that the sysfs
1590 * entries do, above, but makes them available through one seq_file.
1591 *
1592 * The output looks suspiciously like /proc/partitions with a bunch of
1593 * extra fields.
1594 */
1595static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001598 struct disk_part_iter piter;
1599 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001601 unsigned int inflight;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001602 struct disk_stats stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001605 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001606 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 " rio rmerge rsect ruse wio wmerge "
1608 "wsect wuse running use aveq"
1609 "\n\n");
1610 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001611
Tejun Heo71982a42009-04-17 08:34:48 +02001612 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001613 while ((hd = disk_part_iter_next(&piter))) {
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001614 part_stat_read_all(hd, &stat);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001615 if (queue_is_mq(gp->queue))
1616 inflight = blk_mq_in_flight(gp->queue, hd);
1617 else
Christoph Hellwig1f069592020-08-31 20:02:39 +02001618 inflight = part_in_flight(hd);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001619
Michael Callahanbdca3c82018-07-18 04:47:40 -07001620 seq_printf(seqf, "%4d %7d %s "
1621 "%lu %lu %lu %u "
1622 "%lu %lu %lu %u "
1623 "%u %u %u "
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001624 "%lu %lu %lu %u "
1625 "%lu %u"
1626 "\n",
Tejun Heof331c022008-09-03 09:01:48 +02001627 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1628 disk_name(gp, hd->partno, buf),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001629 stat.ios[STAT_READ],
1630 stat.merges[STAT_READ],
1631 stat.sectors[STAT_READ],
1632 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1633 NSEC_PER_MSEC),
1634 stat.ios[STAT_WRITE],
1635 stat.merges[STAT_WRITE],
1636 stat.sectors[STAT_WRITE],
1637 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1638 NSEC_PER_MSEC),
Mikulas Patockae016b782018-12-06 11:41:21 -05001639 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001640 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001641 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1642 stat.nsecs[STAT_WRITE] +
1643 stat.nsecs[STAT_DISCARD] +
1644 stat.nsecs[STAT_FLUSH],
1645 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001646 stat.ios[STAT_DISCARD],
1647 stat.merges[STAT_DISCARD],
1648 stat.sectors[STAT_DISCARD],
1649 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1650 NSEC_PER_MSEC),
1651 stat.ios[STAT_FLUSH],
1652 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1653 NSEC_PER_MSEC)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001654 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001656 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 return 0;
1659}
1660
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001661static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001662 .start = disk_seqf_start,
1663 .next = disk_seqf_next,
1664 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 .show = diskstats_show
1666};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001667
1668static int __init proc_genhd_init(void)
1669{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001670 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1671 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001672 return 0;
1673}
1674module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001675#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Tejun Heocf771cb2008-09-03 09:01:09 +02001677dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001678{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001679 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001680 struct class_dev_iter iter;
1681 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001682
Tejun Heodef4e382008-09-03 08:57:12 +02001683 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1684 while ((dev = class_dev_iter_next(&iter))) {
1685 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001686 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001687
Kay Sievers3ada8b72009-01-06 10:44:43 -08001688 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001689 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001690
Neil Brown41b8c852009-02-18 10:33:59 +01001691 if (partno < disk->minors) {
1692 /* We need to return the right devno, even
1693 * if the partition doesn't exist yet.
1694 */
1695 devt = MKDEV(MAJOR(dev->devt),
1696 MINOR(dev->devt) + partno);
1697 break;
1698 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001699 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001700 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001701 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001702 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001703 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001704 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001705 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001706 }
Tejun Heodef4e382008-09-03 08:57:12 +02001707 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001708 return devt;
1709}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001710
Byungchul Parke319e1f2017-10-25 17:56:05 +09001711struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001712{
1713 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001714 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001715
Christoph Hellwigde65b012017-08-23 19:10:29 +02001716 if (minors > DISK_MAX_PARTS) {
1717 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001718 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001719 DISK_MAX_PARTS);
1720 minors = DISK_MAX_PARTS;
1721 }
Christoph Lameter19460892005-06-23 00:08:19 -07001722
Joe Perchesc1b511e2013-08-29 15:21:42 -07001723 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001724 if (!disk)
1725 return NULL;
Jens Axboe6c23a962011-01-07 08:43:37 +01001726
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001727 disk->part0.dkstats = alloc_percpu(struct disk_stats);
1728 if (!disk->part0.dkstats)
1729 goto out_free_disk;
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001730
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001731 init_rwsem(&disk->lookup_sem);
1732 disk->node_id = node_id;
1733 if (disk_expand_part_tbl(disk, 0)) {
1734 free_percpu(disk->part0.dkstats);
1735 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001737
1738 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1739 rcu_assign_pointer(ptbl->part[0], &disk->part0);
1740
1741 /*
1742 * set_capacity() and get_capacity() currently don't use
1743 * seqcounter to read/update the part0->nr_sects. Still init
1744 * the counter as we can read the sectors in IO submission
1745 * patch using seqence counters.
1746 *
1747 * TODO: Ideally set_capacity() and get_capacity() should be
1748 * converted to make use of bd_mutex and sequence counters.
1749 */
1750 hd_sects_seq_init(&disk->part0);
1751 if (hd_ref_init(&disk->part0))
1752 goto out_free_part0;
1753
1754 disk->minors = minors;
1755 rand_initialize_disk(disk);
1756 disk_to_dev(disk)->class = &block_class;
1757 disk_to_dev(disk)->type = &disk_type;
1758 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 return disk;
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001760
1761out_free_part0:
1762 hd_free_part(&disk->part0);
1763out_free_disk:
1764 kfree(disk);
1765 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001767EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001769/**
1770 * get_disk_and_module - increments the gendisk and gendisk fops module refcount
Randy Dunlap0d20dcc2020-07-30 18:42:30 -07001771 * @disk: the struct gendisk to increment the refcount for
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001772 *
1773 * This increments the refcount for the struct gendisk, and the gendisk's
1774 * fops module owner.
Luis Chamberlain763b5892020-06-19 20:47:24 +00001775 *
1776 * Context: Any context.
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001777 */
Jan Kara3079c222018-02-26 13:01:38 +01001778struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 struct module *owner;
1781 struct kobject *kobj;
1782
1783 if (!disk->fops)
1784 return NULL;
1785 owner = disk->fops->owner;
1786 if (owner && !try_module_get(owner))
1787 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001788 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (kobj == NULL) {
1790 module_put(owner);
1791 return NULL;
1792 }
1793 return kobj;
1794
1795}
Jan Kara3079c222018-02-26 13:01:38 +01001796EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001798/**
1799 * put_disk - decrements the gendisk refcount
Randy Dunlap0d20dcc2020-07-30 18:42:30 -07001800 * @disk: the struct gendisk to decrement the refcount for
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001801 *
1802 * This decrements the refcount for the struct gendisk. When this reaches 0
1803 * we'll have disk_release() called.
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001804 *
1805 * Context: Any context, but the last reference must not be dropped from
1806 * atomic context.
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808void put_disk(struct gendisk *disk)
1809{
1810 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001811 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813EXPORT_SYMBOL(put_disk);
1814
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001815/**
1816 * put_disk_and_module - decrements the module and gendisk refcount
Randy Dunlap0d20dcc2020-07-30 18:42:30 -07001817 * @disk: the struct gendisk to decrement the refcount for
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001818 *
Jan Kara9df6c292018-02-26 13:01:39 +01001819 * This is a counterpart of get_disk_and_module() and thus also of
1820 * get_gendisk().
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001821 *
1822 * Context: Any context, but the last reference must not be dropped from
1823 * atomic context.
Jan Kara9df6c292018-02-26 13:01:39 +01001824 */
1825void put_disk_and_module(struct gendisk *disk)
1826{
1827 if (disk) {
1828 struct module *owner = disk->fops->owner;
1829
1830 put_disk(disk);
1831 module_put(owner);
1832 }
1833}
1834EXPORT_SYMBOL(put_disk_and_module);
1835
Hannes Reineckee3264a42009-07-28 09:13:13 +02001836static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1837{
1838 char event[] = "DISK_RO=1";
1839 char *envp[] = { event, NULL };
1840
1841 if (!ro)
1842 event[8] = '0';
1843 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1844}
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846void set_device_ro(struct block_device *bdev, int flag)
1847{
Tejun Heob7db9952008-08-25 19:56:10 +09001848 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850
1851EXPORT_SYMBOL(set_device_ro);
1852
1853void set_disk_ro(struct gendisk *disk, int flag)
1854{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001855 struct disk_part_iter piter;
1856 struct hd_struct *part;
1857
Hannes Reineckee3264a42009-07-28 09:13:13 +02001858 if (disk->part0.policy != flag) {
1859 set_disk_ro_uevent(disk, flag);
1860 disk->part0.policy = flag;
1861 }
1862
1863 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001864 while ((part = disk_part_iter_next(&piter)))
1865 part->policy = flag;
1866 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867}
1868
1869EXPORT_SYMBOL(set_disk_ro);
1870
1871int bdev_read_only(struct block_device *bdev)
1872{
1873 if (!bdev)
1874 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001875 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
1878EXPORT_SYMBOL(bdev_read_only);
1879
Tejun Heo77ea8872010-12-08 20:57:37 +01001880/*
1881 * Disk events - monitor disk events like media change and eject request.
1882 */
1883struct disk_events {
1884 struct list_head node; /* all disk_event's */
1885 struct gendisk *disk; /* the associated disk */
1886 spinlock_t lock;
1887
Tejun Heofdd514e2011-06-09 20:43:59 +02001888 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001889 int block; /* event blocking depth */
1890 unsigned int pending; /* events already sent out */
1891 unsigned int clearing; /* events being cleared */
1892
1893 long poll_msecs; /* interval, -1 for default */
1894 struct delayed_work dwork;
1895};
1896
1897static const char *disk_events_strs[] = {
1898 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1899 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1900};
1901
1902static char *disk_uevents[] = {
1903 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1904 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1905};
1906
1907/* list of all disk_events */
1908static DEFINE_MUTEX(disk_events_mutex);
1909static LIST_HEAD(disk_events);
1910
1911/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001912static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001913
1914static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1915{
1916 struct disk_events *ev = disk->ev;
1917 long intv_msecs = 0;
1918
1919 /*
1920 * If device-specific poll interval is set, always use it. If
Martin Wilck673387a2019-03-27 14:51:01 +01001921 * the default is being used, poll if the POLL flag is set.
Tejun Heo77ea8872010-12-08 20:57:37 +01001922 */
1923 if (ev->poll_msecs >= 0)
1924 intv_msecs = ev->poll_msecs;
Martin Wilckc92e2f02019-03-27 14:51:02 +01001925 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
Tejun Heo77ea8872010-12-08 20:57:37 +01001926 intv_msecs = disk_events_dfl_poll_msecs;
1927
1928 return msecs_to_jiffies(intv_msecs);
1929}
1930
Tejun Heoc3af54a2011-06-09 20:43:55 +02001931/**
1932 * disk_block_events - block and flush disk event checking
1933 * @disk: disk to block events for
1934 *
1935 * On return from this function, it is guaranteed that event checking
1936 * isn't in progress and won't happen until unblocked by
1937 * disk_unblock_events(). Events blocking is counted and the actual
1938 * unblocking happens after the matching number of unblocks are done.
1939 *
1940 * Note that this intentionally does not block event checking from
1941 * disk_clear_events().
1942 *
1943 * CONTEXT:
1944 * Might sleep.
1945 */
1946void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001947{
1948 struct disk_events *ev = disk->ev;
1949 unsigned long flags;
1950 bool cancel;
1951
Tejun Heoc3af54a2011-06-09 20:43:55 +02001952 if (!ev)
1953 return;
1954
Tejun Heofdd514e2011-06-09 20:43:59 +02001955 /*
1956 * Outer mutex ensures that the first blocker completes canceling
1957 * the event work before further blockers are allowed to finish.
1958 */
1959 mutex_lock(&ev->block_mutex);
1960
Tejun Heo77ea8872010-12-08 20:57:37 +01001961 spin_lock_irqsave(&ev->lock, flags);
1962 cancel = !ev->block++;
1963 spin_unlock_irqrestore(&ev->lock, flags);
1964
Tejun Heoc3af54a2011-06-09 20:43:55 +02001965 if (cancel)
1966 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001967
1968 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001969}
1970
1971static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1972{
1973 struct disk_events *ev = disk->ev;
1974 unsigned long intv;
1975 unsigned long flags;
1976
1977 spin_lock_irqsave(&ev->lock, flags);
1978
1979 if (WARN_ON_ONCE(ev->block <= 0))
1980 goto out_unlock;
1981
1982 if (--ev->block)
1983 goto out_unlock;
1984
Tejun Heo77ea8872010-12-08 20:57:37 +01001985 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001986 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301987 queue_delayed_work(system_freezable_power_efficient_wq,
1988 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001989 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301990 queue_delayed_work(system_freezable_power_efficient_wq,
1991 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001992out_unlock:
1993 spin_unlock_irqrestore(&ev->lock, flags);
1994}
1995
1996/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001997 * disk_unblock_events - unblock disk event checking
1998 * @disk: disk to unblock events for
1999 *
2000 * Undo disk_block_events(). When the block count reaches zero, it
2001 * starts events polling if configured.
2002 *
2003 * CONTEXT:
2004 * Don't care. Safe to call from irq context.
2005 */
2006void disk_unblock_events(struct gendisk *disk)
2007{
2008 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01002009 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002010}
2011
2012/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02002013 * disk_flush_events - schedule immediate event checking and flushing
2014 * @disk: disk to check and flush events for
2015 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01002016 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02002017 * Schedule immediate event checking on @disk if not blocked. Events in
2018 * @mask are scheduled to be cleared from the driver. Note that this
2019 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01002020 *
2021 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02002022 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01002023 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02002024void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01002025{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02002026 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02002027
2028 if (!ev)
2029 return;
2030
Tejun Heo85ef06d2011-07-01 16:17:47 +02002031 spin_lock_irq(&ev->lock);
2032 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07002033 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05302034 mod_delayed_work(system_freezable_power_efficient_wq,
2035 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02002036 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002037}
Tejun Heo77ea8872010-12-08 20:57:37 +01002038
2039/**
2040 * disk_clear_events - synchronously check, clear and return pending events
2041 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09002042 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01002043 *
2044 * Disk events are synchronously checked and pending events in @mask
2045 * are cleared and returned. This ignores the block count.
2046 *
2047 * CONTEXT:
2048 * Might sleep.
2049 */
Christoph Hellwig95f6f3a2020-09-08 16:53:29 +02002050static unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01002051{
Tejun Heo77ea8872010-12-08 20:57:37 +01002052 struct disk_events *ev = disk->ev;
2053 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002054 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01002055
Christoph Hellwiga564e232020-07-08 14:25:41 +02002056 if (!ev)
Tejun Heo77ea8872010-12-08 20:57:37 +01002057 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002058
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002059 disk_block_events(disk);
2060
2061 /*
2062 * store the union of mask and ev->clearing on the stack so that the
2063 * race with disk_flush_events does not cause ambiguity (ev->clearing
2064 * can still be modified even if events are blocked).
2065 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002066 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002067 clearing |= ev->clearing;
2068 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002069 spin_unlock_irq(&ev->lock);
2070
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002071 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08002072 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002073 * if ev->clearing is not 0, the disk_flush_events got called in the
2074 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08002075 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002076 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002077
2078 /* then, fetch and clear pending events */
2079 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002080 pending = ev->pending & mask;
2081 ev->pending &= ~mask;
2082 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002083 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01002084
2085 return pending;
2086}
2087
Christoph Hellwig95f6f3a2020-09-08 16:53:29 +02002088/**
2089 * bdev_check_media_change - check if a removable media has been changed
2090 * @bdev: block device to check
2091 *
2092 * Check whether a removable media has been changed, and attempt to free all
2093 * dentries and inodes and invalidates all block device page cache entries in
2094 * that case.
2095 *
2096 * Returns %true if the block device changed, or %false if not.
2097 */
2098bool bdev_check_media_change(struct block_device *bdev)
2099{
2100 unsigned int events;
2101
2102 events = disk_clear_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE |
2103 DISK_EVENT_EJECT_REQUEST);
2104 if (!(events & DISK_EVENT_MEDIA_CHANGE))
2105 return false;
2106
2107 if (__invalidate_device(bdev, true))
2108 pr_warn("VFS: busy inodes on changed media %s\n",
2109 bdev->bd_disk->disk_name);
Christoph Hellwig38430f02020-09-21 09:19:45 +02002110 set_bit(GD_NEED_PART_SCAN, &bdev->bd_disk->state);
Christoph Hellwig95f6f3a2020-09-08 16:53:29 +02002111 return true;
2112}
2113EXPORT_SYMBOL(bdev_check_media_change);
2114
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002115/*
2116 * Separate this part out so that a different pointer for clearing_ptr can be
2117 * passed in for disk_clear_events.
2118 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002119static void disk_events_workfn(struct work_struct *work)
2120{
2121 struct delayed_work *dwork = to_delayed_work(work);
2122 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002123
2124 disk_check_events(ev, &ev->clearing);
2125}
2126
2127static void disk_check_events(struct disk_events *ev,
2128 unsigned int *clearing_ptr)
2129{
Tejun Heo77ea8872010-12-08 20:57:37 +01002130 struct gendisk *disk = ev->disk;
2131 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002132 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01002133 unsigned int events;
2134 unsigned long intv;
2135 int nr_events = 0, i;
2136
2137 /* check events */
2138 events = disk->fops->check_events(disk, clearing);
2139
2140 /* accumulate pending events and schedule next poll if necessary */
2141 spin_lock_irq(&ev->lock);
2142
2143 events &= ~ev->pending;
2144 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002145 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01002146
2147 intv = disk_events_poll_jiffies(disk);
2148 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05302149 queue_delayed_work(system_freezable_power_efficient_wq,
2150 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01002151
2152 spin_unlock_irq(&ev->lock);
2153
Tejun Heo7c88a162011-04-21 19:43:58 +02002154 /*
2155 * Tell userland about new events. Only the events listed in
Martin Wilckc92e2f02019-03-27 14:51:02 +01002156 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
2157 * is set. Otherwise, events are processed internally but never
2158 * get reported to userland.
Tejun Heo7c88a162011-04-21 19:43:58 +02002159 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002160 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Martin Wilckc92e2f02019-03-27 14:51:02 +01002161 if ((events & disk->events & (1 << i)) &&
2162 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
Tejun Heo77ea8872010-12-08 20:57:37 +01002163 envp[nr_events++] = disk_uevents[i];
2164
2165 if (nr_events)
2166 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
2167}
2168
2169/*
2170 * A disk events enabled device has the following sysfs nodes under
2171 * its /sys/block/X/ directory.
2172 *
2173 * events : list of all supported events
2174 * events_async : list of events which can be detected w/o polling
Martin Wilck673387a2019-03-27 14:51:01 +01002175 * (always empty, only for backwards compatibility)
Tejun Heo77ea8872010-12-08 20:57:37 +01002176 * events_poll_msecs : polling interval, 0: disable, -1: system default
2177 */
2178static ssize_t __disk_events_show(unsigned int events, char *buf)
2179{
2180 const char *delim = "";
2181 ssize_t pos = 0;
2182 int i;
2183
2184 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
2185 if (events & (1 << i)) {
2186 pos += sprintf(buf + pos, "%s%s",
2187 delim, disk_events_strs[i]);
2188 delim = " ";
2189 }
2190 if (pos)
2191 pos += sprintf(buf + pos, "\n");
2192 return pos;
2193}
2194
2195static ssize_t disk_events_show(struct device *dev,
2196 struct device_attribute *attr, char *buf)
2197{
2198 struct gendisk *disk = dev_to_disk(dev);
2199
Martin Wilckc92e2f02019-03-27 14:51:02 +01002200 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
2201 return 0;
2202
Tejun Heo77ea8872010-12-08 20:57:37 +01002203 return __disk_events_show(disk->events, buf);
2204}
2205
2206static ssize_t disk_events_async_show(struct device *dev,
2207 struct device_attribute *attr, char *buf)
2208{
Martin Wilck673387a2019-03-27 14:51:01 +01002209 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002210}
2211
2212static ssize_t disk_events_poll_msecs_show(struct device *dev,
2213 struct device_attribute *attr,
2214 char *buf)
2215{
2216 struct gendisk *disk = dev_to_disk(dev);
2217
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002218 if (!disk->ev)
2219 return sprintf(buf, "-1\n");
2220
Tejun Heo77ea8872010-12-08 20:57:37 +01002221 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
2222}
2223
2224static ssize_t disk_events_poll_msecs_store(struct device *dev,
2225 struct device_attribute *attr,
2226 const char *buf, size_t count)
2227{
2228 struct gendisk *disk = dev_to_disk(dev);
2229 long intv;
2230
2231 if (!count || !sscanf(buf, "%ld", &intv))
2232 return -EINVAL;
2233
2234 if (intv < 0 && intv != -1)
2235 return -EINVAL;
2236
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002237 if (!disk->ev)
2238 return -ENODEV;
2239
Tejun Heoc3af54a2011-06-09 20:43:55 +02002240 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002241 disk->ev->poll_msecs = intv;
2242 __disk_unblock_events(disk, true);
2243
2244 return count;
2245}
2246
Joe Perches5657a812018-05-24 13:38:59 -06002247static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
2248static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
2249static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01002250 disk_events_poll_msecs_show,
2251 disk_events_poll_msecs_store);
2252
2253static const struct attribute *disk_events_attrs[] = {
2254 &dev_attr_events.attr,
2255 &dev_attr_events_async.attr,
2256 &dev_attr_events_poll_msecs.attr,
2257 NULL,
2258};
2259
2260/*
2261 * The default polling interval can be specified by the kernel
2262 * parameter block.events_dfl_poll_msecs which defaults to 0
2263 * (disable). This can also be modified runtime by writing to
Akinobu Mita1624b0b2019-07-16 21:59:35 +09002264 * /sys/module/block/parameters/events_dfl_poll_msecs.
Tejun Heo77ea8872010-12-08 20:57:37 +01002265 */
2266static int disk_events_set_dfl_poll_msecs(const char *val,
2267 const struct kernel_param *kp)
2268{
2269 struct disk_events *ev;
2270 int ret;
2271
2272 ret = param_set_ulong(val, kp);
2273 if (ret < 0)
2274 return ret;
2275
2276 mutex_lock(&disk_events_mutex);
2277
2278 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02002279 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01002280
2281 mutex_unlock(&disk_events_mutex);
2282
2283 return 0;
2284}
2285
2286static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2287 .set = disk_events_set_dfl_poll_msecs,
2288 .get = param_get_ulong,
2289};
2290
2291#undef MODULE_PARAM_PREFIX
2292#define MODULE_PARAM_PREFIX "block."
2293
2294module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2295 &disk_events_dfl_poll_msecs, 0644);
2296
2297/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002298 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01002299 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002300static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01002301{
2302 struct disk_events *ev;
2303
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002304 if (!disk->fops->check_events || !disk->events)
Tejun Heo77ea8872010-12-08 20:57:37 +01002305 return;
2306
2307 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2308 if (!ev) {
2309 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2310 return;
2311 }
2312
Tejun Heo77ea8872010-12-08 20:57:37 +01002313 INIT_LIST_HEAD(&ev->node);
2314 ev->disk = disk;
2315 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02002316 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01002317 ev->block = 1;
2318 ev->poll_msecs = -1;
2319 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2320
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002321 disk->ev = ev;
2322}
2323
2324static void disk_add_events(struct gendisk *disk)
2325{
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002326 /* FIXME: error handling */
2327 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2328 pr_warn("%s: failed to create sysfs files for events\n",
2329 disk->disk_name);
2330
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002331 if (!disk->ev)
2332 return;
2333
Tejun Heo77ea8872010-12-08 20:57:37 +01002334 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002335 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002336 mutex_unlock(&disk_events_mutex);
2337
2338 /*
2339 * Block count is initialized to 1 and the following initial
2340 * unblock kicks it into action.
2341 */
2342 __disk_unblock_events(disk, true);
2343}
2344
2345static void disk_del_events(struct gendisk *disk)
2346{
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002347 if (disk->ev) {
2348 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002349
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002350 mutex_lock(&disk_events_mutex);
2351 list_del_init(&disk->ev->node);
2352 mutex_unlock(&disk_events_mutex);
2353 }
Tejun Heo77ea8872010-12-08 20:57:37 +01002354
2355 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2356}
2357
2358static void disk_release_events(struct gendisk *disk)
2359{
2360 /* the block count should be 1 from disk_del_events() */
2361 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2362 kfree(disk->ev);
2363}