blob: 796baf7612024d7ad015c855b75315f1179f704a [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 */
Christoph Hellwig7e890c32020-11-12 17:50:04 +010052bool 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);
Christoph Hellwig7e890c32020-11-12 17:50:04 +010065 return true;
Balbir Singhe598a722020-03-13 05:30:05 +000066 }
Christoph Hellwig7e890c32020-11-12 17:50:04 +010067
68 return false;
Balbir Singhe598a722020-03-13 05:30:05 +000069}
70
71EXPORT_SYMBOL_GPL(set_capacity_revalidate_and_notify);
72
Christoph Hellwig5cbd28e2020-03-24 08:25:12 +010073/*
74 * Format the device name of the indicated disk into the supplied buffer and
75 * return a pointer to that same buffer for convenience.
76 */
77char *disk_name(struct gendisk *hd, int partno, char *buf)
78{
79 if (!partno)
80 snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name);
81 else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1]))
82 snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, partno);
83 else
84 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno);
85
86 return buf;
87}
88
89const char *bdevname(struct block_device *bdev, char *buf)
90{
Christoph Hellwig8a63a862020-09-03 07:41:03 +020091 return disk_name(bdev->bd_disk, bdev->bd_partno, buf);
Christoph Hellwig5cbd28e2020-03-24 08:25:12 +010092}
93EXPORT_SYMBOL(bdevname);
Balbir Singhe598a722020-03-13 05:30:05 +000094
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +030095static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
96{
97 int cpu;
98
99 memset(stat, 0, sizeof(struct disk_stats));
100 for_each_possible_cpu(cpu) {
101 struct disk_stats *ptr = per_cpu_ptr(part->dkstats, cpu);
102 int group;
103
104 for (group = 0; group < NR_STAT_GROUPS; group++) {
105 stat->nsecs[group] += ptr->nsecs[group];
106 stat->sectors[group] += ptr->sectors[group];
107 stat->ios[group] += ptr->ios[group];
108 stat->merges[group] += ptr->merges[group];
109 }
110
111 stat->io_ticks += ptr->io_ticks;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300112 }
113}
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300114
Christoph Hellwig1f069592020-08-31 20:02:39 +0200115static unsigned int part_in_flight(struct hd_struct *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600116{
Christoph Hellwigb2f609e2020-05-13 12:49:33 +0200117 unsigned int inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500118 int cpu;
119
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500120 for_each_possible_cpu(cpu) {
Mikulas Patockae016b782018-12-06 11:41:21 -0500121 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
122 part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500123 }
Mikulas Patockae016b782018-12-06 11:41:21 -0500124 if ((int)inflight < 0)
125 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500126
Mikulas Patockae016b782018-12-06 11:41:21 -0500127 return inflight;
Jens Axboef299b7c2017-08-08 17:51:45 -0600128}
129
Christoph Hellwig1f069592020-08-31 20:02:39 +0200130static void part_in_flight_rw(struct hd_struct *part, unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700131{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500132 int cpu;
133
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500134 inflight[0] = 0;
135 inflight[1] = 0;
136 for_each_possible_cpu(cpu) {
137 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
138 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
139 }
140 if ((int)inflight[0] < 0)
141 inflight[0] = 0;
142 if ((int)inflight[1] < 0)
143 inflight[1] = 0;
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700144}
145
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200146struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
147{
148 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
149
150 if (unlikely(partno < 0 || partno >= ptbl->len))
151 return NULL;
152 return rcu_dereference(ptbl->part[partno]);
153}
154
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200155/**
156 * disk_get_part - get partition
157 * @disk: disk to look partition from
158 * @partno: partition number
159 *
160 * Look for partition @partno from @disk. If found, increment
161 * reference count and return it.
162 *
163 * CONTEXT:
164 * Don't care.
165 *
166 * RETURNS:
167 * Pointer to the found partition on success, NULL if not found.
168 */
169struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
170{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200171 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900172
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200173 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200174 part = __disk_get_part(disk, partno);
175 if (part)
176 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200177 rcu_read_unlock();
178
179 return part;
180}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200181
182/**
183 * disk_part_iter_init - initialize partition iterator
184 * @piter: iterator to initialize
185 * @disk: disk to iterate over
186 * @flags: DISK_PITER_* flags
187 *
188 * Initialize @piter so that it iterates over partitions of @disk.
189 *
190 * CONTEXT:
191 * Don't care.
192 */
193void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
194 unsigned int flags)
195{
Tejun Heo540eed52008-08-25 19:56:15 +0900196 struct disk_part_tbl *ptbl;
197
198 rcu_read_lock();
199 ptbl = rcu_dereference(disk->part_tbl);
200
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200201 piter->disk = disk;
202 piter->part = NULL;
203
204 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900205 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200206 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200207 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200208 else
209 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200210
211 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900212
213 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200214}
215EXPORT_SYMBOL_GPL(disk_part_iter_init);
216
217/**
218 * disk_part_iter_next - proceed iterator to the next partition and return it
219 * @piter: iterator of interest
220 *
221 * Proceed @piter to the next partition and return it.
222 *
223 * CONTEXT:
224 * Don't care.
225 */
226struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
227{
Tejun Heo540eed52008-08-25 19:56:15 +0900228 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200229 int inc, end;
230
231 /* put the last partition */
232 disk_put_part(piter->part);
233 piter->part = NULL;
234
Tejun Heo540eed52008-08-25 19:56:15 +0900235 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200236 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900237 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200238
239 /* determine iteration parameters */
240 if (piter->flags & DISK_PITER_REVERSE) {
241 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200242 if (piter->flags & (DISK_PITER_INCL_PART0 |
243 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200244 end = -1;
245 else
246 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200247 } else {
248 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900249 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200250 }
251
252 /* iterate to the next partition */
253 for (; piter->idx != end; piter->idx += inc) {
254 struct hd_struct *part;
255
Tejun Heo540eed52008-08-25 19:56:15 +0900256 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200257 if (!part)
258 continue;
Ming Lei481097d2020-12-21 12:33:35 +0800259 get_device(part_to_dev(part));
260 piter->part = part;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200261 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200262 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
263 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
Ming Lei481097d2020-12-21 12:33:35 +0800264 piter->idx == 0)) {
265 put_device(part_to_dev(part));
266 piter->part = NULL;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200267 continue;
Ming Lei481097d2020-12-21 12:33:35 +0800268 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200269
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200270 piter->idx += inc;
271 break;
272 }
273
274 rcu_read_unlock();
275
276 return piter->part;
277}
278EXPORT_SYMBOL_GPL(disk_part_iter_next);
279
280/**
281 * disk_part_iter_exit - finish up partition iteration
282 * @piter: iter of interest
283 *
284 * Called when iteration is over. Cleans up @piter.
285 *
286 * CONTEXT:
287 * Don't care.
288 */
289void disk_part_iter_exit(struct disk_part_iter *piter)
290{
291 disk_put_part(piter->part);
292 piter->part = NULL;
293}
294EXPORT_SYMBOL_GPL(disk_part_iter_exit);
295
Jens Axboea6f23652008-10-24 12:52:42 +0200296static inline int sector_in_part(struct hd_struct *part, sector_t sector)
297{
298 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200299 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200300}
301
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200302/**
303 * disk_map_sector_rcu - map sector to partition
304 * @disk: gendisk of interest
305 * @sector: sector to map
306 *
307 * Find out which partition @sector maps to on @disk. This is
308 * primarily used for stats accounting.
309 *
310 * CONTEXT:
Ming Leib7d6c302020-05-08 16:17:55 +0800311 * RCU read locked. The returned partition pointer is always valid
Ming Lei27eb3af2020-05-08 16:17:58 +0800312 * because its refcount is grabbed except for part0, which lifetime
313 * is same with the disk.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200314 *
315 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900316 * Found partition on success, part0 is returned if no partition matches
Ming Leib7d6c302020-05-08 16:17:55 +0800317 * or the matched partition is being deleted.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200318 */
319struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
320{
Tejun Heo540eed52008-08-25 19:56:15 +0900321 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200322 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200323 int i;
324
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200325 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900326 ptbl = rcu_dereference(disk->part_tbl);
327
Jens Axboea6f23652008-10-24 12:52:42 +0200328 part = rcu_dereference(ptbl->last_lookup);
Ming Leib7d6c302020-05-08 16:17:55 +0800329 if (part && sector_in_part(part, sector) && hd_struct_try_get(part))
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200330 goto out_unlock;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200331
Jens Axboea6f23652008-10-24 12:52:42 +0200332 for (i = 1; i < ptbl->len; i++) {
333 part = rcu_dereference(ptbl->part[i]);
334
335 if (part && sector_in_part(part, sector)) {
Ming Leib7d6c302020-05-08 16:17:55 +0800336 /*
337 * only live partition can be cached for lookup,
338 * so use-after-free on cached & deleting partition
339 * can be avoided
340 */
341 if (!hd_struct_try_get(part))
342 break;
Jens Axboea6f23652008-10-24 12:52:42 +0200343 rcu_assign_pointer(ptbl->last_lookup, part);
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200344 goto out_unlock;
Jens Axboea6f23652008-10-24 12:52:42 +0200345 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200346 }
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200347
348 part = &disk->part0;
349out_unlock:
350 rcu_read_unlock();
351 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200352}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200353
Shin'ichiro Kawasakib53df2e2020-02-21 10:37:08 +0900354/**
355 * disk_has_partitions
356 * @disk: gendisk of interest
357 *
358 * Walk through the partition table and check if valid partition exists.
359 *
360 * CONTEXT:
361 * Don't care.
362 *
363 * RETURNS:
364 * True if the gendisk has at least one valid non-zero size partition.
365 * Otherwise false.
366 */
367bool disk_has_partitions(struct gendisk *disk)
368{
369 struct disk_part_tbl *ptbl;
370 int i;
371 bool ret = false;
372
373 rcu_read_lock();
374 ptbl = rcu_dereference(disk->part_tbl);
375
376 /* Iterate partitions skipping the whole device at index 0 */
377 for (i = 1; i < ptbl->len; i++) {
378 if (rcu_dereference(ptbl->part[i])) {
379 ret = true;
380 break;
381 }
382 }
383
384 rcu_read_unlock();
385
386 return ret;
387}
388EXPORT_SYMBOL_GPL(disk_has_partitions);
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/*
391 * Can be deleted altogether. Later.
392 *
393 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600394#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static struct blk_major_name {
396 struct blk_major_name *next;
397 int major;
398 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800399} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100402static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Joe Korty68eef3b2006-03-31 02:30:32 -0800404 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Joe Korty68eef3b2006-03-31 02:30:32 -0800407#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200408void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800409{
Joe Korty68eef3b2006-03-31 02:30:32 -0800410 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800411
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600412 mutex_lock(&block_class_lock);
413 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
414 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200415 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600416 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Joe Korty68eef3b2006-03-31 02:30:32 -0800418#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100420/**
421 * register_blkdev - register a new block device
422 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800423 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
424 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100425 * @name: the name of the new block device as a zero terminated string
426 *
427 * The @name must be unique within the system.
428 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300429 * The return value depends on the @major input parameter:
430 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800431 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
432 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300433 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100434 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800435 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
436 *
437 * See Documentation/admin-guide/devices.txt for the list of allocated
438 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100439 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440int register_blkdev(unsigned int major, const char *name)
441{
442 struct blk_major_name **n, *p;
443 int index, ret = 0;
444
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200445 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /* temporary */
448 if (major == 0) {
449 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
450 if (major_names[index] == NULL)
451 break;
452 }
453
454 if (index == 0) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500455 printk("%s: failed to get major for %s\n",
456 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 ret = -EBUSY;
458 goto out;
459 }
460 major = index;
461 ret = major;
462 }
463
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600464 if (major >= BLKDEV_MAJOR_MAX) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500465 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
466 __func__, major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600467
468 ret = -EINVAL;
469 goto out;
470 }
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
473 if (p == NULL) {
474 ret = -ENOMEM;
475 goto out;
476 }
477
478 p->major = major;
479 strlcpy(p->name, name, sizeof(p->name));
480 p->next = NULL;
481 index = major_to_index(major);
482
483 for (n = &major_names[index]; *n; n = &(*n)->next) {
484 if ((*n)->major == major)
485 break;
486 }
487 if (!*n)
488 *n = p;
489 else
490 ret = -EBUSY;
491
492 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800493 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 major, name);
495 kfree(p);
496 }
497out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200498 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return ret;
500}
501
502EXPORT_SYMBOL(register_blkdev);
503
Akinobu Mitaf4480242007-07-17 04:03:47 -0700504void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct blk_major_name **n;
507 struct blk_major_name *p = NULL;
508 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200510 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 for (n = &major_names[index]; *n; n = &(*n)->next)
512 if ((*n)->major == major)
513 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700514 if (!*n || strcmp((*n)->name, name)) {
515 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700516 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 p = *n;
518 *n = p->next;
519 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200520 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524EXPORT_SYMBOL(unregister_blkdev);
525
526static struct kobj_map *bdev_map;
527
Tejun Heobcce3de2008-08-25 19:47:22 +0900528/**
Tejun Heo870d6652008-08-25 19:47:25 +0900529 * blk_mangle_minor - scatter minor numbers apart
530 * @minor: minor number to mangle
531 *
532 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
533 * is enabled. Mangling twice gives the original value.
534 *
535 * RETURNS:
536 * Mangled value.
537 *
538 * CONTEXT:
539 * Don't care.
540 */
541static int blk_mangle_minor(int minor)
542{
543#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
544 int i;
545
546 for (i = 0; i < MINORBITS / 2; i++) {
547 int low = minor & (1 << i);
548 int high = minor & (1 << (MINORBITS - 1 - i));
549 int distance = MINORBITS - 1 - 2 * i;
550
551 minor ^= low | high; /* clear both bits */
552 low <<= distance; /* swap the positions */
553 high >>= distance;
554 minor |= low | high; /* and set */
555 }
556#endif
557 return minor;
558}
559
560/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900561 * blk_alloc_devt - allocate a dev_t for a partition
562 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900563 * @devt: out parameter for resulting dev_t
564 *
565 * Allocate a dev_t for block device.
566 *
567 * RETURNS:
568 * 0 on success, allocated dev_t is returned in *@devt. -errno on
569 * failure.
570 *
571 * CONTEXT:
572 * Might sleep.
573 */
574int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
575{
576 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800577 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900578
579 /* in consecutive minor range? */
580 if (part->partno < disk->minors) {
581 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
582 return 0;
583 }
584
585 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600586 idr_preload(GFP_KERNEL);
587
Dan Williams4d66e5e2015-06-10 23:47:14 -0400588 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600589 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400590 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600591
592 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800593 if (idx < 0)
594 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900595
Tejun Heo870d6652008-08-25 19:47:25 +0900596 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900597 return 0;
598}
599
600/**
601 * blk_free_devt - free a dev_t
602 * @devt: dev_t to free
603 *
604 * Free @devt which was allocated using blk_alloc_devt().
605 *
606 * CONTEXT:
607 * Might sleep.
608 */
609void blk_free_devt(dev_t devt)
610{
Tejun Heobcce3de2008-08-25 19:47:22 +0900611 if (devt == MKDEV(0, 0))
612 return;
613
614 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400615 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900616 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400617 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900618 }
619}
620
Bart Van Assche33c826e2019-05-30 17:00:47 -0700621/*
622 * We invalidate devt by assigning NULL pointer for devt in idr.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800623 */
624void blk_invalidate_devt(dev_t devt)
625{
626 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
627 spin_lock_bh(&ext_devt_lock);
628 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
629 spin_unlock_bh(&ext_devt_lock);
630 }
631}
632
Tejun Heo1f014292008-08-25 19:47:23 +0900633static char *bdevt_str(dev_t devt, char *buf)
634{
635 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
636 char tbuf[BDEVT_SIZE];
637 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
638 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
639 } else
640 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
641
642 return buf;
643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645/*
646 * Register device numbers dev..(dev+range-1)
647 * range must be nonzero
648 * The hash chain is sorted on range, so that subranges can override.
649 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200650void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 struct kobject *(*probe)(dev_t, int *, void *),
652 int (*lock)(dev_t, void *), void *data)
653{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200654 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
657EXPORT_SYMBOL(blk_register_region);
658
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200659void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200661 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664EXPORT_SYMBOL(blk_unregister_region);
665
Tejun Heocf771cb2008-09-03 09:01:09 +0200666static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200669
Tejun Heoed9e1982008-08-25 19:56:05 +0900670 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200673static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 struct gendisk *p = data;
676
Jan Kara3079c222018-02-26 13:01:38 +0100677 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return -1;
679 return 0;
680}
681
Christoph Hellwig9301fe72020-09-21 09:19:46 +0200682static void disk_scan_partitions(struct gendisk *disk)
683{
684 struct block_device *bdev;
685
686 if (!get_capacity(disk) || !disk_part_scan_enabled(disk))
687 return;
688
689 set_bit(GD_NEED_PART_SCAN, &disk->state);
690 bdev = blkdev_get_by_dev(disk_devt(disk), FMODE_READ, NULL);
691 if (!IS_ERR(bdev))
692 blkdev_put(bdev, FMODE_READ);
693}
694
Hannes Reineckefef912b2018-09-28 08:17:19 +0200695static void register_disk(struct device *parent, struct gendisk *disk,
696 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100697{
698 struct device *ddev = disk_to_dev(disk);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100699 struct disk_part_iter piter;
700 struct hd_struct *part;
701 int err;
702
Dan Williamse63a46b2016-06-15 18:17:27 -0700703 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100704
Kees Cookffc8b302013-07-03 15:01:14 -0700705 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100706
707 /* delay uevents, until we scanned partition table */
708 dev_set_uevent_suppress(ddev, 1);
709
Hannes Reineckefef912b2018-09-28 08:17:19 +0200710 if (groups) {
711 WARN_ON(ddev->groups);
712 ddev->groups = groups;
713 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100714 if (device_add(ddev))
715 return;
716 if (!sysfs_deprecated) {
717 err = sysfs_create_link(block_depr, &ddev->kobj,
718 kobject_name(&ddev->kobj));
719 if (err) {
720 device_del(ddev);
721 return;
722 }
723 }
Ming Lei25e823c2013-02-22 16:34:13 -0800724
725 /*
726 * avoid probable deadlock caused by allocating memory with
727 * GFP_KERNEL in runtime_resume callback of its all ancestor
728 * devices
729 */
730 pm_runtime_set_memalloc_noio(ddev, true);
731
Tejun Heod2bf1b62010-12-08 20:57:36 +0100732 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
733 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
734
Daniel Wagner07feac82021-03-11 16:19:17 +0100735 if (disk->flags & GENHD_FL_HIDDEN)
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300736 return;
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300737
Christoph Hellwig9301fe72020-09-21 09:19:46 +0200738 disk_scan_partitions(disk);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100739
Tejun Heod2bf1b62010-12-08 20:57:36 +0100740 /* announce disk after possible partitions are created */
741 dev_set_uevent_suppress(ddev, 0);
742 kobject_uevent(&ddev->kobj, KOBJ_ADD);
743
744 /* announce possible partitions */
745 disk_part_iter_init(&piter, disk, 0);
746 while ((part = disk_part_iter_next(&piter)))
747 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
748 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300749
zhengbin4d7c1d32019-02-20 21:27:05 +0800750 if (disk->queue->backing_dev_info->dev) {
751 err = sysfs_create_link(&ddev->kobj,
752 &disk->queue->backing_dev_info->dev->kobj,
753 "bdi");
754 WARN_ON(err);
755 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100756}
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500759 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700760 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200762 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500763 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *
765 * This function registers the partitioning information in @disk
766 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900767 *
768 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500770static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200771 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500772 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900774 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400775 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700776
Damien Le Moal737eb782019-09-05 18:51:33 +0900777 /*
778 * The disk queue should now be all set with enough information about
779 * the device for the elevator code to pick an adequate default
780 * elevator if one is needed, that is, for devices requesting queue
781 * registration.
782 */
783 if (register_queue)
784 elevator_init_mq(disk->queue);
785
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900786 /* minors == 0 indicates to use ext devt from part0 and should
787 * be accompanied with EXT_DEVT flag. Make sure all
788 * parameters make sense.
789 */
790 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300791 WARN_ON(!disk->minors &&
792 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900795
796 retval = blk_alloc_devt(&disk->part0, &devt);
797 if (retval) {
798 WARN_ON(1);
799 return;
800 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900801 disk->major = MAJOR(devt);
802 disk->first_minor = MINOR(devt);
803
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100804 disk_alloc_events(disk);
805
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300806 if (disk->flags & GENHD_FL_HIDDEN) {
807 /*
808 * Don't let hidden disks show up in /proc/partitions,
809 * and don't bother scanning for partitions either.
810 */
811 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
812 disk->flags |= GENHD_FL_NO_PART_SCAN;
813 } else {
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200814 struct backing_dev_info *bdi = disk->queue->backing_dev_info;
815 struct device *dev = disk_to_dev(disk);
weiping zhang3a921682017-10-31 18:38:59 +0800816 int ret;
817
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300818 /* Register BDI before referencing it from bdev */
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200819 dev->devt = devt;
820 ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt));
weiping zhang3a921682017-10-31 18:38:59 +0800821 WARN_ON(ret);
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200822 bdi_set_owner(bdi, dev);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300823 blk_register_region(disk_devt(disk), disk->minors, NULL,
824 exact_match, exact_lock, disk);
825 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200826 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500827 if (register_queue)
828 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700829
Tejun Heo523e1d32011-10-19 14:31:07 +0200830 /*
831 * Take an extra ref on queue which will be put on disk_release()
832 * so that it sticks around as long as @disk is there.
833 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100834 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200835
Tejun Heo77ea8872010-12-08 20:57:37 +0100836 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400837 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500839
Hannes Reineckefef912b2018-09-28 08:17:19 +0200840void device_add_disk(struct device *parent, struct gendisk *disk,
841 const struct attribute_group **groups)
842
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500843{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200844 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500845}
Dan Williamse63a46b2016-06-15 18:17:27 -0700846EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500848void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
849{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200850 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500851}
852EXPORT_SYMBOL(device_add_disk_no_queue_reg);
853
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200854static void invalidate_partition(struct gendisk *disk, int partno)
855{
856 struct block_device *bdev;
857
858 bdev = bdget_disk(disk, partno);
859 if (!bdev)
860 return;
861
862 fsync_bdev(bdev);
863 __invalidate_device(bdev, true);
Christoph Hellwig9bc5c392020-04-14 09:29:02 +0200864
865 /*
866 * Unhash the bdev inode for this device so that it gets evicted as soon
867 * as last inode reference is dropped.
868 */
869 remove_inode_hash(bdev->bd_inode);
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200870 bdput(bdev);
871}
872
Luis Chamberlainb5bd3572020-06-19 20:47:23 +0000873/**
874 * del_gendisk - remove the gendisk
875 * @disk: the struct gendisk to remove
876 *
877 * Removes the gendisk and all its associated resources. This deletes the
878 * partitions associated with the gendisk, and unregisters the associated
879 * request_queue.
880 *
881 * This is the counter to the respective __device_add_disk() call.
882 *
883 * The final removal of the struct gendisk happens when its refcount reaches 0
884 * with put_disk(), which should be called after del_gendisk(), if
885 * __device_add_disk() was used.
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000886 *
887 * Drivers exist which depend on the release of the gendisk to be synchronous,
888 * it should not be deferred.
889 *
890 * Context: can sleep
Luis Chamberlainb5bd3572020-06-19 20:47:23 +0000891 */
Tejun Heod2bf1b62010-12-08 20:57:36 +0100892void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100894 struct disk_part_iter piter;
895 struct hd_struct *part;
896
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000897 might_sleep();
898
Martin K. Petersen25520d52015-10-21 13:19:49 -0400899 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100900 disk_del_events(disk);
901
Jan Kara56c09082018-02-26 13:01:41 +0100902 /*
903 * Block lookups of the disk until all bdevs are unhashed and the
904 * disk is marked as dead (GENHD_FL_UP cleared).
905 */
906 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100907 /* invalidate stuff */
908 disk_part_iter_init(&piter, disk,
909 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
910 while ((part = disk_part_iter_next(&piter))) {
911 invalidate_partition(disk, part->partno);
Christoph Hellwig8328eb22020-08-31 20:02:38 +0200912 delete_partition(part);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100913 }
914 disk_part_iter_exit(&piter);
915
916 invalidate_partition(disk, 0);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100917 set_capacity(disk, 0);
918 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100919 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100920
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300921 if (!(disk->flags & GENHD_FL_HIDDEN))
922 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100923 if (disk->queue) {
924 /*
925 * Unregister bdi before releasing device numbers (as they can
926 * get reused and we'd get clashes in sysfs).
927 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500928 if (!(disk->flags & GENHD_FL_HIDDEN))
929 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100930 blk_unregister_queue(disk);
931 } else {
932 WARN_ON(1);
933 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100934
Hannes Reinecke17eac092017-11-09 17:57:06 +0100935 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300936 blk_unregister_region(disk_devt(disk), disk->minors);
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800937 /*
938 * Remove gendisk pointer from idr so that it cannot be looked up
939 * while RCU period before freeing gendisk is running to prevent
940 * use-after-free issues. Note that the device number stays
941 * "in-use" until we really free the gendisk.
942 */
943 blk_invalidate_devt(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100944
945 kobject_put(disk->part0.holder_dir);
946 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900949 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100950 if (!sysfs_deprecated)
951 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800952 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100953 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100955EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Vishal Verma99e66082016-01-09 08:36:51 -0800957/* sysfs access to bad-blocks list. */
958static ssize_t disk_badblocks_show(struct device *dev,
959 struct device_attribute *attr,
960 char *page)
961{
962 struct gendisk *disk = dev_to_disk(dev);
963
964 if (!disk->bb)
965 return sprintf(page, "\n");
966
967 return badblocks_show(disk->bb, page, 0);
968}
969
970static ssize_t disk_badblocks_store(struct device *dev,
971 struct device_attribute *attr,
972 const char *page, size_t len)
973{
974 struct gendisk *disk = dev_to_disk(dev);
975
976 if (!disk->bb)
977 return -ENXIO;
978
979 return badblocks_store(disk->bb, page, len, 0);
980}
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982/**
983 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200984 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200985 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 *
987 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200988 * information for the given device @devt.
Luis Chamberlain763b5892020-06-19 20:47:24 +0000989 *
990 * Context: can sleep
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200992struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Tejun Heobcce3de2008-08-25 19:47:22 +0900994 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200995
Luis Chamberlain763b5892020-06-19 20:47:24 +0000996 might_sleep();
997
Tejun Heobcce3de2008-08-25 19:47:22 +0900998 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
999 struct kobject *kobj;
1000
1001 kobj = kobj_lookup(bdev_map, devt, partno);
1002 if (kobj)
1003 disk = dev_to_disk(kobj_to_dev(kobj));
1004 } else {
1005 struct hd_struct *part;
1006
Dan Williams4d66e5e2015-06-10 23:47:14 -04001007 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +09001008 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +01001009 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +09001010 *partno = part->partno;
1011 disk = part_to_disk(part);
1012 }
Dan Williams4d66e5e2015-06-10 23:47:14 -04001013 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +09001014 }
1015
Jan Kara56c09082018-02-26 13:01:41 +01001016 if (!disk)
1017 return NULL;
1018
1019 /*
1020 * Synchronize with del_gendisk() to not return disk that is being
1021 * destroyed.
1022 */
1023 down_read(&disk->lookup_sem);
1024 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
1025 !(disk->flags & GENHD_FL_UP))) {
1026 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +01001027 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001028 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +01001029 } else {
1030 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001031 }
Tejun Heobcce3de2008-08-25 19:47:22 +09001032 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Tejun Heof331c022008-09-03 09:01:48 +02001035/**
1036 * bdget_disk - do bdget() by gendisk and partition number
1037 * @disk: gendisk of interest
1038 * @partno: partition number
1039 *
1040 * Find partition @partno from @disk, do bdget() on it.
1041 *
1042 * CONTEXT:
1043 * Don't care.
1044 *
1045 * RETURNS:
1046 * Resulting block_device on success, NULL on failure.
1047 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001048struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +02001049{
Tejun Heo548b10e2008-08-29 09:01:47 +02001050 struct hd_struct *part;
1051 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +02001052
Tejun Heo548b10e2008-08-29 09:01:47 +02001053 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001054 if (part)
Christoph Hellwig10ed1662020-09-25 18:06:18 +02001055 bdev = bdget_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001056 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +02001057
Tejun Heo548b10e2008-08-29 09:01:47 +02001058 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +02001059}
1060EXPORT_SYMBOL(bdget_disk);
1061
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001062/*
1063 * print a full list of all partitions - intended for places where the root
1064 * filesystem can't be mounted and thus to give the victim some idea of what
1065 * went wrong
1066 */
1067void __init printk_all_partitions(void)
1068{
Tejun Heodef4e382008-09-03 08:57:12 +02001069 struct class_dev_iter iter;
1070 struct device *dev;
1071
1072 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1073 while ((dev = class_dev_iter_next(&iter))) {
1074 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001075 struct disk_part_iter piter;
1076 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +09001077 char name_buf[BDEVNAME_SIZE];
1078 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +02001079
1080 /*
1081 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001082 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +02001083 */
1084 if (get_capacity(disk) == 0 ||
1085 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
1086 continue;
1087
1088 /*
1089 * Note, unlike /proc/partitions, I am showing the
1090 * numbers in hex - the same format as the root=
1091 * option takes.
1092 */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001093 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
1094 while ((part = disk_part_iter_next(&piter))) {
1095 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +02001096
Will Drewryb5af9212010-08-31 15:47:07 -05001097 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +09001098 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001099 (unsigned long long)part_nr_sects_read(part) >> 1
1100 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -08001101 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +09001102 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -07001103 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +09001104 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -07001105 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001106 else
1107 printk(" (driver?)\n");
1108 } else
1109 printk("\n");
1110 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001111 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +02001112 }
1113 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001114}
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116#ifdef CONFIG_PROC_FS
1117/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +02001118static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001119{
Tejun Heodef4e382008-09-03 08:57:12 +02001120 loff_t skip = *pos;
1121 struct class_dev_iter *iter;
1122 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001123
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001124 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +02001125 if (!iter)
1126 return ERR_PTR(-ENOMEM);
1127
1128 seqf->private = iter;
1129 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1130 do {
1131 dev = class_dev_iter_next(iter);
1132 if (!dev)
1133 return NULL;
1134 } while (skip--);
1135
1136 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001137}
1138
Tejun Heodef4e382008-09-03 08:57:12 +02001139static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001141 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -04001142
Tejun Heodef4e382008-09-03 08:57:12 +02001143 (*pos)++;
1144 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001145 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001146 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return NULL;
1149}
1150
Tejun Heodef4e382008-09-03 08:57:12 +02001151static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001152{
Tejun Heodef4e382008-09-03 08:57:12 +02001153 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001154
Tejun Heodef4e382008-09-03 08:57:12 +02001155 /* stop is called even after start failed :-( */
1156 if (iter) {
1157 class_dev_iter_exit(iter);
1158 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001159 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
Tejun Heodef4e382008-09-03 08:57:12 +02001163static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Jianpeng Ma06768062012-08-03 10:42:00 +02001165 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001166
1167 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001168 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001169 seq_puts(seqf, "major minor #blocks name\n\n");
1170 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
Tejun Heocf771cb2008-09-03 09:01:09 +02001173static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
1175 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001176 struct disk_part_iter piter;
1177 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 char buf[BDEVNAME_SIZE];
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001181 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001182 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return 0;
1184 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1185 return 0;
1186
1187 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001188 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001189 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001190 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001191 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001192 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001193 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001194 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 return 0;
1197}
1198
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001199static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001200 .start = show_partition_start,
1201 .next = disk_seqf_next,
1202 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001203 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204};
1205#endif
1206
1207
Tejun Heocf771cb2008-09-03 09:01:09 +02001208static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001210 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001212 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return NULL;
1214}
1215
1216static int __init genhd_device_init(void)
1217{
Dan Williamse105b8b2008-04-21 10:51:07 -07001218 int error;
1219
1220 block_class.dev_kobj = sysfs_dev_block_kobj;
1221 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001222 if (unlikely(error))
1223 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001224 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001226
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001227 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1228
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001229 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001230 if (!sysfs_deprecated)
1231 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
1235subsys_initcall(genhd_device_init);
1236
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001237static ssize_t disk_range_show(struct device *dev,
1238 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001240 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001242 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Tejun Heo1f014292008-08-25 19:47:23 +09001245static ssize_t disk_ext_range_show(struct device *dev,
1246 struct device_attribute *attr, char *buf)
1247{
1248 struct gendisk *disk = dev_to_disk(dev);
1249
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001250 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001251}
1252
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001253static ssize_t disk_removable_show(struct device *dev,
1254 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001255{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001256 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001257
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001258 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001260}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001262static ssize_t disk_hidden_show(struct device *dev,
1263 struct device_attribute *attr, char *buf)
1264{
1265 struct gendisk *disk = dev_to_disk(dev);
1266
1267 return sprintf(buf, "%d\n",
1268 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1269}
1270
Kay Sievers1c9ce522008-06-13 09:41:00 +02001271static ssize_t disk_ro_show(struct device *dev,
1272 struct device_attribute *attr, char *buf)
1273{
1274 struct gendisk *disk = dev_to_disk(dev);
1275
Tejun Heob7db9952008-08-25 19:56:10 +09001276 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001277}
1278
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001279ssize_t part_size_show(struct device *dev,
1280 struct device_attribute *attr, char *buf)
1281{
1282 struct hd_struct *p = dev_to_part(dev);
1283
1284 return sprintf(buf, "%llu\n",
1285 (unsigned long long)part_nr_sects_read(p));
1286}
1287
1288ssize_t part_stat_show(struct device *dev,
1289 struct device_attribute *attr, char *buf)
1290{
1291 struct hd_struct *p = dev_to_part(dev);
1292 struct request_queue *q = part_to_disk(p)->queue;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001293 struct disk_stats stat;
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001294 unsigned int inflight;
1295
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001296 part_stat_read_all(p, &stat);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001297 if (queue_is_mq(q))
1298 inflight = blk_mq_in_flight(q, p);
1299 else
Christoph Hellwig1f069592020-08-31 20:02:39 +02001300 inflight = part_in_flight(p);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001301
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001302 return sprintf(buf,
1303 "%8lu %8lu %8llu %8u "
1304 "%8lu %8lu %8llu %8u "
1305 "%8u %8u %8u "
1306 "%8lu %8lu %8llu %8u "
1307 "%8lu %8u"
1308 "\n",
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001309 stat.ios[STAT_READ],
1310 stat.merges[STAT_READ],
1311 (unsigned long long)stat.sectors[STAT_READ],
1312 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1313 stat.ios[STAT_WRITE],
1314 stat.merges[STAT_WRITE],
1315 (unsigned long long)stat.sectors[STAT_WRITE],
1316 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001317 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001318 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001319 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1320 stat.nsecs[STAT_WRITE] +
1321 stat.nsecs[STAT_DISCARD] +
1322 stat.nsecs[STAT_FLUSH],
1323 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001324 stat.ios[STAT_DISCARD],
1325 stat.merges[STAT_DISCARD],
1326 (unsigned long long)stat.sectors[STAT_DISCARD],
1327 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1328 stat.ios[STAT_FLUSH],
1329 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001330}
1331
1332ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1333 char *buf)
1334{
1335 struct hd_struct *p = dev_to_part(dev);
1336 struct request_queue *q = part_to_disk(p)->queue;
1337 unsigned int inflight[2];
1338
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001339 if (queue_is_mq(q))
1340 blk_mq_in_flight_rw(q, p, inflight);
1341 else
Christoph Hellwig1f069592020-08-31 20:02:39 +02001342 part_in_flight_rw(p, inflight);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001343
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001344 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1345}
1346
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001347static ssize_t disk_capability_show(struct device *dev,
1348 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001349{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001350 struct gendisk *disk = dev_to_disk(dev);
1351
1352 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001353}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001354
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001355static ssize_t disk_alignment_offset_show(struct device *dev,
1356 struct device_attribute *attr,
1357 char *buf)
1358{
1359 struct gendisk *disk = dev_to_disk(dev);
1360
1361 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1362}
1363
Martin K. Petersen86b37282009-11-10 11:50:21 +01001364static ssize_t disk_discard_alignment_show(struct device *dev,
1365 struct device_attribute *attr,
1366 char *buf)
1367{
1368 struct gendisk *disk = dev_to_disk(dev);
1369
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001370 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001371}
1372
Joe Perches5657a812018-05-24 13:38:59 -06001373static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1374static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1375static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1376static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1377static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1378static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1379static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1380static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1381static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1382static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1383static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1384static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001385
Akinobu Mitac17bb492006-12-08 02:39:46 -08001386#ifdef CONFIG_FAIL_MAKE_REQUEST
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001387ssize_t part_fail_show(struct device *dev,
1388 struct device_attribute *attr, char *buf)
1389{
1390 struct hd_struct *p = dev_to_part(dev);
1391
1392 return sprintf(buf, "%d\n", p->make_it_fail);
1393}
1394
1395ssize_t part_fail_store(struct device *dev,
1396 struct device_attribute *attr,
1397 const char *buf, size_t count)
1398{
1399 struct hd_struct *p = dev_to_part(dev);
1400 int i;
1401
1402 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1403 p->make_it_fail = (i == 0) ? 0 : 1;
1404
1405 return count;
1406}
1407
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001408static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001409 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001410#endif /* CONFIG_FAIL_MAKE_REQUEST */
1411
Jens Axboe581d4e22008-09-14 05:56:33 -07001412#ifdef CONFIG_FAIL_IO_TIMEOUT
1413static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001414 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001415#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001416
1417static struct attribute *disk_attrs[] = {
1418 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001419 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001420 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001421 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001422 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001423 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001424 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001425 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001426 &dev_attr_capability.attr,
1427 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001428 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001429 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001430#ifdef CONFIG_FAIL_MAKE_REQUEST
1431 &dev_attr_fail.attr,
1432#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001433#ifdef CONFIG_FAIL_IO_TIMEOUT
1434 &dev_attr_fail_timeout.attr,
1435#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001436 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437};
1438
Dan Williams9438b3e02017-04-27 14:46:26 -07001439static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1440{
1441 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1442 struct gendisk *disk = dev_to_disk(dev);
1443
1444 if (a == &dev_attr_badblocks.attr && !disk->bb)
1445 return 0;
1446 return a->mode;
1447}
1448
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001449static struct attribute_group disk_attr_group = {
1450 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001451 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001452};
1453
David Brownella4dbd672009-06-24 10:06:31 -07001454static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001455 &disk_attr_group,
1456 NULL
1457};
1458
Tejun Heo540eed52008-08-25 19:56:15 +09001459/**
1460 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1461 * @disk: disk to replace part_tbl for
1462 * @new_ptbl: new part_tbl to install
1463 *
1464 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1465 * original ptbl is freed using RCU callback.
1466 *
1467 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001468 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001469 */
1470static void disk_replace_part_tbl(struct gendisk *disk,
1471 struct disk_part_tbl *new_ptbl)
1472{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001473 struct disk_part_tbl *old_ptbl =
1474 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001475
1476 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001477
1478 if (old_ptbl) {
1479 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001480 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001481 }
Tejun Heo540eed52008-08-25 19:56:15 +09001482}
1483
1484/**
1485 * disk_expand_part_tbl - expand disk->part_tbl
1486 * @disk: disk to expand part_tbl for
1487 * @partno: expand such that this partno can fit in
1488 *
1489 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1490 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1491 *
1492 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001493 * Matching bd_mutex locked or the caller is the only user of @disk.
1494 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001495 *
1496 * RETURNS:
1497 * 0 on success, -errno on failure.
1498 */
1499int disk_expand_part_tbl(struct gendisk *disk, int partno)
1500{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001501 struct disk_part_tbl *old_ptbl =
1502 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001503 struct disk_part_tbl *new_ptbl;
1504 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001505 int i, target;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001506
1507 /*
1508 * check for int overflow, since we can get here from blkpg_ioctl()
1509 * with a user passed 'partno'.
1510 */
1511 target = partno + 1;
1512 if (target < 0)
1513 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001514
1515 /* disk_max_parts() is zero during initialization, ignore if so */
1516 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1517 return -EINVAL;
1518
1519 if (target <= len)
1520 return 0;
1521
Gustavo A. R. Silva78b90a22019-05-31 13:47:54 -05001522 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1523 disk->node_id);
Tejun Heo540eed52008-08-25 19:56:15 +09001524 if (!new_ptbl)
1525 return -ENOMEM;
1526
Tejun Heo540eed52008-08-25 19:56:15 +09001527 new_ptbl->len = target;
1528
1529 for (i = 0; i < len; i++)
1530 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1531
1532 disk_replace_part_tbl(disk, new_ptbl);
1533 return 0;
1534}
1535
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001536/**
1537 * disk_release - releases all allocated resources of the gendisk
1538 * @dev: the device representing this disk
1539 *
1540 * This function releases all allocated resources of the gendisk.
1541 *
1542 * The struct gendisk refcount is incremented with get_gendisk() or
1543 * get_disk_and_module(), and its refcount is decremented with
1544 * put_disk_and_module() or put_disk(). Once the refcount reaches 0 this
1545 * function is called.
1546 *
1547 * Drivers which used __device_add_disk() have a gendisk with a request_queue
1548 * assigned. Since the request_queue sits on top of the gendisk for these
1549 * drivers we also call blk_put_queue() for them, and we expect the
1550 * request_queue refcount to reach 0 at this point, and so the request_queue
1551 * will also be freed prior to the disk.
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001552 *
1553 * Context: can sleep
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001554 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001555static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001557 struct gendisk *disk = dev_to_disk(dev);
1558
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001559 might_sleep();
1560
Keith Busch2da78092014-08-26 09:05:36 -06001561 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001562 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001564 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001565 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001566 if (disk->queue)
1567 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 kfree(disk);
1569}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001570struct class block_class = {
1571 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572};
1573
Kay Sievers3c2670e2013-04-06 09:56:00 -07001574static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001575 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001576{
1577 struct gendisk *disk = dev_to_disk(dev);
1578
Christoph Hellwig348e1142020-03-27 09:07:17 +01001579 if (disk->fops->devnode)
1580 return disk->fops->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001581 return NULL;
1582}
1583
Boris Burkovef45fe42020-06-01 13:12:05 -07001584const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001585 .name = "disk",
1586 .groups = disk_attr_groups,
1587 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001588 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589};
1590
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001591#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001592/*
1593 * aggregate disk stat collector. Uses the same stats that the sysfs
1594 * entries do, above, but makes them available through one seq_file.
1595 *
1596 * The output looks suspiciously like /proc/partitions with a bunch of
1597 * extra fields.
1598 */
1599static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
1601 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001602 struct disk_part_iter piter;
1603 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001605 unsigned int inflight;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001606 struct disk_stats stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001609 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001610 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 " rio rmerge rsect ruse wio wmerge "
1612 "wsect wuse running use aveq"
1613 "\n\n");
1614 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001615
Tejun Heo71982a42009-04-17 08:34:48 +02001616 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001617 while ((hd = disk_part_iter_next(&piter))) {
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001618 part_stat_read_all(hd, &stat);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001619 if (queue_is_mq(gp->queue))
1620 inflight = blk_mq_in_flight(gp->queue, hd);
1621 else
Christoph Hellwig1f069592020-08-31 20:02:39 +02001622 inflight = part_in_flight(hd);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001623
Michael Callahanbdca3c82018-07-18 04:47:40 -07001624 seq_printf(seqf, "%4d %7d %s "
1625 "%lu %lu %lu %u "
1626 "%lu %lu %lu %u "
1627 "%u %u %u "
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001628 "%lu %lu %lu %u "
1629 "%lu %u"
1630 "\n",
Tejun Heof331c022008-09-03 09:01:48 +02001631 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1632 disk_name(gp, hd->partno, buf),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001633 stat.ios[STAT_READ],
1634 stat.merges[STAT_READ],
1635 stat.sectors[STAT_READ],
1636 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1637 NSEC_PER_MSEC),
1638 stat.ios[STAT_WRITE],
1639 stat.merges[STAT_WRITE],
1640 stat.sectors[STAT_WRITE],
1641 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1642 NSEC_PER_MSEC),
Mikulas Patockae016b782018-12-06 11:41:21 -05001643 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001644 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001645 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1646 stat.nsecs[STAT_WRITE] +
1647 stat.nsecs[STAT_DISCARD] +
1648 stat.nsecs[STAT_FLUSH],
1649 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001650 stat.ios[STAT_DISCARD],
1651 stat.merges[STAT_DISCARD],
1652 stat.sectors[STAT_DISCARD],
1653 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1654 NSEC_PER_MSEC),
1655 stat.ios[STAT_FLUSH],
1656 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1657 NSEC_PER_MSEC)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001658 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001660 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return 0;
1663}
1664
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001665static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001666 .start = disk_seqf_start,
1667 .next = disk_seqf_next,
1668 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 .show = diskstats_show
1670};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001671
1672static int __init proc_genhd_init(void)
1673{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001674 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1675 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001676 return 0;
1677}
1678module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001679#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Tejun Heocf771cb2008-09-03 09:01:09 +02001681dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001682{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001683 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001684 struct class_dev_iter iter;
1685 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001686
Tejun Heodef4e382008-09-03 08:57:12 +02001687 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1688 while ((dev = class_dev_iter_next(&iter))) {
1689 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001690 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001691
Kay Sievers3ada8b72009-01-06 10:44:43 -08001692 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001693 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001694
Neil Brown41b8c852009-02-18 10:33:59 +01001695 if (partno < disk->minors) {
1696 /* We need to return the right devno, even
1697 * if the partition doesn't exist yet.
1698 */
1699 devt = MKDEV(MAJOR(dev->devt),
1700 MINOR(dev->devt) + partno);
1701 break;
1702 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001703 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001704 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001705 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001706 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001707 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001708 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001709 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001710 }
Tejun Heodef4e382008-09-03 08:57:12 +02001711 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001712 return devt;
1713}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001714
Byungchul Parke319e1f2017-10-25 17:56:05 +09001715struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001716{
1717 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001718 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001719
Christoph Hellwigde65b012017-08-23 19:10:29 +02001720 if (minors > DISK_MAX_PARTS) {
1721 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001722 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001723 DISK_MAX_PARTS);
1724 minors = DISK_MAX_PARTS;
1725 }
Christoph Lameter19460892005-06-23 00:08:19 -07001726
Joe Perchesc1b511e2013-08-29 15:21:42 -07001727 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001728 if (!disk)
1729 return NULL;
Jens Axboe6c23a962011-01-07 08:43:37 +01001730
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001731 disk->part0.dkstats = alloc_percpu(struct disk_stats);
1732 if (!disk->part0.dkstats)
1733 goto out_free_disk;
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001734
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001735 init_rwsem(&disk->lookup_sem);
1736 disk->node_id = node_id;
1737 if (disk_expand_part_tbl(disk, 0)) {
1738 free_percpu(disk->part0.dkstats);
1739 goto out_free_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001741
1742 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1743 rcu_assign_pointer(ptbl->part[0], &disk->part0);
1744
1745 /*
1746 * set_capacity() and get_capacity() currently don't use
1747 * seqcounter to read/update the part0->nr_sects. Still init
1748 * the counter as we can read the sectors in IO submission
1749 * patch using seqence counters.
1750 *
1751 * TODO: Ideally set_capacity() and get_capacity() should be
1752 * converted to make use of bd_mutex and sequence counters.
1753 */
1754 hd_sects_seq_init(&disk->part0);
1755 if (hd_ref_init(&disk->part0))
1756 goto out_free_part0;
1757
1758 disk->minors = minors;
1759 rand_initialize_disk(disk);
1760 disk_to_dev(disk)->class = &block_class;
1761 disk_to_dev(disk)->type = &disk_type;
1762 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return disk;
Christoph Hellwigf93af2a2020-08-31 20:02:37 +02001764
1765out_free_part0:
1766 hd_free_part(&disk->part0);
1767out_free_disk:
1768 kfree(disk);
1769 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001771EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001773/**
1774 * get_disk_and_module - increments the gendisk and gendisk fops module refcount
Randy Dunlap0d20dcc2020-07-30 18:42:30 -07001775 * @disk: the struct gendisk to increment the refcount for
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001776 *
1777 * This increments the refcount for the struct gendisk, and the gendisk's
1778 * fops module owner.
Luis Chamberlain763b5892020-06-19 20:47:24 +00001779 *
1780 * Context: Any context.
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001781 */
Jan Kara3079c222018-02-26 13:01:38 +01001782struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
1784 struct module *owner;
1785 struct kobject *kobj;
1786
1787 if (!disk->fops)
1788 return NULL;
1789 owner = disk->fops->owner;
1790 if (owner && !try_module_get(owner))
1791 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001792 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (kobj == NULL) {
1794 module_put(owner);
1795 return NULL;
1796 }
1797 return kobj;
1798
1799}
Jan Kara3079c222018-02-26 13:01:38 +01001800EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001802/**
1803 * put_disk - decrements the gendisk refcount
Randy Dunlap0d20dcc2020-07-30 18:42:30 -07001804 * @disk: the struct gendisk to decrement the refcount for
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001805 *
1806 * This decrements the refcount for the struct gendisk. When this reaches 0
1807 * we'll have disk_release() called.
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001808 *
1809 * Context: Any context, but the last reference must not be dropped from
1810 * atomic context.
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001811 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812void put_disk(struct gendisk *disk)
1813{
1814 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001815 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817EXPORT_SYMBOL(put_disk);
1818
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001819/**
1820 * put_disk_and_module - decrements the module and gendisk refcount
Randy Dunlap0d20dcc2020-07-30 18:42:30 -07001821 * @disk: the struct gendisk to decrement the refcount for
Luis Chamberlainb5bd3572020-06-19 20:47:23 +00001822 *
Jan Kara9df6c292018-02-26 13:01:39 +01001823 * This is a counterpart of get_disk_and_module() and thus also of
1824 * get_gendisk().
Luis Chamberlaine8c7d142020-06-19 20:47:25 +00001825 *
1826 * Context: Any context, but the last reference must not be dropped from
1827 * atomic context.
Jan Kara9df6c292018-02-26 13:01:39 +01001828 */
1829void put_disk_and_module(struct gendisk *disk)
1830{
1831 if (disk) {
1832 struct module *owner = disk->fops->owner;
1833
1834 put_disk(disk);
1835 module_put(owner);
1836 }
1837}
1838EXPORT_SYMBOL(put_disk_and_module);
1839
Hannes Reineckee3264a42009-07-28 09:13:13 +02001840static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1841{
1842 char event[] = "DISK_RO=1";
1843 char *envp[] = { event, NULL };
1844
1845 if (!ro)
1846 event[8] = '0';
1847 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1848}
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850void set_device_ro(struct block_device *bdev, int flag)
1851{
Tejun Heob7db9952008-08-25 19:56:10 +09001852 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
1855EXPORT_SYMBOL(set_device_ro);
1856
1857void set_disk_ro(struct gendisk *disk, int flag)
1858{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001859 struct disk_part_iter piter;
1860 struct hd_struct *part;
1861
Hannes Reineckee3264a42009-07-28 09:13:13 +02001862 if (disk->part0.policy != flag) {
1863 set_disk_ro_uevent(disk, flag);
1864 disk->part0.policy = flag;
1865 }
1866
1867 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001868 while ((part = disk_part_iter_next(&piter)))
1869 part->policy = flag;
1870 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
1873EXPORT_SYMBOL(set_disk_ro);
1874
1875int bdev_read_only(struct block_device *bdev)
1876{
1877 if (!bdev)
1878 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001879 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
1882EXPORT_SYMBOL(bdev_read_only);
1883
Tejun Heo77ea8872010-12-08 20:57:37 +01001884/*
1885 * Disk events - monitor disk events like media change and eject request.
1886 */
1887struct disk_events {
1888 struct list_head node; /* all disk_event's */
1889 struct gendisk *disk; /* the associated disk */
1890 spinlock_t lock;
1891
Tejun Heofdd514e2011-06-09 20:43:59 +02001892 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001893 int block; /* event blocking depth */
1894 unsigned int pending; /* events already sent out */
1895 unsigned int clearing; /* events being cleared */
1896
1897 long poll_msecs; /* interval, -1 for default */
1898 struct delayed_work dwork;
1899};
1900
1901static const char *disk_events_strs[] = {
1902 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1903 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1904};
1905
1906static char *disk_uevents[] = {
1907 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1908 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1909};
1910
1911/* list of all disk_events */
1912static DEFINE_MUTEX(disk_events_mutex);
1913static LIST_HEAD(disk_events);
1914
1915/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001916static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001917
1918static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1919{
1920 struct disk_events *ev = disk->ev;
1921 long intv_msecs = 0;
1922
1923 /*
1924 * If device-specific poll interval is set, always use it. If
Martin Wilck673387a2019-03-27 14:51:01 +01001925 * the default is being used, poll if the POLL flag is set.
Tejun Heo77ea8872010-12-08 20:57:37 +01001926 */
1927 if (ev->poll_msecs >= 0)
1928 intv_msecs = ev->poll_msecs;
Martin Wilckc92e2f02019-03-27 14:51:02 +01001929 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
Tejun Heo77ea8872010-12-08 20:57:37 +01001930 intv_msecs = disk_events_dfl_poll_msecs;
1931
1932 return msecs_to_jiffies(intv_msecs);
1933}
1934
Tejun Heoc3af54a2011-06-09 20:43:55 +02001935/**
1936 * disk_block_events - block and flush disk event checking
1937 * @disk: disk to block events for
1938 *
1939 * On return from this function, it is guaranteed that event checking
1940 * isn't in progress and won't happen until unblocked by
1941 * disk_unblock_events(). Events blocking is counted and the actual
1942 * unblocking happens after the matching number of unblocks are done.
1943 *
1944 * Note that this intentionally does not block event checking from
1945 * disk_clear_events().
1946 *
1947 * CONTEXT:
1948 * Might sleep.
1949 */
1950void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001951{
1952 struct disk_events *ev = disk->ev;
1953 unsigned long flags;
1954 bool cancel;
1955
Tejun Heoc3af54a2011-06-09 20:43:55 +02001956 if (!ev)
1957 return;
1958
Tejun Heofdd514e2011-06-09 20:43:59 +02001959 /*
1960 * Outer mutex ensures that the first blocker completes canceling
1961 * the event work before further blockers are allowed to finish.
1962 */
1963 mutex_lock(&ev->block_mutex);
1964
Tejun Heo77ea8872010-12-08 20:57:37 +01001965 spin_lock_irqsave(&ev->lock, flags);
1966 cancel = !ev->block++;
1967 spin_unlock_irqrestore(&ev->lock, flags);
1968
Tejun Heoc3af54a2011-06-09 20:43:55 +02001969 if (cancel)
1970 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001971
1972 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001973}
1974
1975static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1976{
1977 struct disk_events *ev = disk->ev;
1978 unsigned long intv;
1979 unsigned long flags;
1980
1981 spin_lock_irqsave(&ev->lock, flags);
1982
1983 if (WARN_ON_ONCE(ev->block <= 0))
1984 goto out_unlock;
1985
1986 if (--ev->block)
1987 goto out_unlock;
1988
Tejun Heo77ea8872010-12-08 20:57:37 +01001989 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001990 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301991 queue_delayed_work(system_freezable_power_efficient_wq,
1992 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001993 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301994 queue_delayed_work(system_freezable_power_efficient_wq,
1995 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001996out_unlock:
1997 spin_unlock_irqrestore(&ev->lock, flags);
1998}
1999
2000/**
Tejun Heo77ea8872010-12-08 20:57:37 +01002001 * disk_unblock_events - unblock disk event checking
2002 * @disk: disk to unblock events for
2003 *
2004 * Undo disk_block_events(). When the block count reaches zero, it
2005 * starts events polling if configured.
2006 *
2007 * CONTEXT:
2008 * Don't care. Safe to call from irq context.
2009 */
2010void disk_unblock_events(struct gendisk *disk)
2011{
2012 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01002013 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002014}
2015
2016/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02002017 * disk_flush_events - schedule immediate event checking and flushing
2018 * @disk: disk to check and flush events for
2019 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01002020 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02002021 * Schedule immediate event checking on @disk if not blocked. Events in
2022 * @mask are scheduled to be cleared from the driver. Note that this
2023 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01002024 *
2025 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02002026 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01002027 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02002028void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01002029{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02002030 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02002031
2032 if (!ev)
2033 return;
2034
Tejun Heo85ef06d2011-07-01 16:17:47 +02002035 spin_lock_irq(&ev->lock);
2036 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07002037 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05302038 mod_delayed_work(system_freezable_power_efficient_wq,
2039 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02002040 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002041}
Tejun Heo77ea8872010-12-08 20:57:37 +01002042
2043/**
2044 * disk_clear_events - synchronously check, clear and return pending events
2045 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09002046 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01002047 *
2048 * Disk events are synchronously checked and pending events in @mask
2049 * are cleared and returned. This ignores the block count.
2050 *
2051 * CONTEXT:
2052 * Might sleep.
2053 */
Christoph Hellwig95f6f3a2020-09-08 16:53:29 +02002054static unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01002055{
Tejun Heo77ea8872010-12-08 20:57:37 +01002056 struct disk_events *ev = disk->ev;
2057 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002058 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01002059
Christoph Hellwiga564e232020-07-08 14:25:41 +02002060 if (!ev)
Tejun Heo77ea8872010-12-08 20:57:37 +01002061 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002062
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002063 disk_block_events(disk);
2064
2065 /*
2066 * store the union of mask and ev->clearing on the stack so that the
2067 * race with disk_flush_events does not cause ambiguity (ev->clearing
2068 * can still be modified even if events are blocked).
2069 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002070 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002071 clearing |= ev->clearing;
2072 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002073 spin_unlock_irq(&ev->lock);
2074
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002075 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08002076 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002077 * if ev->clearing is not 0, the disk_flush_events got called in the
2078 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08002079 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002080 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002081
2082 /* then, fetch and clear pending events */
2083 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002084 pending = ev->pending & mask;
2085 ev->pending &= ~mask;
2086 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002087 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01002088
2089 return pending;
2090}
2091
Christoph Hellwig95f6f3a2020-09-08 16:53:29 +02002092/**
2093 * bdev_check_media_change - check if a removable media has been changed
2094 * @bdev: block device to check
2095 *
2096 * Check whether a removable media has been changed, and attempt to free all
2097 * dentries and inodes and invalidates all block device page cache entries in
2098 * that case.
2099 *
2100 * Returns %true if the block device changed, or %false if not.
2101 */
2102bool bdev_check_media_change(struct block_device *bdev)
2103{
2104 unsigned int events;
2105
2106 events = disk_clear_events(bdev->bd_disk, DISK_EVENT_MEDIA_CHANGE |
2107 DISK_EVENT_EJECT_REQUEST);
2108 if (!(events & DISK_EVENT_MEDIA_CHANGE))
2109 return false;
2110
2111 if (__invalidate_device(bdev, true))
2112 pr_warn("VFS: busy inodes on changed media %s\n",
2113 bdev->bd_disk->disk_name);
Christoph Hellwig38430f02020-09-21 09:19:45 +02002114 set_bit(GD_NEED_PART_SCAN, &bdev->bd_disk->state);
Christoph Hellwig95f6f3a2020-09-08 16:53:29 +02002115 return true;
2116}
2117EXPORT_SYMBOL(bdev_check_media_change);
2118
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002119/*
2120 * Separate this part out so that a different pointer for clearing_ptr can be
2121 * passed in for disk_clear_events.
2122 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002123static void disk_events_workfn(struct work_struct *work)
2124{
2125 struct delayed_work *dwork = to_delayed_work(work);
2126 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002127
2128 disk_check_events(ev, &ev->clearing);
2129}
2130
2131static void disk_check_events(struct disk_events *ev,
2132 unsigned int *clearing_ptr)
2133{
Tejun Heo77ea8872010-12-08 20:57:37 +01002134 struct gendisk *disk = ev->disk;
2135 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002136 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01002137 unsigned int events;
2138 unsigned long intv;
2139 int nr_events = 0, i;
2140
2141 /* check events */
2142 events = disk->fops->check_events(disk, clearing);
2143
2144 /* accumulate pending events and schedule next poll if necessary */
2145 spin_lock_irq(&ev->lock);
2146
2147 events &= ~ev->pending;
2148 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002149 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01002150
2151 intv = disk_events_poll_jiffies(disk);
2152 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05302153 queue_delayed_work(system_freezable_power_efficient_wq,
2154 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01002155
2156 spin_unlock_irq(&ev->lock);
2157
Tejun Heo7c88a162011-04-21 19:43:58 +02002158 /*
2159 * Tell userland about new events. Only the events listed in
Martin Wilckc92e2f02019-03-27 14:51:02 +01002160 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
2161 * is set. Otherwise, events are processed internally but never
2162 * get reported to userland.
Tejun Heo7c88a162011-04-21 19:43:58 +02002163 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002164 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Martin Wilckc92e2f02019-03-27 14:51:02 +01002165 if ((events & disk->events & (1 << i)) &&
2166 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
Tejun Heo77ea8872010-12-08 20:57:37 +01002167 envp[nr_events++] = disk_uevents[i];
2168
2169 if (nr_events)
2170 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
2171}
2172
2173/*
2174 * A disk events enabled device has the following sysfs nodes under
2175 * its /sys/block/X/ directory.
2176 *
2177 * events : list of all supported events
2178 * events_async : list of events which can be detected w/o polling
Martin Wilck673387a2019-03-27 14:51:01 +01002179 * (always empty, only for backwards compatibility)
Tejun Heo77ea8872010-12-08 20:57:37 +01002180 * events_poll_msecs : polling interval, 0: disable, -1: system default
2181 */
2182static ssize_t __disk_events_show(unsigned int events, char *buf)
2183{
2184 const char *delim = "";
2185 ssize_t pos = 0;
2186 int i;
2187
2188 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
2189 if (events & (1 << i)) {
2190 pos += sprintf(buf + pos, "%s%s",
2191 delim, disk_events_strs[i]);
2192 delim = " ";
2193 }
2194 if (pos)
2195 pos += sprintf(buf + pos, "\n");
2196 return pos;
2197}
2198
2199static ssize_t disk_events_show(struct device *dev,
2200 struct device_attribute *attr, char *buf)
2201{
2202 struct gendisk *disk = dev_to_disk(dev);
2203
Martin Wilckc92e2f02019-03-27 14:51:02 +01002204 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
2205 return 0;
2206
Tejun Heo77ea8872010-12-08 20:57:37 +01002207 return __disk_events_show(disk->events, buf);
2208}
2209
2210static ssize_t disk_events_async_show(struct device *dev,
2211 struct device_attribute *attr, char *buf)
2212{
Martin Wilck673387a2019-03-27 14:51:01 +01002213 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002214}
2215
2216static ssize_t disk_events_poll_msecs_show(struct device *dev,
2217 struct device_attribute *attr,
2218 char *buf)
2219{
2220 struct gendisk *disk = dev_to_disk(dev);
2221
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002222 if (!disk->ev)
2223 return sprintf(buf, "-1\n");
2224
Tejun Heo77ea8872010-12-08 20:57:37 +01002225 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
2226}
2227
2228static ssize_t disk_events_poll_msecs_store(struct device *dev,
2229 struct device_attribute *attr,
2230 const char *buf, size_t count)
2231{
2232 struct gendisk *disk = dev_to_disk(dev);
2233 long intv;
2234
2235 if (!count || !sscanf(buf, "%ld", &intv))
2236 return -EINVAL;
2237
2238 if (intv < 0 && intv != -1)
2239 return -EINVAL;
2240
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002241 if (!disk->ev)
2242 return -ENODEV;
2243
Tejun Heoc3af54a2011-06-09 20:43:55 +02002244 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002245 disk->ev->poll_msecs = intv;
2246 __disk_unblock_events(disk, true);
2247
2248 return count;
2249}
2250
Joe Perches5657a812018-05-24 13:38:59 -06002251static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
2252static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
2253static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01002254 disk_events_poll_msecs_show,
2255 disk_events_poll_msecs_store);
2256
2257static const struct attribute *disk_events_attrs[] = {
2258 &dev_attr_events.attr,
2259 &dev_attr_events_async.attr,
2260 &dev_attr_events_poll_msecs.attr,
2261 NULL,
2262};
2263
2264/*
2265 * The default polling interval can be specified by the kernel
2266 * parameter block.events_dfl_poll_msecs which defaults to 0
2267 * (disable). This can also be modified runtime by writing to
Akinobu Mita1624b0b2019-07-16 21:59:35 +09002268 * /sys/module/block/parameters/events_dfl_poll_msecs.
Tejun Heo77ea8872010-12-08 20:57:37 +01002269 */
2270static int disk_events_set_dfl_poll_msecs(const char *val,
2271 const struct kernel_param *kp)
2272{
2273 struct disk_events *ev;
2274 int ret;
2275
2276 ret = param_set_ulong(val, kp);
2277 if (ret < 0)
2278 return ret;
2279
2280 mutex_lock(&disk_events_mutex);
2281
2282 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02002283 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01002284
2285 mutex_unlock(&disk_events_mutex);
2286
2287 return 0;
2288}
2289
2290static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2291 .set = disk_events_set_dfl_poll_msecs,
2292 .get = param_get_ulong,
2293};
2294
2295#undef MODULE_PARAM_PREFIX
2296#define MODULE_PARAM_PREFIX "block."
2297
2298module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2299 &disk_events_dfl_poll_msecs, 0644);
2300
2301/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002302 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01002303 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002304static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01002305{
2306 struct disk_events *ev;
2307
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002308 if (!disk->fops->check_events || !disk->events)
Tejun Heo77ea8872010-12-08 20:57:37 +01002309 return;
2310
2311 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2312 if (!ev) {
2313 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2314 return;
2315 }
2316
Tejun Heo77ea8872010-12-08 20:57:37 +01002317 INIT_LIST_HEAD(&ev->node);
2318 ev->disk = disk;
2319 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02002320 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01002321 ev->block = 1;
2322 ev->poll_msecs = -1;
2323 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2324
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002325 disk->ev = ev;
2326}
2327
2328static void disk_add_events(struct gendisk *disk)
2329{
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002330 /* FIXME: error handling */
2331 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2332 pr_warn("%s: failed to create sysfs files for events\n",
2333 disk->disk_name);
2334
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002335 if (!disk->ev)
2336 return;
2337
Tejun Heo77ea8872010-12-08 20:57:37 +01002338 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002339 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002340 mutex_unlock(&disk_events_mutex);
2341
2342 /*
2343 * Block count is initialized to 1 and the following initial
2344 * unblock kicks it into action.
2345 */
2346 __disk_unblock_events(disk, true);
2347}
2348
2349static void disk_del_events(struct gendisk *disk)
2350{
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002351 if (disk->ev) {
2352 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002353
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002354 mutex_lock(&disk_events_mutex);
2355 list_del_init(&disk->ev->node);
2356 mutex_unlock(&disk_events_mutex);
2357 }
Tejun Heo77ea8872010-12-08 20:57:37 +01002358
2359 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2360}
2361
2362static void disk_release_events(struct gendisk *disk)
2363{
2364 /* the block count should be 1 from disk_del_events() */
2365 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2366 kfree(disk->ev);
2367}