blob: 27511b3d164ddd30fc46d96b27369ca72ee2bfc4 [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
Bart Van Asscheedf8ff52017-06-20 11:15:48 -070041static const struct device_type disk_type;
Adrian Bunk1826ead2008-03-04 11:23:46 +010042
Derek Basehore12c2bdb2012-12-18 12:27:20 -080043static void disk_check_events(struct disk_events *ev,
44 unsigned int *clearing_ptr);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +010045static void disk_alloc_events(struct gendisk *disk);
Tejun Heo77ea8872010-12-08 20:57:37 +010046static void disk_add_events(struct gendisk *disk);
47static void disk_del_events(struct gendisk *disk);
48static void disk_release_events(struct gendisk *disk);
49
Balbir Singhe598a722020-03-13 05:30:05 +000050/*
51 * Set disk capacity and notify if the size is not currently
52 * zero and will not be set to zero
53 */
54void set_capacity_revalidate_and_notify(struct gendisk *disk, sector_t size,
55 bool revalidate)
56{
57 sector_t capacity = get_capacity(disk);
58
59 set_capacity(disk, size);
60
61 if (revalidate)
62 revalidate_disk(disk);
63
64 if (capacity != size && capacity != 0 && size != 0) {
65 char *envp[] = { "RESIZE=1", NULL };
66
67 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
68 }
69}
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{
91 return disk_name(bdev->bd_disk, bdev->bd_part->partno, buf);
92}
93EXPORT_SYMBOL(bdevname);
Balbir Singhe598a722020-03-13 05:30:05 +000094
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +030095#ifdef CONFIG_SMP
96static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
97{
98 int cpu;
99
100 memset(stat, 0, sizeof(struct disk_stats));
101 for_each_possible_cpu(cpu) {
102 struct disk_stats *ptr = per_cpu_ptr(part->dkstats, cpu);
103 int group;
104
105 for (group = 0; group < NR_STAT_GROUPS; group++) {
106 stat->nsecs[group] += ptr->nsecs[group];
107 stat->sectors[group] += ptr->sectors[group];
108 stat->ios[group] += ptr->ios[group];
109 stat->merges[group] += ptr->merges[group];
110 }
111
112 stat->io_ticks += ptr->io_ticks;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300113 }
114}
115#else /* CONFIG_SMP */
116static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
117{
118 memcpy(stat, &part->dkstats, sizeof(struct disk_stats));
119}
120#endif /* CONFIG_SMP */
121
Jens Axboef299b7c2017-08-08 17:51:45 -0600122void part_inc_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
123{
Jens Axboe344e9ff2018-11-15 12:22:51 -0700124 if (queue_is_mq(q))
Jens Axboef299b7c2017-08-08 17:51:45 -0600125 return;
126
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500127 part_stat_local_inc(part, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -0600128 if (part->partno)
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500129 part_stat_local_inc(&part_to_disk(part)->part0, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -0600130}
131
132void part_dec_in_flight(struct request_queue *q, struct hd_struct *part, int rw)
133{
Jens Axboe344e9ff2018-11-15 12:22:51 -0700134 if (queue_is_mq(q))
Jens Axboef299b7c2017-08-08 17:51:45 -0600135 return;
136
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500137 part_stat_local_dec(part, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -0600138 if (part->partno)
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500139 part_stat_local_dec(&part_to_disk(part)->part0, in_flight[rw]);
Jens Axboef299b7c2017-08-08 17:51:45 -0600140}
141
Christoph Hellwig60057712020-03-25 16:48:36 +0100142static unsigned int part_in_flight(struct request_queue *q,
143 struct hd_struct *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600144{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500145 int cpu;
Mikulas Patockae016b782018-12-06 11:41:21 -0500146 unsigned int inflight;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500147
Jens Axboe344e9ff2018-11-15 12:22:51 -0700148 if (queue_is_mq(q)) {
Mikulas Patockae016b782018-12-06 11:41:21 -0500149 return blk_mq_in_flight(q, part);
Jens Axboef299b7c2017-08-08 17:51:45 -0600150 }
151
Mikulas Patockae016b782018-12-06 11:41:21 -0500152 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500153 for_each_possible_cpu(cpu) {
Mikulas Patockae016b782018-12-06 11:41:21 -0500154 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
155 part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500156 }
Mikulas Patockae016b782018-12-06 11:41:21 -0500157 if ((int)inflight < 0)
158 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500159
Mikulas Patockae016b782018-12-06 11:41:21 -0500160 return inflight;
Jens Axboef299b7c2017-08-08 17:51:45 -0600161}
162
Christoph Hellwig60057712020-03-25 16:48:36 +0100163static void part_in_flight_rw(struct request_queue *q, struct hd_struct *part,
164 unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700165{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500166 int cpu;
167
Jens Axboe344e9ff2018-11-15 12:22:51 -0700168 if (queue_is_mq(q)) {
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700169 blk_mq_in_flight_rw(q, part, inflight);
170 return;
171 }
172
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500173 inflight[0] = 0;
174 inflight[1] = 0;
175 for_each_possible_cpu(cpu) {
176 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
177 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
178 }
179 if ((int)inflight[0] < 0)
180 inflight[0] = 0;
181 if ((int)inflight[1] < 0)
182 inflight[1] = 0;
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700183}
184
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200185struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
186{
187 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
188
189 if (unlikely(partno < 0 || partno >= ptbl->len))
190 return NULL;
191 return rcu_dereference(ptbl->part[partno]);
192}
193
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200194/**
195 * disk_get_part - get partition
196 * @disk: disk to look partition from
197 * @partno: partition number
198 *
199 * Look for partition @partno from @disk. If found, increment
200 * reference count and return it.
201 *
202 * CONTEXT:
203 * Don't care.
204 *
205 * RETURNS:
206 * Pointer to the found partition on success, NULL if not found.
207 */
208struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
209{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200210 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900211
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200212 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200213 part = __disk_get_part(disk, partno);
214 if (part)
215 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200216 rcu_read_unlock();
217
218 return part;
219}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200220
221/**
222 * disk_part_iter_init - initialize partition iterator
223 * @piter: iterator to initialize
224 * @disk: disk to iterate over
225 * @flags: DISK_PITER_* flags
226 *
227 * Initialize @piter so that it iterates over partitions of @disk.
228 *
229 * CONTEXT:
230 * Don't care.
231 */
232void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
233 unsigned int flags)
234{
Tejun Heo540eed52008-08-25 19:56:15 +0900235 struct disk_part_tbl *ptbl;
236
237 rcu_read_lock();
238 ptbl = rcu_dereference(disk->part_tbl);
239
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200240 piter->disk = disk;
241 piter->part = NULL;
242
243 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900244 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200245 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200246 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200247 else
248 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200249
250 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900251
252 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200253}
254EXPORT_SYMBOL_GPL(disk_part_iter_init);
255
256/**
257 * disk_part_iter_next - proceed iterator to the next partition and return it
258 * @piter: iterator of interest
259 *
260 * Proceed @piter to the next partition and return it.
261 *
262 * CONTEXT:
263 * Don't care.
264 */
265struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
266{
Tejun Heo540eed52008-08-25 19:56:15 +0900267 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200268 int inc, end;
269
270 /* put the last partition */
271 disk_put_part(piter->part);
272 piter->part = NULL;
273
Tejun Heo540eed52008-08-25 19:56:15 +0900274 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200275 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900276 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200277
278 /* determine iteration parameters */
279 if (piter->flags & DISK_PITER_REVERSE) {
280 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200281 if (piter->flags & (DISK_PITER_INCL_PART0 |
282 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200283 end = -1;
284 else
285 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200286 } else {
287 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900288 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200289 }
290
291 /* iterate to the next partition */
292 for (; piter->idx != end; piter->idx += inc) {
293 struct hd_struct *part;
294
Tejun Heo540eed52008-08-25 19:56:15 +0900295 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200296 if (!part)
297 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200298 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200299 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
300 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
301 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200302 continue;
303
Tejun Heoed9e1982008-08-25 19:56:05 +0900304 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200305 piter->part = part;
306 piter->idx += inc;
307 break;
308 }
309
310 rcu_read_unlock();
311
312 return piter->part;
313}
314EXPORT_SYMBOL_GPL(disk_part_iter_next);
315
316/**
317 * disk_part_iter_exit - finish up partition iteration
318 * @piter: iter of interest
319 *
320 * Called when iteration is over. Cleans up @piter.
321 *
322 * CONTEXT:
323 * Don't care.
324 */
325void disk_part_iter_exit(struct disk_part_iter *piter)
326{
327 disk_put_part(piter->part);
328 piter->part = NULL;
329}
330EXPORT_SYMBOL_GPL(disk_part_iter_exit);
331
Jens Axboea6f23652008-10-24 12:52:42 +0200332static inline int sector_in_part(struct hd_struct *part, sector_t sector)
333{
334 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200335 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200336}
337
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200338/**
339 * disk_map_sector_rcu - map sector to partition
340 * @disk: gendisk of interest
341 * @sector: sector to map
342 *
343 * Find out which partition @sector maps to on @disk. This is
344 * primarily used for stats accounting.
345 *
346 * CONTEXT:
347 * RCU read locked. The returned partition pointer is valid only
348 * while preemption is disabled.
349 *
350 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900351 * Found partition on success, part0 is returned if no partition matches
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200352 */
353struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
354{
Tejun Heo540eed52008-08-25 19:56:15 +0900355 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200356 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200357 int i;
358
Tejun Heo540eed52008-08-25 19:56:15 +0900359 ptbl = rcu_dereference(disk->part_tbl);
360
Jens Axboea6f23652008-10-24 12:52:42 +0200361 part = rcu_dereference(ptbl->last_lookup);
362 if (part && sector_in_part(part, sector))
363 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200364
Jens Axboea6f23652008-10-24 12:52:42 +0200365 for (i = 1; i < ptbl->len; i++) {
366 part = rcu_dereference(ptbl->part[i]);
367
368 if (part && sector_in_part(part, sector)) {
369 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200370 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200371 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200372 }
Tejun Heo074a7ac2008-08-25 19:56:14 +0900373 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200374}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200375
Shin'ichiro Kawasakib53df2e2020-02-21 10:37:08 +0900376/**
377 * disk_has_partitions
378 * @disk: gendisk of interest
379 *
380 * Walk through the partition table and check if valid partition exists.
381 *
382 * CONTEXT:
383 * Don't care.
384 *
385 * RETURNS:
386 * True if the gendisk has at least one valid non-zero size partition.
387 * Otherwise false.
388 */
389bool disk_has_partitions(struct gendisk *disk)
390{
391 struct disk_part_tbl *ptbl;
392 int i;
393 bool ret = false;
394
395 rcu_read_lock();
396 ptbl = rcu_dereference(disk->part_tbl);
397
398 /* Iterate partitions skipping the whole device at index 0 */
399 for (i = 1; i < ptbl->len; i++) {
400 if (rcu_dereference(ptbl->part[i])) {
401 ret = true;
402 break;
403 }
404 }
405
406 rcu_read_unlock();
407
408 return ret;
409}
410EXPORT_SYMBOL_GPL(disk_has_partitions);
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/*
413 * Can be deleted altogether. Later.
414 *
415 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600416#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static struct blk_major_name {
418 struct blk_major_name *next;
419 int major;
420 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800421} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100424static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Joe Korty68eef3b2006-03-31 02:30:32 -0800426 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Joe Korty68eef3b2006-03-31 02:30:32 -0800429#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200430void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800431{
Joe Korty68eef3b2006-03-31 02:30:32 -0800432 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800433
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600434 mutex_lock(&block_class_lock);
435 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
436 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200437 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600438 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
Joe Korty68eef3b2006-03-31 02:30:32 -0800440#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100442/**
443 * register_blkdev - register a new block device
444 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800445 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
446 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100447 * @name: the name of the new block device as a zero terminated string
448 *
449 * The @name must be unique within the system.
450 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300451 * The return value depends on the @major input parameter:
452 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800453 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
454 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300455 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100456 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800457 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
458 *
459 * See Documentation/admin-guide/devices.txt for the list of allocated
460 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100461 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462int register_blkdev(unsigned int major, const char *name)
463{
464 struct blk_major_name **n, *p;
465 int index, ret = 0;
466
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200467 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 /* temporary */
470 if (major == 0) {
471 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
472 if (major_names[index] == NULL)
473 break;
474 }
475
476 if (index == 0) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500477 printk("%s: failed to get major for %s\n",
478 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 ret = -EBUSY;
480 goto out;
481 }
482 major = index;
483 ret = major;
484 }
485
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600486 if (major >= BLKDEV_MAJOR_MAX) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500487 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
488 __func__, major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600489
490 ret = -EINVAL;
491 goto out;
492 }
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
495 if (p == NULL) {
496 ret = -ENOMEM;
497 goto out;
498 }
499
500 p->major = major;
501 strlcpy(p->name, name, sizeof(p->name));
502 p->next = NULL;
503 index = major_to_index(major);
504
505 for (n = &major_names[index]; *n; n = &(*n)->next) {
506 if ((*n)->major == major)
507 break;
508 }
509 if (!*n)
510 *n = p;
511 else
512 ret = -EBUSY;
513
514 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800515 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 major, name);
517 kfree(p);
518 }
519out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200520 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return ret;
522}
523
524EXPORT_SYMBOL(register_blkdev);
525
Akinobu Mitaf4480242007-07-17 04:03:47 -0700526void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 struct blk_major_name **n;
529 struct blk_major_name *p = NULL;
530 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200532 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 for (n = &major_names[index]; *n; n = &(*n)->next)
534 if ((*n)->major == major)
535 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700536 if (!*n || strcmp((*n)->name, name)) {
537 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700538 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 p = *n;
540 *n = p->next;
541 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200542 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546EXPORT_SYMBOL(unregister_blkdev);
547
548static struct kobj_map *bdev_map;
549
Tejun Heobcce3de2008-08-25 19:47:22 +0900550/**
Tejun Heo870d6652008-08-25 19:47:25 +0900551 * blk_mangle_minor - scatter minor numbers apart
552 * @minor: minor number to mangle
553 *
554 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
555 * is enabled. Mangling twice gives the original value.
556 *
557 * RETURNS:
558 * Mangled value.
559 *
560 * CONTEXT:
561 * Don't care.
562 */
563static int blk_mangle_minor(int minor)
564{
565#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
566 int i;
567
568 for (i = 0; i < MINORBITS / 2; i++) {
569 int low = minor & (1 << i);
570 int high = minor & (1 << (MINORBITS - 1 - i));
571 int distance = MINORBITS - 1 - 2 * i;
572
573 minor ^= low | high; /* clear both bits */
574 low <<= distance; /* swap the positions */
575 high >>= distance;
576 minor |= low | high; /* and set */
577 }
578#endif
579 return minor;
580}
581
582/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900583 * blk_alloc_devt - allocate a dev_t for a partition
584 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900585 * @devt: out parameter for resulting dev_t
586 *
587 * Allocate a dev_t for block device.
588 *
589 * RETURNS:
590 * 0 on success, allocated dev_t is returned in *@devt. -errno on
591 * failure.
592 *
593 * CONTEXT:
594 * Might sleep.
595 */
596int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
597{
598 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800599 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900600
601 /* in consecutive minor range? */
602 if (part->partno < disk->minors) {
603 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
604 return 0;
605 }
606
607 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600608 idr_preload(GFP_KERNEL);
609
Dan Williams4d66e5e2015-06-10 23:47:14 -0400610 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600611 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400612 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600613
614 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800615 if (idx < 0)
616 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900617
Tejun Heo870d6652008-08-25 19:47:25 +0900618 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900619 return 0;
620}
621
622/**
623 * blk_free_devt - free a dev_t
624 * @devt: dev_t to free
625 *
626 * Free @devt which was allocated using blk_alloc_devt().
627 *
628 * CONTEXT:
629 * Might sleep.
630 */
631void blk_free_devt(dev_t devt)
632{
Tejun Heobcce3de2008-08-25 19:47:22 +0900633 if (devt == MKDEV(0, 0))
634 return;
635
636 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400637 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900638 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400639 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900640 }
641}
642
Bart Van Assche33c826e2019-05-30 17:00:47 -0700643/*
644 * We invalidate devt by assigning NULL pointer for devt in idr.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800645 */
646void blk_invalidate_devt(dev_t devt)
647{
648 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
649 spin_lock_bh(&ext_devt_lock);
650 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
651 spin_unlock_bh(&ext_devt_lock);
652 }
653}
654
Tejun Heo1f014292008-08-25 19:47:23 +0900655static char *bdevt_str(dev_t devt, char *buf)
656{
657 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
658 char tbuf[BDEVT_SIZE];
659 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
660 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
661 } else
662 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
663
664 return buf;
665}
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667/*
668 * Register device numbers dev..(dev+range-1)
669 * range must be nonzero
670 * The hash chain is sorted on range, so that subranges can override.
671 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200672void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 struct kobject *(*probe)(dev_t, int *, void *),
674 int (*lock)(dev_t, void *), void *data)
675{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200676 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
679EXPORT_SYMBOL(blk_register_region);
680
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200681void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200683 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
686EXPORT_SYMBOL(blk_unregister_region);
687
Tejun Heocf771cb2008-09-03 09:01:09 +0200688static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200691
Tejun Heoed9e1982008-08-25 19:56:05 +0900692 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200695static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct gendisk *p = data;
698
Jan Kara3079c222018-02-26 13:01:38 +0100699 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return -1;
701 return 0;
702}
703
Hannes Reineckefef912b2018-09-28 08:17:19 +0200704static void register_disk(struct device *parent, struct gendisk *disk,
705 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100706{
707 struct device *ddev = disk_to_dev(disk);
708 struct block_device *bdev;
709 struct disk_part_iter piter;
710 struct hd_struct *part;
711 int err;
712
Dan Williamse63a46b2016-06-15 18:17:27 -0700713 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100714
Kees Cookffc8b302013-07-03 15:01:14 -0700715 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100716
717 /* delay uevents, until we scanned partition table */
718 dev_set_uevent_suppress(ddev, 1);
719
Hannes Reineckefef912b2018-09-28 08:17:19 +0200720 if (groups) {
721 WARN_ON(ddev->groups);
722 ddev->groups = groups;
723 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100724 if (device_add(ddev))
725 return;
726 if (!sysfs_deprecated) {
727 err = sysfs_create_link(block_depr, &ddev->kobj,
728 kobject_name(&ddev->kobj));
729 if (err) {
730 device_del(ddev);
731 return;
732 }
733 }
Ming Lei25e823c2013-02-22 16:34:13 -0800734
735 /*
736 * avoid probable deadlock caused by allocating memory with
737 * GFP_KERNEL in runtime_resume callback of its all ancestor
738 * devices
739 */
740 pm_runtime_set_memalloc_noio(ddev, true);
741
Tejun Heod2bf1b62010-12-08 20:57:36 +0100742 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
743 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
744
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300745 if (disk->flags & GENHD_FL_HIDDEN) {
746 dev_set_uevent_suppress(ddev, 0);
747 return;
748 }
749
Tejun Heod2bf1b62010-12-08 20:57:36 +0100750 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200751 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100752 goto exit;
753
754 /* No such device (e.g., media were just removed) */
755 if (!get_capacity(disk))
756 goto exit;
757
758 bdev = bdget_disk(disk, 0);
759 if (!bdev)
760 goto exit;
761
762 bdev->bd_invalidated = 1;
763 err = blkdev_get(bdev, FMODE_READ, NULL);
764 if (err < 0)
765 goto exit;
766 blkdev_put(bdev, FMODE_READ);
767
768exit:
769 /* announce disk after possible partitions are created */
770 dev_set_uevent_suppress(ddev, 0);
771 kobject_uevent(&ddev->kobj, KOBJ_ADD);
772
773 /* announce possible partitions */
774 disk_part_iter_init(&piter, disk, 0);
775 while ((part = disk_part_iter_next(&piter)))
776 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
777 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300778
zhengbin4d7c1d32019-02-20 21:27:05 +0800779 if (disk->queue->backing_dev_info->dev) {
780 err = sysfs_create_link(&ddev->kobj,
781 &disk->queue->backing_dev_info->dev->kobj,
782 "bdi");
783 WARN_ON(err);
784 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500788 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700789 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200791 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500792 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 *
794 * This function registers the partitioning information in @disk
795 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900796 *
797 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500799static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200800 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500801 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900803 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400804 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700805
Damien Le Moal737eb782019-09-05 18:51:33 +0900806 /*
807 * The disk queue should now be all set with enough information about
808 * the device for the elevator code to pick an adequate default
809 * elevator if one is needed, that is, for devices requesting queue
810 * registration.
811 */
812 if (register_queue)
813 elevator_init_mq(disk->queue);
814
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900815 /* minors == 0 indicates to use ext devt from part0 and should
816 * be accompanied with EXT_DEVT flag. Make sure all
817 * parameters make sense.
818 */
819 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300820 WARN_ON(!disk->minors &&
821 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900824
825 retval = blk_alloc_devt(&disk->part0, &devt);
826 if (retval) {
827 WARN_ON(1);
828 return;
829 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900830 disk->major = MAJOR(devt);
831 disk->first_minor = MINOR(devt);
832
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100833 disk_alloc_events(disk);
834
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300835 if (disk->flags & GENHD_FL_HIDDEN) {
836 /*
837 * Don't let hidden disks show up in /proc/partitions,
838 * and don't bother scanning for partitions either.
839 */
840 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
841 disk->flags |= GENHD_FL_NO_PART_SCAN;
842 } else {
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200843 struct backing_dev_info *bdi = disk->queue->backing_dev_info;
844 struct device *dev = disk_to_dev(disk);
weiping zhang3a921682017-10-31 18:38:59 +0800845 int ret;
846
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300847 /* Register BDI before referencing it from bdev */
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200848 dev->devt = devt;
849 ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt));
weiping zhang3a921682017-10-31 18:38:59 +0800850 WARN_ON(ret);
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200851 bdi_set_owner(bdi, dev);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300852 blk_register_region(disk_devt(disk), disk->minors, NULL,
853 exact_match, exact_lock, disk);
854 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200855 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500856 if (register_queue)
857 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700858
Tejun Heo523e1d32011-10-19 14:31:07 +0200859 /*
860 * Take an extra ref on queue which will be put on disk_release()
861 * so that it sticks around as long as @disk is there.
862 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100863 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200864
Tejun Heo77ea8872010-12-08 20:57:37 +0100865 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400866 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500868
Hannes Reineckefef912b2018-09-28 08:17:19 +0200869void device_add_disk(struct device *parent, struct gendisk *disk,
870 const struct attribute_group **groups)
871
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500872{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200873 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500874}
Dan Williamse63a46b2016-06-15 18:17:27 -0700875EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500877void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
878{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200879 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500880}
881EXPORT_SYMBOL(device_add_disk_no_queue_reg);
882
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200883static void invalidate_partition(struct gendisk *disk, int partno)
884{
885 struct block_device *bdev;
886
887 bdev = bdget_disk(disk, partno);
888 if (!bdev)
889 return;
890
891 fsync_bdev(bdev);
892 __invalidate_device(bdev, true);
Christoph Hellwig9bc5c392020-04-14 09:29:02 +0200893
894 /*
895 * Unhash the bdev inode for this device so that it gets evicted as soon
896 * as last inode reference is dropped.
897 */
898 remove_inode_hash(bdev->bd_inode);
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200899 bdput(bdev);
900}
901
Tejun Heod2bf1b62010-12-08 20:57:36 +0100902void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100904 struct disk_part_iter piter;
905 struct hd_struct *part;
906
Martin K. Petersen25520d52015-10-21 13:19:49 -0400907 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100908 disk_del_events(disk);
909
Jan Kara56c09082018-02-26 13:01:41 +0100910 /*
911 * Block lookups of the disk until all bdevs are unhashed and the
912 * disk is marked as dead (GENHD_FL_UP cleared).
913 */
914 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100915 /* invalidate stuff */
916 disk_part_iter_init(&piter, disk,
917 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
918 while ((part = disk_part_iter_next(&piter))) {
919 invalidate_partition(disk, part->partno);
Christoph Hellwigcddae802020-04-14 09:28:54 +0200920 delete_partition(disk, part);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100921 }
922 disk_part_iter_exit(&piter);
923
924 invalidate_partition(disk, 0);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100925 set_capacity(disk, 0);
926 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100927 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100928
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300929 if (!(disk->flags & GENHD_FL_HIDDEN))
930 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100931 if (disk->queue) {
932 /*
933 * Unregister bdi before releasing device numbers (as they can
934 * get reused and we'd get clashes in sysfs).
935 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500936 if (!(disk->flags & GENHD_FL_HIDDEN))
937 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100938 blk_unregister_queue(disk);
939 } else {
940 WARN_ON(1);
941 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100942
Hannes Reinecke17eac092017-11-09 17:57:06 +0100943 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300944 blk_unregister_region(disk_devt(disk), disk->minors);
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800945 /*
946 * Remove gendisk pointer from idr so that it cannot be looked up
947 * while RCU period before freeing gendisk is running to prevent
948 * use-after-free issues. Note that the device number stays
949 * "in-use" until we really free the gendisk.
950 */
951 blk_invalidate_devt(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100952
953 kobject_put(disk->part0.holder_dir);
954 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900957 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100958 if (!sysfs_deprecated)
959 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800960 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100961 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100963EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Vishal Verma99e66082016-01-09 08:36:51 -0800965/* sysfs access to bad-blocks list. */
966static ssize_t disk_badblocks_show(struct device *dev,
967 struct device_attribute *attr,
968 char *page)
969{
970 struct gendisk *disk = dev_to_disk(dev);
971
972 if (!disk->bb)
973 return sprintf(page, "\n");
974
975 return badblocks_show(disk->bb, page, 0);
976}
977
978static ssize_t disk_badblocks_store(struct device *dev,
979 struct device_attribute *attr,
980 const char *page, size_t len)
981{
982 struct gendisk *disk = dev_to_disk(dev);
983
984 if (!disk->bb)
985 return -ENXIO;
986
987 return badblocks_store(disk->bb, page, len, 0);
988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/**
991 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200992 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200993 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 *
995 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200996 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200998struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Tejun Heobcce3de2008-08-25 19:47:22 +09001000 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001001
Tejun Heobcce3de2008-08-25 19:47:22 +09001002 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
1003 struct kobject *kobj;
1004
1005 kobj = kobj_lookup(bdev_map, devt, partno);
1006 if (kobj)
1007 disk = dev_to_disk(kobj_to_dev(kobj));
1008 } else {
1009 struct hd_struct *part;
1010
Dan Williams4d66e5e2015-06-10 23:47:14 -04001011 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +09001012 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +01001013 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +09001014 *partno = part->partno;
1015 disk = part_to_disk(part);
1016 }
Dan Williams4d66e5e2015-06-10 23:47:14 -04001017 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +09001018 }
1019
Jan Kara56c09082018-02-26 13:01:41 +01001020 if (!disk)
1021 return NULL;
1022
1023 /*
1024 * Synchronize with del_gendisk() to not return disk that is being
1025 * destroyed.
1026 */
1027 down_read(&disk->lookup_sem);
1028 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
1029 !(disk->flags & GENHD_FL_UP))) {
1030 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +01001031 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001032 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +01001033 } else {
1034 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001035 }
Tejun Heobcce3de2008-08-25 19:47:22 +09001036 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
Tejun Heof331c022008-09-03 09:01:48 +02001039/**
1040 * bdget_disk - do bdget() by gendisk and partition number
1041 * @disk: gendisk of interest
1042 * @partno: partition number
1043 *
1044 * Find partition @partno from @disk, do bdget() on it.
1045 *
1046 * CONTEXT:
1047 * Don't care.
1048 *
1049 * RETURNS:
1050 * Resulting block_device on success, NULL on failure.
1051 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001052struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +02001053{
Tejun Heo548b10e2008-08-29 09:01:47 +02001054 struct hd_struct *part;
1055 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +02001056
Tejun Heo548b10e2008-08-29 09:01:47 +02001057 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001058 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +02001059 bdev = bdget(part_devt(part));
1060 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +02001061
Tejun Heo548b10e2008-08-29 09:01:47 +02001062 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +02001063}
1064EXPORT_SYMBOL(bdget_disk);
1065
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001066/*
1067 * print a full list of all partitions - intended for places where the root
1068 * filesystem can't be mounted and thus to give the victim some idea of what
1069 * went wrong
1070 */
1071void __init printk_all_partitions(void)
1072{
Tejun Heodef4e382008-09-03 08:57:12 +02001073 struct class_dev_iter iter;
1074 struct device *dev;
1075
1076 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1077 while ((dev = class_dev_iter_next(&iter))) {
1078 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001079 struct disk_part_iter piter;
1080 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +09001081 char name_buf[BDEVNAME_SIZE];
1082 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +02001083
1084 /*
1085 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001086 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +02001087 */
1088 if (get_capacity(disk) == 0 ||
1089 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
1090 continue;
1091
1092 /*
1093 * Note, unlike /proc/partitions, I am showing the
1094 * numbers in hex - the same format as the root=
1095 * option takes.
1096 */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001097 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
1098 while ((part = disk_part_iter_next(&piter))) {
1099 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +02001100
Will Drewryb5af9212010-08-31 15:47:07 -05001101 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +09001102 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001103 (unsigned long long)part_nr_sects_read(part) >> 1
1104 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -08001105 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +09001106 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -07001107 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +09001108 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -07001109 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001110 else
1111 printk(" (driver?)\n");
1112 } else
1113 printk("\n");
1114 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001115 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +02001116 }
1117 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120#ifdef CONFIG_PROC_FS
1121/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +02001122static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001123{
Tejun Heodef4e382008-09-03 08:57:12 +02001124 loff_t skip = *pos;
1125 struct class_dev_iter *iter;
1126 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001127
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001128 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +02001129 if (!iter)
1130 return ERR_PTR(-ENOMEM);
1131
1132 seqf->private = iter;
1133 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1134 do {
1135 dev = class_dev_iter_next(iter);
1136 if (!dev)
1137 return NULL;
1138 } while (skip--);
1139
1140 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001141}
1142
Tejun Heodef4e382008-09-03 08:57:12 +02001143static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001145 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -04001146
Tejun Heodef4e382008-09-03 08:57:12 +02001147 (*pos)++;
1148 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001149 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001150 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return NULL;
1153}
1154
Tejun Heodef4e382008-09-03 08:57:12 +02001155static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001156{
Tejun Heodef4e382008-09-03 08:57:12 +02001157 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001158
Tejun Heodef4e382008-09-03 08:57:12 +02001159 /* stop is called even after start failed :-( */
1160 if (iter) {
1161 class_dev_iter_exit(iter);
1162 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001163 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
Tejun Heodef4e382008-09-03 08:57:12 +02001167static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Jianpeng Ma06768062012-08-03 10:42:00 +02001169 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001170
1171 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001172 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001173 seq_puts(seqf, "major minor #blocks name\n\n");
1174 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
Tejun Heocf771cb2008-09-03 09:01:09 +02001177static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
1179 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001180 struct disk_part_iter piter;
1181 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 char buf[BDEVNAME_SIZE];
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001185 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001186 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return 0;
1188 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1189 return 0;
1190
1191 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001192 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001193 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001194 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001195 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001196 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001197 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001198 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 return 0;
1201}
1202
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001203static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001204 .start = show_partition_start,
1205 .next = disk_seqf_next,
1206 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001207 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208};
1209#endif
1210
1211
Tejun Heocf771cb2008-09-03 09:01:09 +02001212static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001214 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001216 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return NULL;
1218}
1219
1220static int __init genhd_device_init(void)
1221{
Dan Williamse105b8b2008-04-21 10:51:07 -07001222 int error;
1223
1224 block_class.dev_kobj = sysfs_dev_block_kobj;
1225 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001226 if (unlikely(error))
1227 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001228 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001230
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001231 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1232
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001233 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001234 if (!sysfs_deprecated)
1235 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239subsys_initcall(genhd_device_init);
1240
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001241static ssize_t disk_range_show(struct device *dev,
1242 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001244 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001246 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Tejun Heo1f014292008-08-25 19:47:23 +09001249static ssize_t disk_ext_range_show(struct device *dev,
1250 struct device_attribute *attr, char *buf)
1251{
1252 struct gendisk *disk = dev_to_disk(dev);
1253
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001254 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001255}
1256
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001257static ssize_t disk_removable_show(struct device *dev,
1258 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001259{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001260 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001261
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001262 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001264}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001266static ssize_t disk_hidden_show(struct device *dev,
1267 struct device_attribute *attr, char *buf)
1268{
1269 struct gendisk *disk = dev_to_disk(dev);
1270
1271 return sprintf(buf, "%d\n",
1272 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1273}
1274
Kay Sievers1c9ce522008-06-13 09:41:00 +02001275static ssize_t disk_ro_show(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
1278 struct gendisk *disk = dev_to_disk(dev);
1279
Tejun Heob7db9952008-08-25 19:56:10 +09001280 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001281}
1282
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001283ssize_t part_size_show(struct device *dev,
1284 struct device_attribute *attr, char *buf)
1285{
1286 struct hd_struct *p = dev_to_part(dev);
1287
1288 return sprintf(buf, "%llu\n",
1289 (unsigned long long)part_nr_sects_read(p));
1290}
1291
1292ssize_t part_stat_show(struct device *dev,
1293 struct device_attribute *attr, char *buf)
1294{
1295 struct hd_struct *p = dev_to_part(dev);
1296 struct request_queue *q = part_to_disk(p)->queue;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001297 struct disk_stats stat;
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001298 unsigned int inflight;
1299
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001300 part_stat_read_all(p, &stat);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001301 inflight = part_in_flight(q, p);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001302
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001303 return sprintf(buf,
1304 "%8lu %8lu %8llu %8u "
1305 "%8lu %8lu %8llu %8u "
1306 "%8u %8u %8u "
1307 "%8lu %8lu %8llu %8u "
1308 "%8lu %8u"
1309 "\n",
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001310 stat.ios[STAT_READ],
1311 stat.merges[STAT_READ],
1312 (unsigned long long)stat.sectors[STAT_READ],
1313 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1314 stat.ios[STAT_WRITE],
1315 stat.merges[STAT_WRITE],
1316 (unsigned long long)stat.sectors[STAT_WRITE],
1317 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001318 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001319 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001320 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1321 stat.nsecs[STAT_WRITE] +
1322 stat.nsecs[STAT_DISCARD] +
1323 stat.nsecs[STAT_FLUSH],
1324 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001325 stat.ios[STAT_DISCARD],
1326 stat.merges[STAT_DISCARD],
1327 (unsigned long long)stat.sectors[STAT_DISCARD],
1328 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1329 stat.ios[STAT_FLUSH],
1330 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001331}
1332
1333ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1334 char *buf)
1335{
1336 struct hd_struct *p = dev_to_part(dev);
1337 struct request_queue *q = part_to_disk(p)->queue;
1338 unsigned int inflight[2];
1339
1340 part_in_flight_rw(q, p, inflight);
1341 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1342}
1343
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001344static ssize_t disk_capability_show(struct device *dev,
1345 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001346{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001347 struct gendisk *disk = dev_to_disk(dev);
1348
1349 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001350}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001351
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001352static ssize_t disk_alignment_offset_show(struct device *dev,
1353 struct device_attribute *attr,
1354 char *buf)
1355{
1356 struct gendisk *disk = dev_to_disk(dev);
1357
1358 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1359}
1360
Martin K. Petersen86b37282009-11-10 11:50:21 +01001361static ssize_t disk_discard_alignment_show(struct device *dev,
1362 struct device_attribute *attr,
1363 char *buf)
1364{
1365 struct gendisk *disk = dev_to_disk(dev);
1366
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001367 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001368}
1369
Joe Perches5657a812018-05-24 13:38:59 -06001370static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1371static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1372static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1373static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1374static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1375static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1376static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1377static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1378static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1379static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1380static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1381static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001382
Akinobu Mitac17bb492006-12-08 02:39:46 -08001383#ifdef CONFIG_FAIL_MAKE_REQUEST
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001384ssize_t part_fail_show(struct device *dev,
1385 struct device_attribute *attr, char *buf)
1386{
1387 struct hd_struct *p = dev_to_part(dev);
1388
1389 return sprintf(buf, "%d\n", p->make_it_fail);
1390}
1391
1392ssize_t part_fail_store(struct device *dev,
1393 struct device_attribute *attr,
1394 const char *buf, size_t count)
1395{
1396 struct hd_struct *p = dev_to_part(dev);
1397 int i;
1398
1399 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1400 p->make_it_fail = (i == 0) ? 0 : 1;
1401
1402 return count;
1403}
1404
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001405static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001406 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001407#endif /* CONFIG_FAIL_MAKE_REQUEST */
1408
Jens Axboe581d4e22008-09-14 05:56:33 -07001409#ifdef CONFIG_FAIL_IO_TIMEOUT
1410static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001411 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001412#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001413
1414static struct attribute *disk_attrs[] = {
1415 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001416 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001417 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001418 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001419 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001420 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001421 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001422 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001423 &dev_attr_capability.attr,
1424 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001425 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001426 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001427#ifdef CONFIG_FAIL_MAKE_REQUEST
1428 &dev_attr_fail.attr,
1429#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001430#ifdef CONFIG_FAIL_IO_TIMEOUT
1431 &dev_attr_fail_timeout.attr,
1432#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001433 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434};
1435
Dan Williams9438b3e02017-04-27 14:46:26 -07001436static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1437{
1438 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1439 struct gendisk *disk = dev_to_disk(dev);
1440
1441 if (a == &dev_attr_badblocks.attr && !disk->bb)
1442 return 0;
1443 return a->mode;
1444}
1445
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001446static struct attribute_group disk_attr_group = {
1447 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001448 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001449};
1450
David Brownella4dbd672009-06-24 10:06:31 -07001451static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001452 &disk_attr_group,
1453 NULL
1454};
1455
Tejun Heo540eed52008-08-25 19:56:15 +09001456/**
1457 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1458 * @disk: disk to replace part_tbl for
1459 * @new_ptbl: new part_tbl to install
1460 *
1461 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1462 * original ptbl is freed using RCU callback.
1463 *
1464 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001465 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001466 */
1467static void disk_replace_part_tbl(struct gendisk *disk,
1468 struct disk_part_tbl *new_ptbl)
1469{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001470 struct disk_part_tbl *old_ptbl =
1471 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001472
1473 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001474
1475 if (old_ptbl) {
1476 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001477 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001478 }
Tejun Heo540eed52008-08-25 19:56:15 +09001479}
1480
1481/**
1482 * disk_expand_part_tbl - expand disk->part_tbl
1483 * @disk: disk to expand part_tbl for
1484 * @partno: expand such that this partno can fit in
1485 *
1486 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1487 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1488 *
1489 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001490 * Matching bd_mutex locked or the caller is the only user of @disk.
1491 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001492 *
1493 * RETURNS:
1494 * 0 on success, -errno on failure.
1495 */
1496int disk_expand_part_tbl(struct gendisk *disk, int partno)
1497{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001498 struct disk_part_tbl *old_ptbl =
1499 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001500 struct disk_part_tbl *new_ptbl;
1501 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001502 int i, target;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001503
1504 /*
1505 * check for int overflow, since we can get here from blkpg_ioctl()
1506 * with a user passed 'partno'.
1507 */
1508 target = partno + 1;
1509 if (target < 0)
1510 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001511
1512 /* disk_max_parts() is zero during initialization, ignore if so */
1513 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1514 return -EINVAL;
1515
1516 if (target <= len)
1517 return 0;
1518
Gustavo A. R. Silva78b90a22019-05-31 13:47:54 -05001519 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1520 disk->node_id);
Tejun Heo540eed52008-08-25 19:56:15 +09001521 if (!new_ptbl)
1522 return -ENOMEM;
1523
Tejun Heo540eed52008-08-25 19:56:15 +09001524 new_ptbl->len = target;
1525
1526 for (i = 0; i < len; i++)
1527 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1528
1529 disk_replace_part_tbl(disk, new_ptbl);
1530 return 0;
1531}
1532
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001533static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001535 struct gendisk *disk = dev_to_disk(dev);
1536
Keith Busch2da78092014-08-26 09:05:36 -06001537 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001538 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001540 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001541 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001542 if (disk->queue)
1543 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 kfree(disk);
1545}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001546struct class block_class = {
1547 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548};
1549
Kay Sievers3c2670e2013-04-06 09:56:00 -07001550static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001551 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001552{
1553 struct gendisk *disk = dev_to_disk(dev);
1554
Christoph Hellwig348e1142020-03-27 09:07:17 +01001555 if (disk->fops->devnode)
1556 return disk->fops->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001557 return NULL;
1558}
1559
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001560static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001561 .name = "disk",
1562 .groups = disk_attr_groups,
1563 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001564 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565};
1566
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001567#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001568/*
1569 * aggregate disk stat collector. Uses the same stats that the sysfs
1570 * entries do, above, but makes them available through one seq_file.
1571 *
1572 * The output looks suspiciously like /proc/partitions with a bunch of
1573 * extra fields.
1574 */
1575static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001578 struct disk_part_iter piter;
1579 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001581 unsigned int inflight;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001582 struct disk_stats stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001585 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001586 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 " rio rmerge rsect ruse wio wmerge "
1588 "wsect wuse running use aveq"
1589 "\n\n");
1590 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001591
Tejun Heo71982a42009-04-17 08:34:48 +02001592 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001593 while ((hd = disk_part_iter_next(&piter))) {
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001594 part_stat_read_all(hd, &stat);
Mikulas Patockae016b782018-12-06 11:41:21 -05001595 inflight = part_in_flight(gp->queue, hd);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001596
Michael Callahanbdca3c82018-07-18 04:47:40 -07001597 seq_printf(seqf, "%4d %7d %s "
1598 "%lu %lu %lu %u "
1599 "%lu %lu %lu %u "
1600 "%u %u %u "
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001601 "%lu %lu %lu %u "
1602 "%lu %u"
1603 "\n",
Tejun Heof331c022008-09-03 09:01:48 +02001604 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1605 disk_name(gp, hd->partno, buf),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001606 stat.ios[STAT_READ],
1607 stat.merges[STAT_READ],
1608 stat.sectors[STAT_READ],
1609 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1610 NSEC_PER_MSEC),
1611 stat.ios[STAT_WRITE],
1612 stat.merges[STAT_WRITE],
1613 stat.sectors[STAT_WRITE],
1614 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1615 NSEC_PER_MSEC),
Mikulas Patockae016b782018-12-06 11:41:21 -05001616 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001617 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001618 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1619 stat.nsecs[STAT_WRITE] +
1620 stat.nsecs[STAT_DISCARD] +
1621 stat.nsecs[STAT_FLUSH],
1622 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001623 stat.ios[STAT_DISCARD],
1624 stat.merges[STAT_DISCARD],
1625 stat.sectors[STAT_DISCARD],
1626 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1627 NSEC_PER_MSEC),
1628 stat.ios[STAT_FLUSH],
1629 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1630 NSEC_PER_MSEC)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001631 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001633 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return 0;
1636}
1637
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001638static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001639 .start = disk_seqf_start,
1640 .next = disk_seqf_next,
1641 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 .show = diskstats_show
1643};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001644
1645static int __init proc_genhd_init(void)
1646{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001647 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1648 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001649 return 0;
1650}
1651module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001652#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Tejun Heocf771cb2008-09-03 09:01:09 +02001654dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001655{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001656 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001657 struct class_dev_iter iter;
1658 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001659
Tejun Heodef4e382008-09-03 08:57:12 +02001660 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1661 while ((dev = class_dev_iter_next(&iter))) {
1662 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001663 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001664
Kay Sievers3ada8b72009-01-06 10:44:43 -08001665 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001666 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001667
Neil Brown41b8c852009-02-18 10:33:59 +01001668 if (partno < disk->minors) {
1669 /* We need to return the right devno, even
1670 * if the partition doesn't exist yet.
1671 */
1672 devt = MKDEV(MAJOR(dev->devt),
1673 MINOR(dev->devt) + partno);
1674 break;
1675 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001676 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001677 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001678 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001679 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001680 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001681 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001682 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001683 }
Tejun Heodef4e382008-09-03 08:57:12 +02001684 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001685 return devt;
1686}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001687
Byungchul Parke319e1f2017-10-25 17:56:05 +09001688struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001689{
1690 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001691 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001692
Christoph Hellwigde65b012017-08-23 19:10:29 +02001693 if (minors > DISK_MAX_PARTS) {
1694 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001695 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001696 DISK_MAX_PARTS);
1697 minors = DISK_MAX_PARTS;
1698 }
Christoph Lameter19460892005-06-23 00:08:19 -07001699
Joe Perchesc1b511e2013-08-29 15:21:42 -07001700 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001702 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 kfree(disk);
1704 return NULL;
1705 }
Jan Kara56c09082018-02-26 13:01:41 +01001706 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001707 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001708 if (disk_expand_part_tbl(disk, 0)) {
1709 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001710 kfree(disk);
1711 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001713 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1714 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001715
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001716 /*
1717 * set_capacity() and get_capacity() currently don't use
1718 * seqcounter to read/update the part0->nr_sects. Still init
1719 * the counter as we can read the sectors in IO submission
1720 * patch using seqence counters.
1721 *
1722 * TODO: Ideally set_capacity() and get_capacity() should be
1723 * converted to make use of bd_mutex and sequence counters.
1724 */
1725 seqcount_init(&disk->part0.nr_sects_seq);
Ming Lei6c710132015-07-16 11:16:45 +08001726 if (hd_ref_init(&disk->part0)) {
1727 hd_free_part(&disk->part0);
1728 kfree(disk);
1729 return NULL;
1730 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001734 disk_to_dev(disk)->class = &block_class;
1735 disk_to_dev(disk)->type = &disk_type;
1736 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
1738 return disk;
1739}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001740EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Jan Kara3079c222018-02-26 13:01:38 +01001742struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
1744 struct module *owner;
1745 struct kobject *kobj;
1746
1747 if (!disk->fops)
1748 return NULL;
1749 owner = disk->fops->owner;
1750 if (owner && !try_module_get(owner))
1751 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001752 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (kobj == NULL) {
1754 module_put(owner);
1755 return NULL;
1756 }
1757 return kobj;
1758
1759}
Jan Kara3079c222018-02-26 13:01:38 +01001760EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762void put_disk(struct gendisk *disk)
1763{
1764 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001765 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767EXPORT_SYMBOL(put_disk);
1768
Jan Kara9df6c292018-02-26 13:01:39 +01001769/*
1770 * This is a counterpart of get_disk_and_module() and thus also of
1771 * get_gendisk().
1772 */
1773void put_disk_and_module(struct gendisk *disk)
1774{
1775 if (disk) {
1776 struct module *owner = disk->fops->owner;
1777
1778 put_disk(disk);
1779 module_put(owner);
1780 }
1781}
1782EXPORT_SYMBOL(put_disk_and_module);
1783
Hannes Reineckee3264a42009-07-28 09:13:13 +02001784static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1785{
1786 char event[] = "DISK_RO=1";
1787 char *envp[] = { event, NULL };
1788
1789 if (!ro)
1790 event[8] = '0';
1791 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1792}
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794void set_device_ro(struct block_device *bdev, int flag)
1795{
Tejun Heob7db9952008-08-25 19:56:10 +09001796 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
1799EXPORT_SYMBOL(set_device_ro);
1800
1801void set_disk_ro(struct gendisk *disk, int flag)
1802{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001803 struct disk_part_iter piter;
1804 struct hd_struct *part;
1805
Hannes Reineckee3264a42009-07-28 09:13:13 +02001806 if (disk->part0.policy != flag) {
1807 set_disk_ro_uevent(disk, flag);
1808 disk->part0.policy = flag;
1809 }
1810
1811 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001812 while ((part = disk_part_iter_next(&piter)))
1813 part->policy = flag;
1814 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817EXPORT_SYMBOL(set_disk_ro);
1818
1819int bdev_read_only(struct block_device *bdev)
1820{
1821 if (!bdev)
1822 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001823 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
1826EXPORT_SYMBOL(bdev_read_only);
1827
Tejun Heo77ea8872010-12-08 20:57:37 +01001828/*
1829 * Disk events - monitor disk events like media change and eject request.
1830 */
1831struct disk_events {
1832 struct list_head node; /* all disk_event's */
1833 struct gendisk *disk; /* the associated disk */
1834 spinlock_t lock;
1835
Tejun Heofdd514e2011-06-09 20:43:59 +02001836 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001837 int block; /* event blocking depth */
1838 unsigned int pending; /* events already sent out */
1839 unsigned int clearing; /* events being cleared */
1840
1841 long poll_msecs; /* interval, -1 for default */
1842 struct delayed_work dwork;
1843};
1844
1845static const char *disk_events_strs[] = {
1846 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1847 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1848};
1849
1850static char *disk_uevents[] = {
1851 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1852 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1853};
1854
1855/* list of all disk_events */
1856static DEFINE_MUTEX(disk_events_mutex);
1857static LIST_HEAD(disk_events);
1858
1859/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001860static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001861
1862static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1863{
1864 struct disk_events *ev = disk->ev;
1865 long intv_msecs = 0;
1866
1867 /*
1868 * If device-specific poll interval is set, always use it. If
Martin Wilck673387a2019-03-27 14:51:01 +01001869 * the default is being used, poll if the POLL flag is set.
Tejun Heo77ea8872010-12-08 20:57:37 +01001870 */
1871 if (ev->poll_msecs >= 0)
1872 intv_msecs = ev->poll_msecs;
Martin Wilckc92e2f02019-03-27 14:51:02 +01001873 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
Tejun Heo77ea8872010-12-08 20:57:37 +01001874 intv_msecs = disk_events_dfl_poll_msecs;
1875
1876 return msecs_to_jiffies(intv_msecs);
1877}
1878
Tejun Heoc3af54a2011-06-09 20:43:55 +02001879/**
1880 * disk_block_events - block and flush disk event checking
1881 * @disk: disk to block events for
1882 *
1883 * On return from this function, it is guaranteed that event checking
1884 * isn't in progress and won't happen until unblocked by
1885 * disk_unblock_events(). Events blocking is counted and the actual
1886 * unblocking happens after the matching number of unblocks are done.
1887 *
1888 * Note that this intentionally does not block event checking from
1889 * disk_clear_events().
1890 *
1891 * CONTEXT:
1892 * Might sleep.
1893 */
1894void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001895{
1896 struct disk_events *ev = disk->ev;
1897 unsigned long flags;
1898 bool cancel;
1899
Tejun Heoc3af54a2011-06-09 20:43:55 +02001900 if (!ev)
1901 return;
1902
Tejun Heofdd514e2011-06-09 20:43:59 +02001903 /*
1904 * Outer mutex ensures that the first blocker completes canceling
1905 * the event work before further blockers are allowed to finish.
1906 */
1907 mutex_lock(&ev->block_mutex);
1908
Tejun Heo77ea8872010-12-08 20:57:37 +01001909 spin_lock_irqsave(&ev->lock, flags);
1910 cancel = !ev->block++;
1911 spin_unlock_irqrestore(&ev->lock, flags);
1912
Tejun Heoc3af54a2011-06-09 20:43:55 +02001913 if (cancel)
1914 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001915
1916 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001917}
1918
1919static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1920{
1921 struct disk_events *ev = disk->ev;
1922 unsigned long intv;
1923 unsigned long flags;
1924
1925 spin_lock_irqsave(&ev->lock, flags);
1926
1927 if (WARN_ON_ONCE(ev->block <= 0))
1928 goto out_unlock;
1929
1930 if (--ev->block)
1931 goto out_unlock;
1932
Tejun Heo77ea8872010-12-08 20:57:37 +01001933 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001934 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301935 queue_delayed_work(system_freezable_power_efficient_wq,
1936 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001937 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301938 queue_delayed_work(system_freezable_power_efficient_wq,
1939 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001940out_unlock:
1941 spin_unlock_irqrestore(&ev->lock, flags);
1942}
1943
1944/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001945 * disk_unblock_events - unblock disk event checking
1946 * @disk: disk to unblock events for
1947 *
1948 * Undo disk_block_events(). When the block count reaches zero, it
1949 * starts events polling if configured.
1950 *
1951 * CONTEXT:
1952 * Don't care. Safe to call from irq context.
1953 */
1954void disk_unblock_events(struct gendisk *disk)
1955{
1956 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001957 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001958}
1959
1960/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001961 * disk_flush_events - schedule immediate event checking and flushing
1962 * @disk: disk to check and flush events for
1963 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001964 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001965 * Schedule immediate event checking on @disk if not blocked. Events in
1966 * @mask are scheduled to be cleared from the driver. Note that this
1967 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001968 *
1969 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001970 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001971 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001972void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001973{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001974 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001975
1976 if (!ev)
1977 return;
1978
Tejun Heo85ef06d2011-07-01 16:17:47 +02001979 spin_lock_irq(&ev->lock);
1980 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001981 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301982 mod_delayed_work(system_freezable_power_efficient_wq,
1983 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001984 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001985}
Tejun Heo77ea8872010-12-08 20:57:37 +01001986
1987/**
1988 * disk_clear_events - synchronously check, clear and return pending events
1989 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001990 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001991 *
1992 * Disk events are synchronously checked and pending events in @mask
1993 * are cleared and returned. This ignores the block count.
1994 *
1995 * CONTEXT:
1996 * Might sleep.
1997 */
1998unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1999{
2000 const struct block_device_operations *bdops = disk->fops;
2001 struct disk_events *ev = disk->ev;
2002 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002003 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01002004
2005 if (!ev) {
2006 /* for drivers still using the old ->media_changed method */
2007 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
2008 bdops->media_changed && bdops->media_changed(disk))
2009 return DISK_EVENT_MEDIA_CHANGE;
2010 return 0;
2011 }
2012
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002013 disk_block_events(disk);
2014
2015 /*
2016 * store the union of mask and ev->clearing on the stack so that the
2017 * race with disk_flush_events does not cause ambiguity (ev->clearing
2018 * can still be modified even if events are blocked).
2019 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002020 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002021 clearing |= ev->clearing;
2022 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002023 spin_unlock_irq(&ev->lock);
2024
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002025 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08002026 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002027 * if ev->clearing is not 0, the disk_flush_events got called in the
2028 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08002029 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002030 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002031
2032 /* then, fetch and clear pending events */
2033 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002034 pending = ev->pending & mask;
2035 ev->pending &= ~mask;
2036 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002037 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01002038
2039 return pending;
2040}
2041
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002042/*
2043 * Separate this part out so that a different pointer for clearing_ptr can be
2044 * passed in for disk_clear_events.
2045 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002046static void disk_events_workfn(struct work_struct *work)
2047{
2048 struct delayed_work *dwork = to_delayed_work(work);
2049 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002050
2051 disk_check_events(ev, &ev->clearing);
2052}
2053
2054static void disk_check_events(struct disk_events *ev,
2055 unsigned int *clearing_ptr)
2056{
Tejun Heo77ea8872010-12-08 20:57:37 +01002057 struct gendisk *disk = ev->disk;
2058 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002059 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01002060 unsigned int events;
2061 unsigned long intv;
2062 int nr_events = 0, i;
2063
2064 /* check events */
2065 events = disk->fops->check_events(disk, clearing);
2066
2067 /* accumulate pending events and schedule next poll if necessary */
2068 spin_lock_irq(&ev->lock);
2069
2070 events &= ~ev->pending;
2071 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002072 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01002073
2074 intv = disk_events_poll_jiffies(disk);
2075 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05302076 queue_delayed_work(system_freezable_power_efficient_wq,
2077 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01002078
2079 spin_unlock_irq(&ev->lock);
2080
Tejun Heo7c88a162011-04-21 19:43:58 +02002081 /*
2082 * Tell userland about new events. Only the events listed in
Martin Wilckc92e2f02019-03-27 14:51:02 +01002083 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
2084 * is set. Otherwise, events are processed internally but never
2085 * get reported to userland.
Tejun Heo7c88a162011-04-21 19:43:58 +02002086 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002087 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Martin Wilckc92e2f02019-03-27 14:51:02 +01002088 if ((events & disk->events & (1 << i)) &&
2089 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
Tejun Heo77ea8872010-12-08 20:57:37 +01002090 envp[nr_events++] = disk_uevents[i];
2091
2092 if (nr_events)
2093 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
2094}
2095
2096/*
2097 * A disk events enabled device has the following sysfs nodes under
2098 * its /sys/block/X/ directory.
2099 *
2100 * events : list of all supported events
2101 * events_async : list of events which can be detected w/o polling
Martin Wilck673387a2019-03-27 14:51:01 +01002102 * (always empty, only for backwards compatibility)
Tejun Heo77ea8872010-12-08 20:57:37 +01002103 * events_poll_msecs : polling interval, 0: disable, -1: system default
2104 */
2105static ssize_t __disk_events_show(unsigned int events, char *buf)
2106{
2107 const char *delim = "";
2108 ssize_t pos = 0;
2109 int i;
2110
2111 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
2112 if (events & (1 << i)) {
2113 pos += sprintf(buf + pos, "%s%s",
2114 delim, disk_events_strs[i]);
2115 delim = " ";
2116 }
2117 if (pos)
2118 pos += sprintf(buf + pos, "\n");
2119 return pos;
2120}
2121
2122static ssize_t disk_events_show(struct device *dev,
2123 struct device_attribute *attr, char *buf)
2124{
2125 struct gendisk *disk = dev_to_disk(dev);
2126
Martin Wilckc92e2f02019-03-27 14:51:02 +01002127 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
2128 return 0;
2129
Tejun Heo77ea8872010-12-08 20:57:37 +01002130 return __disk_events_show(disk->events, buf);
2131}
2132
2133static ssize_t disk_events_async_show(struct device *dev,
2134 struct device_attribute *attr, char *buf)
2135{
Martin Wilck673387a2019-03-27 14:51:01 +01002136 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002137}
2138
2139static ssize_t disk_events_poll_msecs_show(struct device *dev,
2140 struct device_attribute *attr,
2141 char *buf)
2142{
2143 struct gendisk *disk = dev_to_disk(dev);
2144
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002145 if (!disk->ev)
2146 return sprintf(buf, "-1\n");
2147
Tejun Heo77ea8872010-12-08 20:57:37 +01002148 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
2149}
2150
2151static ssize_t disk_events_poll_msecs_store(struct device *dev,
2152 struct device_attribute *attr,
2153 const char *buf, size_t count)
2154{
2155 struct gendisk *disk = dev_to_disk(dev);
2156 long intv;
2157
2158 if (!count || !sscanf(buf, "%ld", &intv))
2159 return -EINVAL;
2160
2161 if (intv < 0 && intv != -1)
2162 return -EINVAL;
2163
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002164 if (!disk->ev)
2165 return -ENODEV;
2166
Tejun Heoc3af54a2011-06-09 20:43:55 +02002167 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002168 disk->ev->poll_msecs = intv;
2169 __disk_unblock_events(disk, true);
2170
2171 return count;
2172}
2173
Joe Perches5657a812018-05-24 13:38:59 -06002174static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
2175static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
2176static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01002177 disk_events_poll_msecs_show,
2178 disk_events_poll_msecs_store);
2179
2180static const struct attribute *disk_events_attrs[] = {
2181 &dev_attr_events.attr,
2182 &dev_attr_events_async.attr,
2183 &dev_attr_events_poll_msecs.attr,
2184 NULL,
2185};
2186
2187/*
2188 * The default polling interval can be specified by the kernel
2189 * parameter block.events_dfl_poll_msecs which defaults to 0
2190 * (disable). This can also be modified runtime by writing to
Akinobu Mita1624b0b2019-07-16 21:59:35 +09002191 * /sys/module/block/parameters/events_dfl_poll_msecs.
Tejun Heo77ea8872010-12-08 20:57:37 +01002192 */
2193static int disk_events_set_dfl_poll_msecs(const char *val,
2194 const struct kernel_param *kp)
2195{
2196 struct disk_events *ev;
2197 int ret;
2198
2199 ret = param_set_ulong(val, kp);
2200 if (ret < 0)
2201 return ret;
2202
2203 mutex_lock(&disk_events_mutex);
2204
2205 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02002206 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01002207
2208 mutex_unlock(&disk_events_mutex);
2209
2210 return 0;
2211}
2212
2213static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2214 .set = disk_events_set_dfl_poll_msecs,
2215 .get = param_get_ulong,
2216};
2217
2218#undef MODULE_PARAM_PREFIX
2219#define MODULE_PARAM_PREFIX "block."
2220
2221module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2222 &disk_events_dfl_poll_msecs, 0644);
2223
2224/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002225 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01002226 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002227static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01002228{
2229 struct disk_events *ev;
2230
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002231 if (!disk->fops->check_events || !disk->events)
Tejun Heo77ea8872010-12-08 20:57:37 +01002232 return;
2233
2234 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2235 if (!ev) {
2236 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2237 return;
2238 }
2239
Tejun Heo77ea8872010-12-08 20:57:37 +01002240 INIT_LIST_HEAD(&ev->node);
2241 ev->disk = disk;
2242 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02002243 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01002244 ev->block = 1;
2245 ev->poll_msecs = -1;
2246 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2247
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002248 disk->ev = ev;
2249}
2250
2251static void disk_add_events(struct gendisk *disk)
2252{
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002253 /* FIXME: error handling */
2254 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2255 pr_warn("%s: failed to create sysfs files for events\n",
2256 disk->disk_name);
2257
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002258 if (!disk->ev)
2259 return;
2260
Tejun Heo77ea8872010-12-08 20:57:37 +01002261 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002262 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002263 mutex_unlock(&disk_events_mutex);
2264
2265 /*
2266 * Block count is initialized to 1 and the following initial
2267 * unblock kicks it into action.
2268 */
2269 __disk_unblock_events(disk, true);
2270}
2271
2272static void disk_del_events(struct gendisk *disk)
2273{
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002274 if (disk->ev) {
2275 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002276
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002277 mutex_lock(&disk_events_mutex);
2278 list_del_init(&disk->ev->node);
2279 mutex_unlock(&disk_events_mutex);
2280 }
Tejun Heo77ea8872010-12-08 20:57:37 +01002281
2282 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2283}
2284
2285static void disk_release_events(struct gendisk *disk)
2286{
2287 /* the block count should be 1 from disk_del_events() */
2288 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2289 kfree(disk->ev);
2290}