blob: 1a51a9ad103570ddab16d954fcdb475b0b3ccf88 [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:
Ming Leib7d6c302020-05-08 16:17:55 +0800347 * RCU read locked. The returned partition pointer is always valid
348 * because its refcount is grabbed.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200349 *
350 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900351 * Found partition on success, part0 is returned if no partition matches
Ming Leib7d6c302020-05-08 16:17:55 +0800352 * or the matched partition is being deleted.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200353 */
354struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
355{
Tejun Heo540eed52008-08-25 19:56:15 +0900356 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200357 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200358 int i;
359
Tejun Heo540eed52008-08-25 19:56:15 +0900360 ptbl = rcu_dereference(disk->part_tbl);
361
Jens Axboea6f23652008-10-24 12:52:42 +0200362 part = rcu_dereference(ptbl->last_lookup);
Ming Leib7d6c302020-05-08 16:17:55 +0800363 if (part && sector_in_part(part, sector) && hd_struct_try_get(part))
Jens Axboea6f23652008-10-24 12:52:42 +0200364 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200365
Jens Axboea6f23652008-10-24 12:52:42 +0200366 for (i = 1; i < ptbl->len; i++) {
367 part = rcu_dereference(ptbl->part[i]);
368
369 if (part && sector_in_part(part, sector)) {
Ming Leib7d6c302020-05-08 16:17:55 +0800370 /*
371 * only live partition can be cached for lookup,
372 * so use-after-free on cached & deleting partition
373 * can be avoided
374 */
375 if (!hd_struct_try_get(part))
376 break;
Jens Axboea6f23652008-10-24 12:52:42 +0200377 rcu_assign_pointer(ptbl->last_lookup, part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200378 return part;
Jens Axboea6f23652008-10-24 12:52:42 +0200379 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200380 }
Ming Leib7d6c302020-05-08 16:17:55 +0800381 hd_struct_get(&disk->part0);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900382 return &disk->part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200383}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200384
Shin'ichiro Kawasakib53df2e2020-02-21 10:37:08 +0900385/**
386 * disk_has_partitions
387 * @disk: gendisk of interest
388 *
389 * Walk through the partition table and check if valid partition exists.
390 *
391 * CONTEXT:
392 * Don't care.
393 *
394 * RETURNS:
395 * True if the gendisk has at least one valid non-zero size partition.
396 * Otherwise false.
397 */
398bool disk_has_partitions(struct gendisk *disk)
399{
400 struct disk_part_tbl *ptbl;
401 int i;
402 bool ret = false;
403
404 rcu_read_lock();
405 ptbl = rcu_dereference(disk->part_tbl);
406
407 /* Iterate partitions skipping the whole device at index 0 */
408 for (i = 1; i < ptbl->len; i++) {
409 if (rcu_dereference(ptbl->part[i])) {
410 ret = true;
411 break;
412 }
413 }
414
415 rcu_read_unlock();
416
417 return ret;
418}
419EXPORT_SYMBOL_GPL(disk_has_partitions);
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/*
422 * Can be deleted altogether. Later.
423 *
424 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600425#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static struct blk_major_name {
427 struct blk_major_name *next;
428 int major;
429 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800430} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100433static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Joe Korty68eef3b2006-03-31 02:30:32 -0800435 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Joe Korty68eef3b2006-03-31 02:30:32 -0800438#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200439void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800440{
Joe Korty68eef3b2006-03-31 02:30:32 -0800441 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800442
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600443 mutex_lock(&block_class_lock);
444 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
445 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200446 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600447 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
Joe Korty68eef3b2006-03-31 02:30:32 -0800449#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100451/**
452 * register_blkdev - register a new block device
453 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800454 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
455 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100456 * @name: the name of the new block device as a zero terminated string
457 *
458 * The @name must be unique within the system.
459 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300460 * The return value depends on the @major input parameter:
461 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800462 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
463 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300464 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100465 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800466 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
467 *
468 * See Documentation/admin-guide/devices.txt for the list of allocated
469 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100470 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471int register_blkdev(unsigned int major, const char *name)
472{
473 struct blk_major_name **n, *p;
474 int index, ret = 0;
475
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200476 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* temporary */
479 if (major == 0) {
480 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
481 if (major_names[index] == NULL)
482 break;
483 }
484
485 if (index == 0) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500486 printk("%s: failed to get major for %s\n",
487 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 ret = -EBUSY;
489 goto out;
490 }
491 major = index;
492 ret = major;
493 }
494
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600495 if (major >= BLKDEV_MAJOR_MAX) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500496 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
497 __func__, major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600498
499 ret = -EINVAL;
500 goto out;
501 }
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
504 if (p == NULL) {
505 ret = -ENOMEM;
506 goto out;
507 }
508
509 p->major = major;
510 strlcpy(p->name, name, sizeof(p->name));
511 p->next = NULL;
512 index = major_to_index(major);
513
514 for (n = &major_names[index]; *n; n = &(*n)->next) {
515 if ((*n)->major == major)
516 break;
517 }
518 if (!*n)
519 *n = p;
520 else
521 ret = -EBUSY;
522
523 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800524 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 major, name);
526 kfree(p);
527 }
528out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200529 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return ret;
531}
532
533EXPORT_SYMBOL(register_blkdev);
534
Akinobu Mitaf4480242007-07-17 04:03:47 -0700535void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 struct blk_major_name **n;
538 struct blk_major_name *p = NULL;
539 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200541 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 for (n = &major_names[index]; *n; n = &(*n)->next)
543 if ((*n)->major == major)
544 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700545 if (!*n || strcmp((*n)->name, name)) {
546 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700547 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 p = *n;
549 *n = p->next;
550 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200551 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555EXPORT_SYMBOL(unregister_blkdev);
556
557static struct kobj_map *bdev_map;
558
Tejun Heobcce3de2008-08-25 19:47:22 +0900559/**
Tejun Heo870d6652008-08-25 19:47:25 +0900560 * blk_mangle_minor - scatter minor numbers apart
561 * @minor: minor number to mangle
562 *
563 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
564 * is enabled. Mangling twice gives the original value.
565 *
566 * RETURNS:
567 * Mangled value.
568 *
569 * CONTEXT:
570 * Don't care.
571 */
572static int blk_mangle_minor(int minor)
573{
574#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
575 int i;
576
577 for (i = 0; i < MINORBITS / 2; i++) {
578 int low = minor & (1 << i);
579 int high = minor & (1 << (MINORBITS - 1 - i));
580 int distance = MINORBITS - 1 - 2 * i;
581
582 minor ^= low | high; /* clear both bits */
583 low <<= distance; /* swap the positions */
584 high >>= distance;
585 minor |= low | high; /* and set */
586 }
587#endif
588 return minor;
589}
590
591/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900592 * blk_alloc_devt - allocate a dev_t for a partition
593 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900594 * @devt: out parameter for resulting dev_t
595 *
596 * Allocate a dev_t for block device.
597 *
598 * RETURNS:
599 * 0 on success, allocated dev_t is returned in *@devt. -errno on
600 * failure.
601 *
602 * CONTEXT:
603 * Might sleep.
604 */
605int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
606{
607 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800608 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900609
610 /* in consecutive minor range? */
611 if (part->partno < disk->minors) {
612 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
613 return 0;
614 }
615
616 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600617 idr_preload(GFP_KERNEL);
618
Dan Williams4d66e5e2015-06-10 23:47:14 -0400619 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600620 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400621 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600622
623 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800624 if (idx < 0)
625 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900626
Tejun Heo870d6652008-08-25 19:47:25 +0900627 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900628 return 0;
629}
630
631/**
632 * blk_free_devt - free a dev_t
633 * @devt: dev_t to free
634 *
635 * Free @devt which was allocated using blk_alloc_devt().
636 *
637 * CONTEXT:
638 * Might sleep.
639 */
640void blk_free_devt(dev_t devt)
641{
Tejun Heobcce3de2008-08-25 19:47:22 +0900642 if (devt == MKDEV(0, 0))
643 return;
644
645 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400646 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900647 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400648 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900649 }
650}
651
Bart Van Assche33c826e2019-05-30 17:00:47 -0700652/*
653 * We invalidate devt by assigning NULL pointer for devt in idr.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800654 */
655void blk_invalidate_devt(dev_t devt)
656{
657 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
658 spin_lock_bh(&ext_devt_lock);
659 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
660 spin_unlock_bh(&ext_devt_lock);
661 }
662}
663
Tejun Heo1f014292008-08-25 19:47:23 +0900664static char *bdevt_str(dev_t devt, char *buf)
665{
666 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
667 char tbuf[BDEVT_SIZE];
668 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
669 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
670 } else
671 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
672
673 return buf;
674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/*
677 * Register device numbers dev..(dev+range-1)
678 * range must be nonzero
679 * The hash chain is sorted on range, so that subranges can override.
680 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200681void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct kobject *(*probe)(dev_t, int *, void *),
683 int (*lock)(dev_t, void *), void *data)
684{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200685 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688EXPORT_SYMBOL(blk_register_region);
689
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200690void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200692 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695EXPORT_SYMBOL(blk_unregister_region);
696
Tejun Heocf771cb2008-09-03 09:01:09 +0200697static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200700
Tejun Heoed9e1982008-08-25 19:56:05 +0900701 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200704static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct gendisk *p = data;
707
Jan Kara3079c222018-02-26 13:01:38 +0100708 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return -1;
710 return 0;
711}
712
Hannes Reineckefef912b2018-09-28 08:17:19 +0200713static void register_disk(struct device *parent, struct gendisk *disk,
714 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100715{
716 struct device *ddev = disk_to_dev(disk);
717 struct block_device *bdev;
718 struct disk_part_iter piter;
719 struct hd_struct *part;
720 int err;
721
Dan Williamse63a46b2016-06-15 18:17:27 -0700722 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100723
Kees Cookffc8b302013-07-03 15:01:14 -0700724 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100725
726 /* delay uevents, until we scanned partition table */
727 dev_set_uevent_suppress(ddev, 1);
728
Hannes Reineckefef912b2018-09-28 08:17:19 +0200729 if (groups) {
730 WARN_ON(ddev->groups);
731 ddev->groups = groups;
732 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100733 if (device_add(ddev))
734 return;
735 if (!sysfs_deprecated) {
736 err = sysfs_create_link(block_depr, &ddev->kobj,
737 kobject_name(&ddev->kobj));
738 if (err) {
739 device_del(ddev);
740 return;
741 }
742 }
Ming Lei25e823c2013-02-22 16:34:13 -0800743
744 /*
745 * avoid probable deadlock caused by allocating memory with
746 * GFP_KERNEL in runtime_resume callback of its all ancestor
747 * devices
748 */
749 pm_runtime_set_memalloc_noio(ddev, true);
750
Tejun Heod2bf1b62010-12-08 20:57:36 +0100751 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
752 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
753
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300754 if (disk->flags & GENHD_FL_HIDDEN) {
755 dev_set_uevent_suppress(ddev, 0);
756 return;
757 }
758
Tejun Heod2bf1b62010-12-08 20:57:36 +0100759 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200760 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100761 goto exit;
762
763 /* No such device (e.g., media were just removed) */
764 if (!get_capacity(disk))
765 goto exit;
766
767 bdev = bdget_disk(disk, 0);
768 if (!bdev)
769 goto exit;
770
771 bdev->bd_invalidated = 1;
772 err = blkdev_get(bdev, FMODE_READ, NULL);
773 if (err < 0)
774 goto exit;
775 blkdev_put(bdev, FMODE_READ);
776
777exit:
778 /* announce disk after possible partitions are created */
779 dev_set_uevent_suppress(ddev, 0);
780 kobject_uevent(&ddev->kobj, KOBJ_ADD);
781
782 /* announce possible partitions */
783 disk_part_iter_init(&piter, disk, 0);
784 while ((part = disk_part_iter_next(&piter)))
785 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
786 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300787
zhengbin4d7c1d32019-02-20 21:27:05 +0800788 if (disk->queue->backing_dev_info->dev) {
789 err = sysfs_create_link(&ddev->kobj,
790 &disk->queue->backing_dev_info->dev->kobj,
791 "bdi");
792 WARN_ON(err);
793 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500797 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700798 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200800 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500801 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 *
803 * This function registers the partitioning information in @disk
804 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900805 *
806 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500808static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200809 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500810 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900812 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400813 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700814
Damien Le Moal737eb782019-09-05 18:51:33 +0900815 /*
816 * The disk queue should now be all set with enough information about
817 * the device for the elevator code to pick an adequate default
818 * elevator if one is needed, that is, for devices requesting queue
819 * registration.
820 */
821 if (register_queue)
822 elevator_init_mq(disk->queue);
823
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900824 /* minors == 0 indicates to use ext devt from part0 and should
825 * be accompanied with EXT_DEVT flag. Make sure all
826 * parameters make sense.
827 */
828 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300829 WARN_ON(!disk->minors &&
830 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900833
834 retval = blk_alloc_devt(&disk->part0, &devt);
835 if (retval) {
836 WARN_ON(1);
837 return;
838 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900839 disk->major = MAJOR(devt);
840 disk->first_minor = MINOR(devt);
841
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100842 disk_alloc_events(disk);
843
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300844 if (disk->flags & GENHD_FL_HIDDEN) {
845 /*
846 * Don't let hidden disks show up in /proc/partitions,
847 * and don't bother scanning for partitions either.
848 */
849 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
850 disk->flags |= GENHD_FL_NO_PART_SCAN;
851 } else {
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200852 struct backing_dev_info *bdi = disk->queue->backing_dev_info;
853 struct device *dev = disk_to_dev(disk);
weiping zhang3a921682017-10-31 18:38:59 +0800854 int ret;
855
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300856 /* Register BDI before referencing it from bdev */
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200857 dev->devt = devt;
858 ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt));
weiping zhang3a921682017-10-31 18:38:59 +0800859 WARN_ON(ret);
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200860 bdi_set_owner(bdi, dev);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300861 blk_register_region(disk_devt(disk), disk->minors, NULL,
862 exact_match, exact_lock, disk);
863 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200864 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500865 if (register_queue)
866 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700867
Tejun Heo523e1d32011-10-19 14:31:07 +0200868 /*
869 * Take an extra ref on queue which will be put on disk_release()
870 * so that it sticks around as long as @disk is there.
871 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100872 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200873
Tejun Heo77ea8872010-12-08 20:57:37 +0100874 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400875 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500877
Hannes Reineckefef912b2018-09-28 08:17:19 +0200878void device_add_disk(struct device *parent, struct gendisk *disk,
879 const struct attribute_group **groups)
880
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500881{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200882 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500883}
Dan Williamse63a46b2016-06-15 18:17:27 -0700884EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500886void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
887{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200888 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500889}
890EXPORT_SYMBOL(device_add_disk_no_queue_reg);
891
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200892static void invalidate_partition(struct gendisk *disk, int partno)
893{
894 struct block_device *bdev;
895
896 bdev = bdget_disk(disk, partno);
897 if (!bdev)
898 return;
899
900 fsync_bdev(bdev);
901 __invalidate_device(bdev, true);
Christoph Hellwig9bc5c392020-04-14 09:29:02 +0200902
903 /*
904 * Unhash the bdev inode for this device so that it gets evicted as soon
905 * as last inode reference is dropped.
906 */
907 remove_inode_hash(bdev->bd_inode);
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200908 bdput(bdev);
909}
910
Tejun Heod2bf1b62010-12-08 20:57:36 +0100911void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100913 struct disk_part_iter piter;
914 struct hd_struct *part;
915
Martin K. Petersen25520d52015-10-21 13:19:49 -0400916 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100917 disk_del_events(disk);
918
Jan Kara56c09082018-02-26 13:01:41 +0100919 /*
920 * Block lookups of the disk until all bdevs are unhashed and the
921 * disk is marked as dead (GENHD_FL_UP cleared).
922 */
923 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100924 /* invalidate stuff */
925 disk_part_iter_init(&piter, disk,
926 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
927 while ((part = disk_part_iter_next(&piter))) {
928 invalidate_partition(disk, part->partno);
Christoph Hellwigcddae802020-04-14 09:28:54 +0200929 delete_partition(disk, part);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100930 }
931 disk_part_iter_exit(&piter);
932
933 invalidate_partition(disk, 0);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100934 set_capacity(disk, 0);
935 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100936 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100937
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300938 if (!(disk->flags & GENHD_FL_HIDDEN))
939 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100940 if (disk->queue) {
941 /*
942 * Unregister bdi before releasing device numbers (as they can
943 * get reused and we'd get clashes in sysfs).
944 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500945 if (!(disk->flags & GENHD_FL_HIDDEN))
946 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100947 blk_unregister_queue(disk);
948 } else {
949 WARN_ON(1);
950 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100951
Hannes Reinecke17eac092017-11-09 17:57:06 +0100952 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300953 blk_unregister_region(disk_devt(disk), disk->minors);
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800954 /*
955 * Remove gendisk pointer from idr so that it cannot be looked up
956 * while RCU period before freeing gendisk is running to prevent
957 * use-after-free issues. Note that the device number stays
958 * "in-use" until we really free the gendisk.
959 */
960 blk_invalidate_devt(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100961
962 kobject_put(disk->part0.holder_dir);
963 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900966 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100967 if (!sysfs_deprecated)
968 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800969 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100970 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100972EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Vishal Verma99e66082016-01-09 08:36:51 -0800974/* sysfs access to bad-blocks list. */
975static ssize_t disk_badblocks_show(struct device *dev,
976 struct device_attribute *attr,
977 char *page)
978{
979 struct gendisk *disk = dev_to_disk(dev);
980
981 if (!disk->bb)
982 return sprintf(page, "\n");
983
984 return badblocks_show(disk->bb, page, 0);
985}
986
987static ssize_t disk_badblocks_store(struct device *dev,
988 struct device_attribute *attr,
989 const char *page, size_t len)
990{
991 struct gendisk *disk = dev_to_disk(dev);
992
993 if (!disk->bb)
994 return -ENXIO;
995
996 return badblocks_store(disk->bb, page, len, 0);
997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/**
1000 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +02001001 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001002 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 *
1004 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +02001005 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 */
Tejun Heocf771cb2008-09-03 09:01:09 +02001007struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Tejun Heobcce3de2008-08-25 19:47:22 +09001009 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001010
Tejun Heobcce3de2008-08-25 19:47:22 +09001011 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
1012 struct kobject *kobj;
1013
1014 kobj = kobj_lookup(bdev_map, devt, partno);
1015 if (kobj)
1016 disk = dev_to_disk(kobj_to_dev(kobj));
1017 } else {
1018 struct hd_struct *part;
1019
Dan Williams4d66e5e2015-06-10 23:47:14 -04001020 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +09001021 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +01001022 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +09001023 *partno = part->partno;
1024 disk = part_to_disk(part);
1025 }
Dan Williams4d66e5e2015-06-10 23:47:14 -04001026 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +09001027 }
1028
Jan Kara56c09082018-02-26 13:01:41 +01001029 if (!disk)
1030 return NULL;
1031
1032 /*
1033 * Synchronize with del_gendisk() to not return disk that is being
1034 * destroyed.
1035 */
1036 down_read(&disk->lookup_sem);
1037 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
1038 !(disk->flags & GENHD_FL_UP))) {
1039 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +01001040 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001041 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +01001042 } else {
1043 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001044 }
Tejun Heobcce3de2008-08-25 19:47:22 +09001045 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Tejun Heof331c022008-09-03 09:01:48 +02001048/**
1049 * bdget_disk - do bdget() by gendisk and partition number
1050 * @disk: gendisk of interest
1051 * @partno: partition number
1052 *
1053 * Find partition @partno from @disk, do bdget() on it.
1054 *
1055 * CONTEXT:
1056 * Don't care.
1057 *
1058 * RETURNS:
1059 * Resulting block_device on success, NULL on failure.
1060 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001061struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +02001062{
Tejun Heo548b10e2008-08-29 09:01:47 +02001063 struct hd_struct *part;
1064 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +02001065
Tejun Heo548b10e2008-08-29 09:01:47 +02001066 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001067 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +02001068 bdev = bdget(part_devt(part));
1069 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +02001070
Tejun Heo548b10e2008-08-29 09:01:47 +02001071 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +02001072}
1073EXPORT_SYMBOL(bdget_disk);
1074
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001075/*
1076 * print a full list of all partitions - intended for places where the root
1077 * filesystem can't be mounted and thus to give the victim some idea of what
1078 * went wrong
1079 */
1080void __init printk_all_partitions(void)
1081{
Tejun Heodef4e382008-09-03 08:57:12 +02001082 struct class_dev_iter iter;
1083 struct device *dev;
1084
1085 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1086 while ((dev = class_dev_iter_next(&iter))) {
1087 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001088 struct disk_part_iter piter;
1089 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +09001090 char name_buf[BDEVNAME_SIZE];
1091 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +02001092
1093 /*
1094 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001095 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +02001096 */
1097 if (get_capacity(disk) == 0 ||
1098 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
1099 continue;
1100
1101 /*
1102 * Note, unlike /proc/partitions, I am showing the
1103 * numbers in hex - the same format as the root=
1104 * option takes.
1105 */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001106 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
1107 while ((part = disk_part_iter_next(&piter))) {
1108 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +02001109
Will Drewryb5af9212010-08-31 15:47:07 -05001110 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +09001111 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001112 (unsigned long long)part_nr_sects_read(part) >> 1
1113 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -08001114 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +09001115 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -07001116 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +09001117 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -07001118 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001119 else
1120 printk(" (driver?)\n");
1121 } else
1122 printk("\n");
1123 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001124 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +02001125 }
1126 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001127}
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129#ifdef CONFIG_PROC_FS
1130/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +02001131static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001132{
Tejun Heodef4e382008-09-03 08:57:12 +02001133 loff_t skip = *pos;
1134 struct class_dev_iter *iter;
1135 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001136
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001137 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +02001138 if (!iter)
1139 return ERR_PTR(-ENOMEM);
1140
1141 seqf->private = iter;
1142 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1143 do {
1144 dev = class_dev_iter_next(iter);
1145 if (!dev)
1146 return NULL;
1147 } while (skip--);
1148
1149 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001150}
1151
Tejun Heodef4e382008-09-03 08:57:12 +02001152static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001154 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -04001155
Tejun Heodef4e382008-09-03 08:57:12 +02001156 (*pos)++;
1157 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001158 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001159 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return NULL;
1162}
1163
Tejun Heodef4e382008-09-03 08:57:12 +02001164static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001165{
Tejun Heodef4e382008-09-03 08:57:12 +02001166 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001167
Tejun Heodef4e382008-09-03 08:57:12 +02001168 /* stop is called even after start failed :-( */
1169 if (iter) {
1170 class_dev_iter_exit(iter);
1171 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001172 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Tejun Heodef4e382008-09-03 08:57:12 +02001176static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Jianpeng Ma06768062012-08-03 10:42:00 +02001178 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001179
1180 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001181 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001182 seq_puts(seqf, "major minor #blocks name\n\n");
1183 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
Tejun Heocf771cb2008-09-03 09:01:09 +02001186static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
1188 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001189 struct disk_part_iter piter;
1190 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 char buf[BDEVNAME_SIZE];
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001194 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001195 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 return 0;
1197 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1198 return 0;
1199
1200 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001201 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001202 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001203 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001204 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001205 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001206 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001207 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 return 0;
1210}
1211
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001212static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001213 .start = show_partition_start,
1214 .next = disk_seqf_next,
1215 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001216 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217};
1218#endif
1219
1220
Tejun Heocf771cb2008-09-03 09:01:09 +02001221static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001223 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001225 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return NULL;
1227}
1228
1229static int __init genhd_device_init(void)
1230{
Dan Williamse105b8b2008-04-21 10:51:07 -07001231 int error;
1232
1233 block_class.dev_kobj = sysfs_dev_block_kobj;
1234 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001235 if (unlikely(error))
1236 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001237 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001239
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001240 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1241
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001242 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001243 if (!sysfs_deprecated)
1244 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
1248subsys_initcall(genhd_device_init);
1249
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001250static ssize_t disk_range_show(struct device *dev,
1251 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001253 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001255 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Tejun Heo1f014292008-08-25 19:47:23 +09001258static ssize_t disk_ext_range_show(struct device *dev,
1259 struct device_attribute *attr, char *buf)
1260{
1261 struct gendisk *disk = dev_to_disk(dev);
1262
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001263 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001264}
1265
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001266static ssize_t disk_removable_show(struct device *dev,
1267 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001268{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001269 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001270
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001271 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001275static ssize_t disk_hidden_show(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
1278 struct gendisk *disk = dev_to_disk(dev);
1279
1280 return sprintf(buf, "%d\n",
1281 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1282}
1283
Kay Sievers1c9ce522008-06-13 09:41:00 +02001284static ssize_t disk_ro_show(struct device *dev,
1285 struct device_attribute *attr, char *buf)
1286{
1287 struct gendisk *disk = dev_to_disk(dev);
1288
Tejun Heob7db9952008-08-25 19:56:10 +09001289 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001290}
1291
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001292ssize_t part_size_show(struct device *dev,
1293 struct device_attribute *attr, char *buf)
1294{
1295 struct hd_struct *p = dev_to_part(dev);
1296
1297 return sprintf(buf, "%llu\n",
1298 (unsigned long long)part_nr_sects_read(p));
1299}
1300
1301ssize_t part_stat_show(struct device *dev,
1302 struct device_attribute *attr, char *buf)
1303{
1304 struct hd_struct *p = dev_to_part(dev);
1305 struct request_queue *q = part_to_disk(p)->queue;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001306 struct disk_stats stat;
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001307 unsigned int inflight;
1308
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001309 part_stat_read_all(p, &stat);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001310 inflight = part_in_flight(q, p);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001311
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001312 return sprintf(buf,
1313 "%8lu %8lu %8llu %8u "
1314 "%8lu %8lu %8llu %8u "
1315 "%8u %8u %8u "
1316 "%8lu %8lu %8llu %8u "
1317 "%8lu %8u"
1318 "\n",
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001319 stat.ios[STAT_READ],
1320 stat.merges[STAT_READ],
1321 (unsigned long long)stat.sectors[STAT_READ],
1322 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1323 stat.ios[STAT_WRITE],
1324 stat.merges[STAT_WRITE],
1325 (unsigned long long)stat.sectors[STAT_WRITE],
1326 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001327 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001328 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001329 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1330 stat.nsecs[STAT_WRITE] +
1331 stat.nsecs[STAT_DISCARD] +
1332 stat.nsecs[STAT_FLUSH],
1333 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001334 stat.ios[STAT_DISCARD],
1335 stat.merges[STAT_DISCARD],
1336 (unsigned long long)stat.sectors[STAT_DISCARD],
1337 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1338 stat.ios[STAT_FLUSH],
1339 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001340}
1341
1342ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1343 char *buf)
1344{
1345 struct hd_struct *p = dev_to_part(dev);
1346 struct request_queue *q = part_to_disk(p)->queue;
1347 unsigned int inflight[2];
1348
1349 part_in_flight_rw(q, p, inflight);
1350 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1351}
1352
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001353static ssize_t disk_capability_show(struct device *dev,
1354 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001355{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001356 struct gendisk *disk = dev_to_disk(dev);
1357
1358 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001359}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001360
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001361static ssize_t disk_alignment_offset_show(struct device *dev,
1362 struct device_attribute *attr,
1363 char *buf)
1364{
1365 struct gendisk *disk = dev_to_disk(dev);
1366
1367 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1368}
1369
Martin K. Petersen86b37282009-11-10 11:50:21 +01001370static ssize_t disk_discard_alignment_show(struct device *dev,
1371 struct device_attribute *attr,
1372 char *buf)
1373{
1374 struct gendisk *disk = dev_to_disk(dev);
1375
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001376 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001377}
1378
Joe Perches5657a812018-05-24 13:38:59 -06001379static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1380static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1381static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1382static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1383static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1384static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1385static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1386static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1387static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1388static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1389static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1390static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001391
Akinobu Mitac17bb492006-12-08 02:39:46 -08001392#ifdef CONFIG_FAIL_MAKE_REQUEST
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001393ssize_t part_fail_show(struct device *dev,
1394 struct device_attribute *attr, char *buf)
1395{
1396 struct hd_struct *p = dev_to_part(dev);
1397
1398 return sprintf(buf, "%d\n", p->make_it_fail);
1399}
1400
1401ssize_t part_fail_store(struct device *dev,
1402 struct device_attribute *attr,
1403 const char *buf, size_t count)
1404{
1405 struct hd_struct *p = dev_to_part(dev);
1406 int i;
1407
1408 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1409 p->make_it_fail = (i == 0) ? 0 : 1;
1410
1411 return count;
1412}
1413
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001414static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001415 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001416#endif /* CONFIG_FAIL_MAKE_REQUEST */
1417
Jens Axboe581d4e22008-09-14 05:56:33 -07001418#ifdef CONFIG_FAIL_IO_TIMEOUT
1419static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001420 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001421#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001422
1423static struct attribute *disk_attrs[] = {
1424 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001425 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001426 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001427 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001428 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001429 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001430 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001431 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001432 &dev_attr_capability.attr,
1433 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001434 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001435 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001436#ifdef CONFIG_FAIL_MAKE_REQUEST
1437 &dev_attr_fail.attr,
1438#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001439#ifdef CONFIG_FAIL_IO_TIMEOUT
1440 &dev_attr_fail_timeout.attr,
1441#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001442 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443};
1444
Dan Williams9438b3e02017-04-27 14:46:26 -07001445static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1446{
1447 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1448 struct gendisk *disk = dev_to_disk(dev);
1449
1450 if (a == &dev_attr_badblocks.attr && !disk->bb)
1451 return 0;
1452 return a->mode;
1453}
1454
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001455static struct attribute_group disk_attr_group = {
1456 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001457 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001458};
1459
David Brownella4dbd672009-06-24 10:06:31 -07001460static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001461 &disk_attr_group,
1462 NULL
1463};
1464
Tejun Heo540eed52008-08-25 19:56:15 +09001465/**
1466 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1467 * @disk: disk to replace part_tbl for
1468 * @new_ptbl: new part_tbl to install
1469 *
1470 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1471 * original ptbl is freed using RCU callback.
1472 *
1473 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001474 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001475 */
1476static void disk_replace_part_tbl(struct gendisk *disk,
1477 struct disk_part_tbl *new_ptbl)
1478{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001479 struct disk_part_tbl *old_ptbl =
1480 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001481
1482 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001483
1484 if (old_ptbl) {
1485 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001486 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001487 }
Tejun Heo540eed52008-08-25 19:56:15 +09001488}
1489
1490/**
1491 * disk_expand_part_tbl - expand disk->part_tbl
1492 * @disk: disk to expand part_tbl for
1493 * @partno: expand such that this partno can fit in
1494 *
1495 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1496 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1497 *
1498 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001499 * Matching bd_mutex locked or the caller is the only user of @disk.
1500 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001501 *
1502 * RETURNS:
1503 * 0 on success, -errno on failure.
1504 */
1505int disk_expand_part_tbl(struct gendisk *disk, int partno)
1506{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001507 struct disk_part_tbl *old_ptbl =
1508 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001509 struct disk_part_tbl *new_ptbl;
1510 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001511 int i, target;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001512
1513 /*
1514 * check for int overflow, since we can get here from blkpg_ioctl()
1515 * with a user passed 'partno'.
1516 */
1517 target = partno + 1;
1518 if (target < 0)
1519 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001520
1521 /* disk_max_parts() is zero during initialization, ignore if so */
1522 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1523 return -EINVAL;
1524
1525 if (target <= len)
1526 return 0;
1527
Gustavo A. R. Silva78b90a22019-05-31 13:47:54 -05001528 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1529 disk->node_id);
Tejun Heo540eed52008-08-25 19:56:15 +09001530 if (!new_ptbl)
1531 return -ENOMEM;
1532
Tejun Heo540eed52008-08-25 19:56:15 +09001533 new_ptbl->len = target;
1534
1535 for (i = 0; i < len; i++)
1536 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1537
1538 disk_replace_part_tbl(disk, new_ptbl);
1539 return 0;
1540}
1541
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001542static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001544 struct gendisk *disk = dev_to_disk(dev);
1545
Keith Busch2da78092014-08-26 09:05:36 -06001546 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001547 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001549 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001550 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001551 if (disk->queue)
1552 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 kfree(disk);
1554}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001555struct class block_class = {
1556 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557};
1558
Kay Sievers3c2670e2013-04-06 09:56:00 -07001559static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001560 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001561{
1562 struct gendisk *disk = dev_to_disk(dev);
1563
Christoph Hellwig348e1142020-03-27 09:07:17 +01001564 if (disk->fops->devnode)
1565 return disk->fops->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001566 return NULL;
1567}
1568
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001569static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001570 .name = "disk",
1571 .groups = disk_attr_groups,
1572 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001573 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574};
1575
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001576#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001577/*
1578 * aggregate disk stat collector. Uses the same stats that the sysfs
1579 * entries do, above, but makes them available through one seq_file.
1580 *
1581 * The output looks suspiciously like /proc/partitions with a bunch of
1582 * extra fields.
1583 */
1584static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001587 struct disk_part_iter piter;
1588 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001590 unsigned int inflight;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001591 struct disk_stats stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001594 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001595 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 " rio rmerge rsect ruse wio wmerge "
1597 "wsect wuse running use aveq"
1598 "\n\n");
1599 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001600
Tejun Heo71982a42009-04-17 08:34:48 +02001601 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001602 while ((hd = disk_part_iter_next(&piter))) {
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001603 part_stat_read_all(hd, &stat);
Mikulas Patockae016b782018-12-06 11:41:21 -05001604 inflight = part_in_flight(gp->queue, hd);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001605
Michael Callahanbdca3c82018-07-18 04:47:40 -07001606 seq_printf(seqf, "%4d %7d %s "
1607 "%lu %lu %lu %u "
1608 "%lu %lu %lu %u "
1609 "%u %u %u "
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001610 "%lu %lu %lu %u "
1611 "%lu %u"
1612 "\n",
Tejun Heof331c022008-09-03 09:01:48 +02001613 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1614 disk_name(gp, hd->partno, buf),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001615 stat.ios[STAT_READ],
1616 stat.merges[STAT_READ],
1617 stat.sectors[STAT_READ],
1618 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1619 NSEC_PER_MSEC),
1620 stat.ios[STAT_WRITE],
1621 stat.merges[STAT_WRITE],
1622 stat.sectors[STAT_WRITE],
1623 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1624 NSEC_PER_MSEC),
Mikulas Patockae016b782018-12-06 11:41:21 -05001625 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001626 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001627 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1628 stat.nsecs[STAT_WRITE] +
1629 stat.nsecs[STAT_DISCARD] +
1630 stat.nsecs[STAT_FLUSH],
1631 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001632 stat.ios[STAT_DISCARD],
1633 stat.merges[STAT_DISCARD],
1634 stat.sectors[STAT_DISCARD],
1635 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1636 NSEC_PER_MSEC),
1637 stat.ios[STAT_FLUSH],
1638 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1639 NSEC_PER_MSEC)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001640 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001642 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return 0;
1645}
1646
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001647static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001648 .start = disk_seqf_start,
1649 .next = disk_seqf_next,
1650 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 .show = diskstats_show
1652};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001653
1654static int __init proc_genhd_init(void)
1655{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001656 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1657 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001658 return 0;
1659}
1660module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001661#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Tejun Heocf771cb2008-09-03 09:01:09 +02001663dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001664{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001665 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001666 struct class_dev_iter iter;
1667 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001668
Tejun Heodef4e382008-09-03 08:57:12 +02001669 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1670 while ((dev = class_dev_iter_next(&iter))) {
1671 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001672 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001673
Kay Sievers3ada8b72009-01-06 10:44:43 -08001674 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001675 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001676
Neil Brown41b8c852009-02-18 10:33:59 +01001677 if (partno < disk->minors) {
1678 /* We need to return the right devno, even
1679 * if the partition doesn't exist yet.
1680 */
1681 devt = MKDEV(MAJOR(dev->devt),
1682 MINOR(dev->devt) + partno);
1683 break;
1684 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001685 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001686 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001687 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001688 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001689 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001690 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001691 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001692 }
Tejun Heodef4e382008-09-03 08:57:12 +02001693 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001694 return devt;
1695}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001696
Byungchul Parke319e1f2017-10-25 17:56:05 +09001697struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001698{
1699 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001700 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001701
Christoph Hellwigde65b012017-08-23 19:10:29 +02001702 if (minors > DISK_MAX_PARTS) {
1703 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001704 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001705 DISK_MAX_PARTS);
1706 minors = DISK_MAX_PARTS;
1707 }
Christoph Lameter19460892005-06-23 00:08:19 -07001708
Joe Perchesc1b511e2013-08-29 15:21:42 -07001709 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (disk) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001711 if (!init_part_stats(&disk->part0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 kfree(disk);
1713 return NULL;
1714 }
Jan Kara56c09082018-02-26 13:01:41 +01001715 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001716 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001717 if (disk_expand_part_tbl(disk, 0)) {
1718 free_part_stats(&disk->part0);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001719 kfree(disk);
1720 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001722 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1723 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001724
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001725 /*
1726 * set_capacity() and get_capacity() currently don't use
1727 * seqcounter to read/update the part0->nr_sects. Still init
1728 * the counter as we can read the sectors in IO submission
1729 * patch using seqence counters.
1730 *
1731 * TODO: Ideally set_capacity() and get_capacity() should be
1732 * converted to make use of bd_mutex and sequence counters.
1733 */
Ming Lei07c4e1e2020-05-08 16:17:56 +08001734 hd_sects_seq_init(&disk->part0);
Ming Lei6c710132015-07-16 11:16:45 +08001735 if (hd_ref_init(&disk->part0)) {
1736 hd_free_part(&disk->part0);
1737 kfree(disk);
1738 return NULL;
1739 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001743 disk_to_dev(disk)->class = &block_class;
1744 disk_to_dev(disk)->type = &disk_type;
1745 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747 return disk;
1748}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001749EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Jan Kara3079c222018-02-26 13:01:38 +01001751struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
1753 struct module *owner;
1754 struct kobject *kobj;
1755
1756 if (!disk->fops)
1757 return NULL;
1758 owner = disk->fops->owner;
1759 if (owner && !try_module_get(owner))
1760 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001761 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (kobj == NULL) {
1763 module_put(owner);
1764 return NULL;
1765 }
1766 return kobj;
1767
1768}
Jan Kara3079c222018-02-26 13:01:38 +01001769EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771void put_disk(struct gendisk *disk)
1772{
1773 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001774 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776EXPORT_SYMBOL(put_disk);
1777
Jan Kara9df6c292018-02-26 13:01:39 +01001778/*
1779 * This is a counterpart of get_disk_and_module() and thus also of
1780 * get_gendisk().
1781 */
1782void put_disk_and_module(struct gendisk *disk)
1783{
1784 if (disk) {
1785 struct module *owner = disk->fops->owner;
1786
1787 put_disk(disk);
1788 module_put(owner);
1789 }
1790}
1791EXPORT_SYMBOL(put_disk_and_module);
1792
Hannes Reineckee3264a42009-07-28 09:13:13 +02001793static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1794{
1795 char event[] = "DISK_RO=1";
1796 char *envp[] = { event, NULL };
1797
1798 if (!ro)
1799 event[8] = '0';
1800 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1801}
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803void set_device_ro(struct block_device *bdev, int flag)
1804{
Tejun Heob7db9952008-08-25 19:56:10 +09001805 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
1808EXPORT_SYMBOL(set_device_ro);
1809
1810void set_disk_ro(struct gendisk *disk, int flag)
1811{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001812 struct disk_part_iter piter;
1813 struct hd_struct *part;
1814
Hannes Reineckee3264a42009-07-28 09:13:13 +02001815 if (disk->part0.policy != flag) {
1816 set_disk_ro_uevent(disk, flag);
1817 disk->part0.policy = flag;
1818 }
1819
1820 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001821 while ((part = disk_part_iter_next(&piter)))
1822 part->policy = flag;
1823 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
1826EXPORT_SYMBOL(set_disk_ro);
1827
1828int bdev_read_only(struct block_device *bdev)
1829{
1830 if (!bdev)
1831 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001832 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835EXPORT_SYMBOL(bdev_read_only);
1836
Tejun Heo77ea8872010-12-08 20:57:37 +01001837/*
1838 * Disk events - monitor disk events like media change and eject request.
1839 */
1840struct disk_events {
1841 struct list_head node; /* all disk_event's */
1842 struct gendisk *disk; /* the associated disk */
1843 spinlock_t lock;
1844
Tejun Heofdd514e2011-06-09 20:43:59 +02001845 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001846 int block; /* event blocking depth */
1847 unsigned int pending; /* events already sent out */
1848 unsigned int clearing; /* events being cleared */
1849
1850 long poll_msecs; /* interval, -1 for default */
1851 struct delayed_work dwork;
1852};
1853
1854static const char *disk_events_strs[] = {
1855 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1856 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1857};
1858
1859static char *disk_uevents[] = {
1860 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1861 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1862};
1863
1864/* list of all disk_events */
1865static DEFINE_MUTEX(disk_events_mutex);
1866static LIST_HEAD(disk_events);
1867
1868/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001869static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001870
1871static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1872{
1873 struct disk_events *ev = disk->ev;
1874 long intv_msecs = 0;
1875
1876 /*
1877 * If device-specific poll interval is set, always use it. If
Martin Wilck673387a2019-03-27 14:51:01 +01001878 * the default is being used, poll if the POLL flag is set.
Tejun Heo77ea8872010-12-08 20:57:37 +01001879 */
1880 if (ev->poll_msecs >= 0)
1881 intv_msecs = ev->poll_msecs;
Martin Wilckc92e2f02019-03-27 14:51:02 +01001882 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
Tejun Heo77ea8872010-12-08 20:57:37 +01001883 intv_msecs = disk_events_dfl_poll_msecs;
1884
1885 return msecs_to_jiffies(intv_msecs);
1886}
1887
Tejun Heoc3af54a2011-06-09 20:43:55 +02001888/**
1889 * disk_block_events - block and flush disk event checking
1890 * @disk: disk to block events for
1891 *
1892 * On return from this function, it is guaranteed that event checking
1893 * isn't in progress and won't happen until unblocked by
1894 * disk_unblock_events(). Events blocking is counted and the actual
1895 * unblocking happens after the matching number of unblocks are done.
1896 *
1897 * Note that this intentionally does not block event checking from
1898 * disk_clear_events().
1899 *
1900 * CONTEXT:
1901 * Might sleep.
1902 */
1903void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001904{
1905 struct disk_events *ev = disk->ev;
1906 unsigned long flags;
1907 bool cancel;
1908
Tejun Heoc3af54a2011-06-09 20:43:55 +02001909 if (!ev)
1910 return;
1911
Tejun Heofdd514e2011-06-09 20:43:59 +02001912 /*
1913 * Outer mutex ensures that the first blocker completes canceling
1914 * the event work before further blockers are allowed to finish.
1915 */
1916 mutex_lock(&ev->block_mutex);
1917
Tejun Heo77ea8872010-12-08 20:57:37 +01001918 spin_lock_irqsave(&ev->lock, flags);
1919 cancel = !ev->block++;
1920 spin_unlock_irqrestore(&ev->lock, flags);
1921
Tejun Heoc3af54a2011-06-09 20:43:55 +02001922 if (cancel)
1923 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001924
1925 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001926}
1927
1928static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1929{
1930 struct disk_events *ev = disk->ev;
1931 unsigned long intv;
1932 unsigned long flags;
1933
1934 spin_lock_irqsave(&ev->lock, flags);
1935
1936 if (WARN_ON_ONCE(ev->block <= 0))
1937 goto out_unlock;
1938
1939 if (--ev->block)
1940 goto out_unlock;
1941
Tejun Heo77ea8872010-12-08 20:57:37 +01001942 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001943 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301944 queue_delayed_work(system_freezable_power_efficient_wq,
1945 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001946 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301947 queue_delayed_work(system_freezable_power_efficient_wq,
1948 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001949out_unlock:
1950 spin_unlock_irqrestore(&ev->lock, flags);
1951}
1952
1953/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001954 * disk_unblock_events - unblock disk event checking
1955 * @disk: disk to unblock events for
1956 *
1957 * Undo disk_block_events(). When the block count reaches zero, it
1958 * starts events polling if configured.
1959 *
1960 * CONTEXT:
1961 * Don't care. Safe to call from irq context.
1962 */
1963void disk_unblock_events(struct gendisk *disk)
1964{
1965 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001966 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001967}
1968
1969/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001970 * disk_flush_events - schedule immediate event checking and flushing
1971 * @disk: disk to check and flush events for
1972 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001973 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001974 * Schedule immediate event checking on @disk if not blocked. Events in
1975 * @mask are scheduled to be cleared from the driver. Note that this
1976 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001977 *
1978 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001979 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001980 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001981void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001982{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001983 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001984
1985 if (!ev)
1986 return;
1987
Tejun Heo85ef06d2011-07-01 16:17:47 +02001988 spin_lock_irq(&ev->lock);
1989 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001990 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301991 mod_delayed_work(system_freezable_power_efficient_wq,
1992 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001993 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001994}
Tejun Heo77ea8872010-12-08 20:57:37 +01001995
1996/**
1997 * disk_clear_events - synchronously check, clear and return pending events
1998 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001999 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01002000 *
2001 * Disk events are synchronously checked and pending events in @mask
2002 * are cleared and returned. This ignores the block count.
2003 *
2004 * CONTEXT:
2005 * Might sleep.
2006 */
2007unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
2008{
2009 const struct block_device_operations *bdops = disk->fops;
2010 struct disk_events *ev = disk->ev;
2011 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002012 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01002013
2014 if (!ev) {
2015 /* for drivers still using the old ->media_changed method */
2016 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
2017 bdops->media_changed && bdops->media_changed(disk))
2018 return DISK_EVENT_MEDIA_CHANGE;
2019 return 0;
2020 }
2021
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002022 disk_block_events(disk);
2023
2024 /*
2025 * store the union of mask and ev->clearing on the stack so that the
2026 * race with disk_flush_events does not cause ambiguity (ev->clearing
2027 * can still be modified even if events are blocked).
2028 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002029 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002030 clearing |= ev->clearing;
2031 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002032 spin_unlock_irq(&ev->lock);
2033
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002034 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08002035 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002036 * if ev->clearing is not 0, the disk_flush_events got called in the
2037 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08002038 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002039 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002040
2041 /* then, fetch and clear pending events */
2042 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002043 pending = ev->pending & mask;
2044 ev->pending &= ~mask;
2045 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002046 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01002047
2048 return pending;
2049}
2050
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002051/*
2052 * Separate this part out so that a different pointer for clearing_ptr can be
2053 * passed in for disk_clear_events.
2054 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002055static void disk_events_workfn(struct work_struct *work)
2056{
2057 struct delayed_work *dwork = to_delayed_work(work);
2058 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002059
2060 disk_check_events(ev, &ev->clearing);
2061}
2062
2063static void disk_check_events(struct disk_events *ev,
2064 unsigned int *clearing_ptr)
2065{
Tejun Heo77ea8872010-12-08 20:57:37 +01002066 struct gendisk *disk = ev->disk;
2067 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002068 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01002069 unsigned int events;
2070 unsigned long intv;
2071 int nr_events = 0, i;
2072
2073 /* check events */
2074 events = disk->fops->check_events(disk, clearing);
2075
2076 /* accumulate pending events and schedule next poll if necessary */
2077 spin_lock_irq(&ev->lock);
2078
2079 events &= ~ev->pending;
2080 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002081 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01002082
2083 intv = disk_events_poll_jiffies(disk);
2084 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05302085 queue_delayed_work(system_freezable_power_efficient_wq,
2086 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01002087
2088 spin_unlock_irq(&ev->lock);
2089
Tejun Heo7c88a162011-04-21 19:43:58 +02002090 /*
2091 * Tell userland about new events. Only the events listed in
Martin Wilckc92e2f02019-03-27 14:51:02 +01002092 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
2093 * is set. Otherwise, events are processed internally but never
2094 * get reported to userland.
Tejun Heo7c88a162011-04-21 19:43:58 +02002095 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002096 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Martin Wilckc92e2f02019-03-27 14:51:02 +01002097 if ((events & disk->events & (1 << i)) &&
2098 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
Tejun Heo77ea8872010-12-08 20:57:37 +01002099 envp[nr_events++] = disk_uevents[i];
2100
2101 if (nr_events)
2102 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
2103}
2104
2105/*
2106 * A disk events enabled device has the following sysfs nodes under
2107 * its /sys/block/X/ directory.
2108 *
2109 * events : list of all supported events
2110 * events_async : list of events which can be detected w/o polling
Martin Wilck673387a2019-03-27 14:51:01 +01002111 * (always empty, only for backwards compatibility)
Tejun Heo77ea8872010-12-08 20:57:37 +01002112 * events_poll_msecs : polling interval, 0: disable, -1: system default
2113 */
2114static ssize_t __disk_events_show(unsigned int events, char *buf)
2115{
2116 const char *delim = "";
2117 ssize_t pos = 0;
2118 int i;
2119
2120 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
2121 if (events & (1 << i)) {
2122 pos += sprintf(buf + pos, "%s%s",
2123 delim, disk_events_strs[i]);
2124 delim = " ";
2125 }
2126 if (pos)
2127 pos += sprintf(buf + pos, "\n");
2128 return pos;
2129}
2130
2131static ssize_t disk_events_show(struct device *dev,
2132 struct device_attribute *attr, char *buf)
2133{
2134 struct gendisk *disk = dev_to_disk(dev);
2135
Martin Wilckc92e2f02019-03-27 14:51:02 +01002136 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
2137 return 0;
2138
Tejun Heo77ea8872010-12-08 20:57:37 +01002139 return __disk_events_show(disk->events, buf);
2140}
2141
2142static ssize_t disk_events_async_show(struct device *dev,
2143 struct device_attribute *attr, char *buf)
2144{
Martin Wilck673387a2019-03-27 14:51:01 +01002145 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002146}
2147
2148static ssize_t disk_events_poll_msecs_show(struct device *dev,
2149 struct device_attribute *attr,
2150 char *buf)
2151{
2152 struct gendisk *disk = dev_to_disk(dev);
2153
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002154 if (!disk->ev)
2155 return sprintf(buf, "-1\n");
2156
Tejun Heo77ea8872010-12-08 20:57:37 +01002157 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
2158}
2159
2160static ssize_t disk_events_poll_msecs_store(struct device *dev,
2161 struct device_attribute *attr,
2162 const char *buf, size_t count)
2163{
2164 struct gendisk *disk = dev_to_disk(dev);
2165 long intv;
2166
2167 if (!count || !sscanf(buf, "%ld", &intv))
2168 return -EINVAL;
2169
2170 if (intv < 0 && intv != -1)
2171 return -EINVAL;
2172
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002173 if (!disk->ev)
2174 return -ENODEV;
2175
Tejun Heoc3af54a2011-06-09 20:43:55 +02002176 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002177 disk->ev->poll_msecs = intv;
2178 __disk_unblock_events(disk, true);
2179
2180 return count;
2181}
2182
Joe Perches5657a812018-05-24 13:38:59 -06002183static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
2184static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
2185static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01002186 disk_events_poll_msecs_show,
2187 disk_events_poll_msecs_store);
2188
2189static const struct attribute *disk_events_attrs[] = {
2190 &dev_attr_events.attr,
2191 &dev_attr_events_async.attr,
2192 &dev_attr_events_poll_msecs.attr,
2193 NULL,
2194};
2195
2196/*
2197 * The default polling interval can be specified by the kernel
2198 * parameter block.events_dfl_poll_msecs which defaults to 0
2199 * (disable). This can also be modified runtime by writing to
Akinobu Mita1624b0b2019-07-16 21:59:35 +09002200 * /sys/module/block/parameters/events_dfl_poll_msecs.
Tejun Heo77ea8872010-12-08 20:57:37 +01002201 */
2202static int disk_events_set_dfl_poll_msecs(const char *val,
2203 const struct kernel_param *kp)
2204{
2205 struct disk_events *ev;
2206 int ret;
2207
2208 ret = param_set_ulong(val, kp);
2209 if (ret < 0)
2210 return ret;
2211
2212 mutex_lock(&disk_events_mutex);
2213
2214 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02002215 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01002216
2217 mutex_unlock(&disk_events_mutex);
2218
2219 return 0;
2220}
2221
2222static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2223 .set = disk_events_set_dfl_poll_msecs,
2224 .get = param_get_ulong,
2225};
2226
2227#undef MODULE_PARAM_PREFIX
2228#define MODULE_PARAM_PREFIX "block."
2229
2230module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2231 &disk_events_dfl_poll_msecs, 0644);
2232
2233/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002234 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01002235 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002236static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01002237{
2238 struct disk_events *ev;
2239
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002240 if (!disk->fops->check_events || !disk->events)
Tejun Heo77ea8872010-12-08 20:57:37 +01002241 return;
2242
2243 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2244 if (!ev) {
2245 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2246 return;
2247 }
2248
Tejun Heo77ea8872010-12-08 20:57:37 +01002249 INIT_LIST_HEAD(&ev->node);
2250 ev->disk = disk;
2251 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02002252 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01002253 ev->block = 1;
2254 ev->poll_msecs = -1;
2255 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2256
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002257 disk->ev = ev;
2258}
2259
2260static void disk_add_events(struct gendisk *disk)
2261{
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002262 /* FIXME: error handling */
2263 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2264 pr_warn("%s: failed to create sysfs files for events\n",
2265 disk->disk_name);
2266
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002267 if (!disk->ev)
2268 return;
2269
Tejun Heo77ea8872010-12-08 20:57:37 +01002270 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002271 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002272 mutex_unlock(&disk_events_mutex);
2273
2274 /*
2275 * Block count is initialized to 1 and the following initial
2276 * unblock kicks it into action.
2277 */
2278 __disk_unblock_events(disk, true);
2279}
2280
2281static void disk_del_events(struct gendisk *disk)
2282{
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002283 if (disk->ev) {
2284 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002285
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002286 mutex_lock(&disk_events_mutex);
2287 list_del_init(&disk->ev->node);
2288 mutex_unlock(&disk_events_mutex);
2289 }
Tejun Heo77ea8872010-12-08 20:57:37 +01002290
2291 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2292}
2293
2294static void disk_release_events(struct gendisk *disk)
2295{
2296 /* the block count should be 1 from disk_del_events() */
2297 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2298 kfree(disk->ev);
2299}