blob: 1a765932766441e277c4667bb619bfbe8fc52776 [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 +030095static void part_stat_read_all(struct hd_struct *part, struct disk_stats *stat)
96{
97 int cpu;
98
99 memset(stat, 0, sizeof(struct disk_stats));
100 for_each_possible_cpu(cpu) {
101 struct disk_stats *ptr = per_cpu_ptr(part->dkstats, cpu);
102 int group;
103
104 for (group = 0; group < NR_STAT_GROUPS; group++) {
105 stat->nsecs[group] += ptr->nsecs[group];
106 stat->sectors[group] += ptr->sectors[group];
107 stat->ios[group] += ptr->ios[group];
108 stat->merges[group] += ptr->merges[group];
109 }
110
111 stat->io_ticks += ptr->io_ticks;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300112 }
113}
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +0300114
Christoph Hellwig60057712020-03-25 16:48:36 +0100115static unsigned int part_in_flight(struct request_queue *q,
116 struct hd_struct *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600117{
Christoph Hellwigb2f609e2020-05-13 12:49:33 +0200118 unsigned int inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500119 int cpu;
120
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500121 for_each_possible_cpu(cpu) {
Mikulas Patockae016b782018-12-06 11:41:21 -0500122 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
123 part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500124 }
Mikulas Patockae016b782018-12-06 11:41:21 -0500125 if ((int)inflight < 0)
126 inflight = 0;
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500127
Mikulas Patockae016b782018-12-06 11:41:21 -0500128 return inflight;
Jens Axboef299b7c2017-08-08 17:51:45 -0600129}
130
Christoph Hellwig60057712020-03-25 16:48:36 +0100131static void part_in_flight_rw(struct request_queue *q, struct hd_struct *part,
132 unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700133{
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500134 int cpu;
135
Mikulas Patocka1226b8d2018-12-06 11:41:20 -0500136 inflight[0] = 0;
137 inflight[1] = 0;
138 for_each_possible_cpu(cpu) {
139 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
140 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
141 }
142 if ((int)inflight[0] < 0)
143 inflight[0] = 0;
144 if ((int)inflight[1] < 0)
145 inflight[1] = 0;
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700146}
147
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200148struct hd_struct *__disk_get_part(struct gendisk *disk, int partno)
149{
150 struct disk_part_tbl *ptbl = rcu_dereference(disk->part_tbl);
151
152 if (unlikely(partno < 0 || partno >= ptbl->len))
153 return NULL;
154 return rcu_dereference(ptbl->part[partno]);
155}
156
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200157/**
158 * disk_get_part - get partition
159 * @disk: disk to look partition from
160 * @partno: partition number
161 *
162 * Look for partition @partno from @disk. If found, increment
163 * reference count and return it.
164 *
165 * CONTEXT:
166 * Don't care.
167 *
168 * RETURNS:
169 * Pointer to the found partition on success, NULL if not found.
170 */
171struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
172{
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200173 struct hd_struct *part;
Tejun Heo540eed52008-08-25 19:56:15 +0900174
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200175 rcu_read_lock();
Christoph Hellwig807d4af2017-08-23 19:10:30 +0200176 part = __disk_get_part(disk, partno);
177 if (part)
178 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200179 rcu_read_unlock();
180
181 return part;
182}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200183
184/**
185 * disk_part_iter_init - initialize partition iterator
186 * @piter: iterator to initialize
187 * @disk: disk to iterate over
188 * @flags: DISK_PITER_* flags
189 *
190 * Initialize @piter so that it iterates over partitions of @disk.
191 *
192 * CONTEXT:
193 * Don't care.
194 */
195void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
196 unsigned int flags)
197{
Tejun Heo540eed52008-08-25 19:56:15 +0900198 struct disk_part_tbl *ptbl;
199
200 rcu_read_lock();
201 ptbl = rcu_dereference(disk->part_tbl);
202
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200203 piter->disk = disk;
204 piter->part = NULL;
205
206 if (flags & DISK_PITER_REVERSE)
Tejun Heo540eed52008-08-25 19:56:15 +0900207 piter->idx = ptbl->len - 1;
Tejun Heo71982a42009-04-17 08:34:48 +0200208 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200209 piter->idx = 0;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200210 else
211 piter->idx = 1;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200212
213 piter->flags = flags;
Tejun Heo540eed52008-08-25 19:56:15 +0900214
215 rcu_read_unlock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200216}
217EXPORT_SYMBOL_GPL(disk_part_iter_init);
218
219/**
220 * disk_part_iter_next - proceed iterator to the next partition and return it
221 * @piter: iterator of interest
222 *
223 * Proceed @piter to the next partition and return it.
224 *
225 * CONTEXT:
226 * Don't care.
227 */
228struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
229{
Tejun Heo540eed52008-08-25 19:56:15 +0900230 struct disk_part_tbl *ptbl;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200231 int inc, end;
232
233 /* put the last partition */
234 disk_put_part(piter->part);
235 piter->part = NULL;
236
Tejun Heo540eed52008-08-25 19:56:15 +0900237 /* get part_tbl */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200238 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900239 ptbl = rcu_dereference(piter->disk->part_tbl);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200240
241 /* determine iteration parameters */
242 if (piter->flags & DISK_PITER_REVERSE) {
243 inc = -1;
Tejun Heo71982a42009-04-17 08:34:48 +0200244 if (piter->flags & (DISK_PITER_INCL_PART0 |
245 DISK_PITER_INCL_EMPTY_PART0))
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200246 end = -1;
247 else
248 end = 0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200249 } else {
250 inc = 1;
Tejun Heo540eed52008-08-25 19:56:15 +0900251 end = ptbl->len;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200252 }
253
254 /* iterate to the next partition */
255 for (; piter->idx != end; piter->idx += inc) {
256 struct hd_struct *part;
257
Tejun Heo540eed52008-08-25 19:56:15 +0900258 part = rcu_dereference(ptbl->part[piter->idx]);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200259 if (!part)
260 continue;
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200261 if (!part_nr_sects_read(part) &&
Tejun Heo71982a42009-04-17 08:34:48 +0200262 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
263 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
264 piter->idx == 0))
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200265 continue;
266
Tejun Heoed9e1982008-08-25 19:56:05 +0900267 get_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200268 piter->part = part;
269 piter->idx += inc;
270 break;
271 }
272
273 rcu_read_unlock();
274
275 return piter->part;
276}
277EXPORT_SYMBOL_GPL(disk_part_iter_next);
278
279/**
280 * disk_part_iter_exit - finish up partition iteration
281 * @piter: iter of interest
282 *
283 * Called when iteration is over. Cleans up @piter.
284 *
285 * CONTEXT:
286 * Don't care.
287 */
288void disk_part_iter_exit(struct disk_part_iter *piter)
289{
290 disk_put_part(piter->part);
291 piter->part = NULL;
292}
293EXPORT_SYMBOL_GPL(disk_part_iter_exit);
294
Jens Axboea6f23652008-10-24 12:52:42 +0200295static inline int sector_in_part(struct hd_struct *part, sector_t sector)
296{
297 return part->start_sect <= sector &&
Vivek Goyalc83f6bf2012-08-01 12:24:18 +0200298 sector < part->start_sect + part_nr_sects_read(part);
Jens Axboea6f23652008-10-24 12:52:42 +0200299}
300
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200301/**
302 * disk_map_sector_rcu - map sector to partition
303 * @disk: gendisk of interest
304 * @sector: sector to map
305 *
306 * Find out which partition @sector maps to on @disk. This is
307 * primarily used for stats accounting.
308 *
309 * CONTEXT:
Ming Leib7d6c302020-05-08 16:17:55 +0800310 * RCU read locked. The returned partition pointer is always valid
Ming Lei27eb3af2020-05-08 16:17:58 +0800311 * because its refcount is grabbed except for part0, which lifetime
312 * is same with the disk.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200313 *
314 * RETURNS:
Tejun Heo074a7ac2008-08-25 19:56:14 +0900315 * Found partition on success, part0 is returned if no partition matches
Ming Leib7d6c302020-05-08 16:17:55 +0800316 * or the matched partition is being deleted.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200317 */
318struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
319{
Tejun Heo540eed52008-08-25 19:56:15 +0900320 struct disk_part_tbl *ptbl;
Jens Axboea6f23652008-10-24 12:52:42 +0200321 struct hd_struct *part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200322 int i;
323
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200324 rcu_read_lock();
Tejun Heo540eed52008-08-25 19:56:15 +0900325 ptbl = rcu_dereference(disk->part_tbl);
326
Jens Axboea6f23652008-10-24 12:52:42 +0200327 part = rcu_dereference(ptbl->last_lookup);
Ming Leib7d6c302020-05-08 16:17:55 +0800328 if (part && sector_in_part(part, sector) && hd_struct_try_get(part))
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200329 goto out_unlock;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200330
Jens Axboea6f23652008-10-24 12:52:42 +0200331 for (i = 1; i < ptbl->len; i++) {
332 part = rcu_dereference(ptbl->part[i]);
333
334 if (part && sector_in_part(part, sector)) {
Ming Leib7d6c302020-05-08 16:17:55 +0800335 /*
336 * only live partition can be cached for lookup,
337 * so use-after-free on cached & deleting partition
338 * can be avoided
339 */
340 if (!hd_struct_try_get(part))
341 break;
Jens Axboea6f23652008-10-24 12:52:42 +0200342 rcu_assign_pointer(ptbl->last_lookup, part);
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200343 goto out_unlock;
Jens Axboea6f23652008-10-24 12:52:42 +0200344 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200345 }
Konstantin Khlebnikov8ab1d402020-05-27 07:24:17 +0200346
347 part = &disk->part0;
348out_unlock:
349 rcu_read_unlock();
350 return part;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200351}
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200352
Shin'ichiro Kawasakib53df2e2020-02-21 10:37:08 +0900353/**
354 * disk_has_partitions
355 * @disk: gendisk of interest
356 *
357 * Walk through the partition table and check if valid partition exists.
358 *
359 * CONTEXT:
360 * Don't care.
361 *
362 * RETURNS:
363 * True if the gendisk has at least one valid non-zero size partition.
364 * Otherwise false.
365 */
366bool disk_has_partitions(struct gendisk *disk)
367{
368 struct disk_part_tbl *ptbl;
369 int i;
370 bool ret = false;
371
372 rcu_read_lock();
373 ptbl = rcu_dereference(disk->part_tbl);
374
375 /* Iterate partitions skipping the whole device at index 0 */
376 for (i = 1; i < ptbl->len; i++) {
377 if (rcu_dereference(ptbl->part[i])) {
378 ret = true;
379 break;
380 }
381 }
382
383 rcu_read_unlock();
384
385 return ret;
386}
387EXPORT_SYMBOL_GPL(disk_has_partitions);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
390 * Can be deleted altogether. Later.
391 *
392 */
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600393#define BLKDEV_MAJOR_HASH_SIZE 255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static struct blk_major_name {
395 struct blk_major_name *next;
396 int major;
397 char name[16];
Joe Korty68eef3b2006-03-31 02:30:32 -0800398} *major_names[BLKDEV_MAJOR_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400/* index in the above - for now: assume no multimajor ranges */
Yang Zhange61eb2e2010-12-17 09:00:18 +0100401static inline int major_to_index(unsigned major)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Joe Korty68eef3b2006-03-31 02:30:32 -0800403 return major % BLKDEV_MAJOR_HASH_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Joe Korty68eef3b2006-03-31 02:30:32 -0800406#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +0200407void blkdev_show(struct seq_file *seqf, off_t offset)
Neil Horman7170be52006-01-14 13:20:38 -0800408{
Joe Korty68eef3b2006-03-31 02:30:32 -0800409 struct blk_major_name *dp;
Neil Horman7170be52006-01-14 13:20:38 -0800410
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600411 mutex_lock(&block_class_lock);
412 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
413 if (dp->major == offset)
Tejun Heocf771cb2008-09-03 09:01:09 +0200414 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600415 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
Joe Korty68eef3b2006-03-31 02:30:32 -0800417#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100419/**
420 * register_blkdev - register a new block device
421 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800422 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
423 * @major = 0, try to allocate any unused major number.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100424 * @name: the name of the new block device as a zero terminated string
425 *
426 * The @name must be unique within the system.
427 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300428 * The return value depends on the @major input parameter:
429 *
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800430 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
431 * then the function returns zero on success, or a negative error code
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300432 * - if any unused major number was requested with @major = 0 parameter
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100433 * then the return value is the allocated major number in range
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800434 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
435 *
436 * See Documentation/admin-guide/devices.txt for the list of allocated
437 * major numbers.
Márton Németh9e8c0bc2009-02-20 08:12:51 +0100438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439int register_blkdev(unsigned int major, const char *name)
440{
441 struct blk_major_name **n, *p;
442 int index, ret = 0;
443
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200444 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /* temporary */
447 if (major == 0) {
448 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
449 if (major_names[index] == NULL)
450 break;
451 }
452
453 if (index == 0) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500454 printk("%s: failed to get major for %s\n",
455 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 ret = -EBUSY;
457 goto out;
458 }
459 major = index;
460 ret = major;
461 }
462
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600463 if (major >= BLKDEV_MAJOR_MAX) {
Keyur Pateldfc76d12019-02-17 10:21:56 -0500464 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
465 __func__, major, BLKDEV_MAJOR_MAX-1, name);
Logan Gunthorpe133d55c2017-06-16 17:48:21 -0600466
467 ret = -EINVAL;
468 goto out;
469 }
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
472 if (p == NULL) {
473 ret = -ENOMEM;
474 goto out;
475 }
476
477 p->major = major;
478 strlcpy(p->name, name, sizeof(p->name));
479 p->next = NULL;
480 index = major_to_index(major);
481
482 for (n = &major_names[index]; *n; n = &(*n)->next) {
483 if ((*n)->major == major)
484 break;
485 }
486 if (!*n)
487 *n = p;
488 else
489 ret = -EBUSY;
490
491 if (ret < 0) {
Srivatsa S. Bhatf33ff112018-02-05 18:25:27 -0800492 printk("register_blkdev: cannot get major %u for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 major, name);
494 kfree(p);
495 }
496out:
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200497 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return ret;
499}
500
501EXPORT_SYMBOL(register_blkdev);
502
Akinobu Mitaf4480242007-07-17 04:03:47 -0700503void unregister_blkdev(unsigned int major, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 struct blk_major_name **n;
506 struct blk_major_name *p = NULL;
507 int index = major_to_index(major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200509 mutex_lock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 for (n = &major_names[index]; *n; n = &(*n)->next)
511 if ((*n)->major == major)
512 break;
Akinobu Mita294462a2007-07-17 04:03:45 -0700513 if (!*n || strcmp((*n)->name, name)) {
514 WARN_ON(1);
Akinobu Mita294462a2007-07-17 04:03:45 -0700515 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 p = *n;
517 *n = p->next;
518 }
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200519 mutex_unlock(&block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523EXPORT_SYMBOL(unregister_blkdev);
524
525static struct kobj_map *bdev_map;
526
Tejun Heobcce3de2008-08-25 19:47:22 +0900527/**
Tejun Heo870d6652008-08-25 19:47:25 +0900528 * blk_mangle_minor - scatter minor numbers apart
529 * @minor: minor number to mangle
530 *
531 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
532 * is enabled. Mangling twice gives the original value.
533 *
534 * RETURNS:
535 * Mangled value.
536 *
537 * CONTEXT:
538 * Don't care.
539 */
540static int blk_mangle_minor(int minor)
541{
542#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
543 int i;
544
545 for (i = 0; i < MINORBITS / 2; i++) {
546 int low = minor & (1 << i);
547 int high = minor & (1 << (MINORBITS - 1 - i));
548 int distance = MINORBITS - 1 - 2 * i;
549
550 minor ^= low | high; /* clear both bits */
551 low <<= distance; /* swap the positions */
552 high >>= distance;
553 minor |= low | high; /* and set */
554 }
555#endif
556 return minor;
557}
558
559/**
Tejun Heobcce3de2008-08-25 19:47:22 +0900560 * blk_alloc_devt - allocate a dev_t for a partition
561 * @part: partition to allocate dev_t for
Tejun Heobcce3de2008-08-25 19:47:22 +0900562 * @devt: out parameter for resulting dev_t
563 *
564 * Allocate a dev_t for block device.
565 *
566 * RETURNS:
567 * 0 on success, allocated dev_t is returned in *@devt. -errno on
568 * failure.
569 *
570 * CONTEXT:
571 * Might sleep.
572 */
573int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
574{
575 struct gendisk *disk = part_to_disk(part);
Tejun Heobab998d2013-02-27 17:03:57 -0800576 int idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900577
578 /* in consecutive minor range? */
579 if (part->partno < disk->minors) {
580 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
581 return 0;
582 }
583
584 /* allocate ext devt */
Keith Busch2da78092014-08-26 09:05:36 -0600585 idr_preload(GFP_KERNEL);
586
Dan Williams4d66e5e2015-06-10 23:47:14 -0400587 spin_lock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600588 idx = idr_alloc(&ext_devt_idr, part, 0, NR_EXT_DEVT, GFP_NOWAIT);
Dan Williams4d66e5e2015-06-10 23:47:14 -0400589 spin_unlock_bh(&ext_devt_lock);
Keith Busch2da78092014-08-26 09:05:36 -0600590
591 idr_preload_end();
Tejun Heobab998d2013-02-27 17:03:57 -0800592 if (idx < 0)
593 return idx == -ENOSPC ? -EBUSY : idx;
Tejun Heobcce3de2008-08-25 19:47:22 +0900594
Tejun Heo870d6652008-08-25 19:47:25 +0900595 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
Tejun Heobcce3de2008-08-25 19:47:22 +0900596 return 0;
597}
598
599/**
600 * blk_free_devt - free a dev_t
601 * @devt: dev_t to free
602 *
603 * Free @devt which was allocated using blk_alloc_devt().
604 *
605 * CONTEXT:
606 * Might sleep.
607 */
608void blk_free_devt(dev_t devt)
609{
Tejun Heobcce3de2008-08-25 19:47:22 +0900610 if (devt == MKDEV(0, 0))
611 return;
612
613 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
Dan Williams4d66e5e2015-06-10 23:47:14 -0400614 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900615 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Dan Williams4d66e5e2015-06-10 23:47:14 -0400616 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900617 }
618}
619
Bart Van Assche33c826e2019-05-30 17:00:47 -0700620/*
621 * We invalidate devt by assigning NULL pointer for devt in idr.
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800622 */
623void blk_invalidate_devt(dev_t devt)
624{
625 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
626 spin_lock_bh(&ext_devt_lock);
627 idr_replace(&ext_devt_idr, NULL, blk_mangle_minor(MINOR(devt)));
628 spin_unlock_bh(&ext_devt_lock);
629 }
630}
631
Tejun Heo1f014292008-08-25 19:47:23 +0900632static char *bdevt_str(dev_t devt, char *buf)
633{
634 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
635 char tbuf[BDEVT_SIZE];
636 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
637 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
638 } else
639 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
640
641 return buf;
642}
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644/*
645 * Register device numbers dev..(dev+range-1)
646 * range must be nonzero
647 * The hash chain is sorted on range, so that subranges can override.
648 */
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200649void blk_register_region(dev_t devt, unsigned long range, struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct kobject *(*probe)(dev_t, int *, void *),
651 int (*lock)(dev_t, void *), void *data)
652{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200653 kobj_map(bdev_map, devt, range, module, probe, lock, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656EXPORT_SYMBOL(blk_register_region);
657
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200658void blk_unregister_region(dev_t devt, unsigned long range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200660 kobj_unmap(bdev_map, devt, range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663EXPORT_SYMBOL(blk_unregister_region);
664
Tejun Heocf771cb2008-09-03 09:01:09 +0200665static struct kobject *exact_match(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 struct gendisk *p = data;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200668
Tejun Heoed9e1982008-08-25 19:56:05 +0900669 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200672static int exact_lock(dev_t devt, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct gendisk *p = data;
675
Jan Kara3079c222018-02-26 13:01:38 +0100676 if (!get_disk_and_module(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return -1;
678 return 0;
679}
680
Hannes Reineckefef912b2018-09-28 08:17:19 +0200681static void register_disk(struct device *parent, struct gendisk *disk,
682 const struct attribute_group **groups)
Tejun Heod2bf1b62010-12-08 20:57:36 +0100683{
684 struct device *ddev = disk_to_dev(disk);
685 struct block_device *bdev;
686 struct disk_part_iter piter;
687 struct hd_struct *part;
688 int err;
689
Dan Williamse63a46b2016-06-15 18:17:27 -0700690 ddev->parent = parent;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100691
Kees Cookffc8b302013-07-03 15:01:14 -0700692 dev_set_name(ddev, "%s", disk->disk_name);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100693
694 /* delay uevents, until we scanned partition table */
695 dev_set_uevent_suppress(ddev, 1);
696
Hannes Reineckefef912b2018-09-28 08:17:19 +0200697 if (groups) {
698 WARN_ON(ddev->groups);
699 ddev->groups = groups;
700 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100701 if (device_add(ddev))
702 return;
703 if (!sysfs_deprecated) {
704 err = sysfs_create_link(block_depr, &ddev->kobj,
705 kobject_name(&ddev->kobj));
706 if (err) {
707 device_del(ddev);
708 return;
709 }
710 }
Ming Lei25e823c2013-02-22 16:34:13 -0800711
712 /*
713 * avoid probable deadlock caused by allocating memory with
714 * GFP_KERNEL in runtime_resume callback of its all ancestor
715 * devices
716 */
717 pm_runtime_set_memalloc_noio(ddev, true);
718
Tejun Heod2bf1b62010-12-08 20:57:36 +0100719 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
720 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
721
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300722 if (disk->flags & GENHD_FL_HIDDEN) {
723 dev_set_uevent_suppress(ddev, 0);
724 return;
725 }
726
Tejun Heod2bf1b62010-12-08 20:57:36 +0100727 /* No minors to use for partitions */
Tejun Heod27769e2011-08-23 20:01:04 +0200728 if (!disk_part_scan_enabled(disk))
Tejun Heod2bf1b62010-12-08 20:57:36 +0100729 goto exit;
730
731 /* No such device (e.g., media were just removed) */
732 if (!get_capacity(disk))
733 goto exit;
734
735 bdev = bdget_disk(disk, 0);
736 if (!bdev)
737 goto exit;
738
739 bdev->bd_invalidated = 1;
740 err = blkdev_get(bdev, FMODE_READ, NULL);
741 if (err < 0)
742 goto exit;
743 blkdev_put(bdev, FMODE_READ);
744
745exit:
746 /* announce disk after possible partitions are created */
747 dev_set_uevent_suppress(ddev, 0);
748 kobject_uevent(&ddev->kobj, KOBJ_ADD);
749
750 /* announce possible partitions */
751 disk_part_iter_init(&piter, disk, 0);
752 while ((part = disk_part_iter_next(&piter)))
753 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_ADD);
754 disk_part_iter_exit(&piter);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300755
zhengbin4d7c1d32019-02-20 21:27:05 +0800756 if (disk->queue->backing_dev_info->dev) {
757 err = sysfs_create_link(&ddev->kobj,
758 &disk->queue->backing_dev_info->dev->kobj,
759 "bdi");
760 WARN_ON(err);
761 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/**
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500765 * __device_add_disk - add disk information to kernel list
Dan Williamse63a46b2016-06-15 18:17:27 -0700766 * @parent: parent device for the disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * @disk: per-device partitioning information
Hannes Reineckefef912b2018-09-28 08:17:19 +0200768 * @groups: Additional per-device sysfs groups
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500769 * @register_queue: register the queue if set to true
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 *
771 * This function registers the partitioning information in @disk
772 * with the kernel.
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900773 *
774 * FIXME: error handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 */
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500776static void __device_add_disk(struct device *parent, struct gendisk *disk,
Hannes Reineckefef912b2018-09-28 08:17:19 +0200777 const struct attribute_group **groups,
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500778 bool register_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900780 dev_t devt;
Greg Kroah-Hartman6ffeea72008-05-22 17:21:08 -0400781 int retval;
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700782
Damien Le Moal737eb782019-09-05 18:51:33 +0900783 /*
784 * The disk queue should now be all set with enough information about
785 * the device for the elevator code to pick an adequate default
786 * elevator if one is needed, that is, for devices requesting queue
787 * registration.
788 */
789 if (register_queue)
790 elevator_init_mq(disk->queue);
791
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900792 /* minors == 0 indicates to use ext devt from part0 and should
793 * be accompanied with EXT_DEVT flag. Make sure all
794 * parameters make sense.
795 */
796 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300797 WARN_ON(!disk->minors &&
798 !(disk->flags & (GENHD_FL_EXT_DEVT | GENHD_FL_HIDDEN)));
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 disk->flags |= GENHD_FL_UP;
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900801
802 retval = blk_alloc_devt(&disk->part0, &devt);
803 if (retval) {
804 WARN_ON(1);
805 return;
806 }
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900807 disk->major = MAJOR(devt);
808 disk->first_minor = MINOR(devt);
809
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +0100810 disk_alloc_events(disk);
811
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300812 if (disk->flags & GENHD_FL_HIDDEN) {
813 /*
814 * Don't let hidden disks show up in /proc/partitions,
815 * and don't bother scanning for partitions either.
816 */
817 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
818 disk->flags |= GENHD_FL_NO_PART_SCAN;
819 } else {
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200820 struct backing_dev_info *bdi = disk->queue->backing_dev_info;
821 struct device *dev = disk_to_dev(disk);
weiping zhang3a921682017-10-31 18:38:59 +0800822 int ret;
823
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300824 /* Register BDI before referencing it from bdev */
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200825 dev->devt = devt;
826 ret = bdi_register(bdi, "%u:%u", MAJOR(devt), MINOR(devt));
weiping zhang3a921682017-10-31 18:38:59 +0800827 WARN_ON(ret);
Christoph Hellwig3c5d2022020-05-04 14:47:59 +0200828 bdi_set_owner(bdi, dev);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300829 blk_register_region(disk_devt(disk), disk->minors, NULL,
830 exact_match, exact_lock, disk);
831 }
Hannes Reineckefef912b2018-09-28 08:17:19 +0200832 register_disk(parent, disk, groups);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500833 if (register_queue)
834 blk_register_queue(disk);
Peter Zijlstracf0ca9f2008-04-30 00:54:32 -0700835
Tejun Heo523e1d32011-10-19 14:31:07 +0200836 /*
837 * Take an extra ref on queue which will be put on disk_release()
838 * so that it sticks around as long as @disk is there.
839 */
Tejun Heo09ac46c2011-12-14 00:33:38 +0100840 WARN_ON_ONCE(!blk_get_queue(disk->queue));
Tejun Heo523e1d32011-10-19 14:31:07 +0200841
Tejun Heo77ea8872010-12-08 20:57:37 +0100842 disk_add_events(disk);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400843 blk_integrity_add(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500845
Hannes Reineckefef912b2018-09-28 08:17:19 +0200846void device_add_disk(struct device *parent, struct gendisk *disk,
847 const struct attribute_group **groups)
848
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500849{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200850 __device_add_disk(parent, disk, groups, true);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500851}
Dan Williamse63a46b2016-06-15 18:17:27 -0700852EXPORT_SYMBOL(device_add_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500854void device_add_disk_no_queue_reg(struct device *parent, struct gendisk *disk)
855{
Hannes Reineckefef912b2018-09-28 08:17:19 +0200856 __device_add_disk(parent, disk, NULL, false);
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500857}
858EXPORT_SYMBOL(device_add_disk_no_queue_reg);
859
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200860static void invalidate_partition(struct gendisk *disk, int partno)
861{
862 struct block_device *bdev;
863
864 bdev = bdget_disk(disk, partno);
865 if (!bdev)
866 return;
867
868 fsync_bdev(bdev);
869 __invalidate_device(bdev, true);
Christoph Hellwig9bc5c392020-04-14 09:29:02 +0200870
871 /*
872 * Unhash the bdev inode for this device so that it gets evicted as soon
873 * as last inode reference is dropped.
874 */
875 remove_inode_hash(bdev->bd_inode);
Christoph Hellwig02d33b62020-04-14 09:29:01 +0200876 bdput(bdev);
877}
878
Tejun Heod2bf1b62010-12-08 20:57:36 +0100879void del_gendisk(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Tejun Heod2bf1b62010-12-08 20:57:36 +0100881 struct disk_part_iter piter;
882 struct hd_struct *part;
883
Martin K. Petersen25520d52015-10-21 13:19:49 -0400884 blk_integrity_del(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +0100885 disk_del_events(disk);
886
Jan Kara56c09082018-02-26 13:01:41 +0100887 /*
888 * Block lookups of the disk until all bdevs are unhashed and the
889 * disk is marked as dead (GENHD_FL_UP cleared).
890 */
891 down_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100892 /* invalidate stuff */
893 disk_part_iter_init(&piter, disk,
894 DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
895 while ((part = disk_part_iter_next(&piter))) {
896 invalidate_partition(disk, part->partno);
Christoph Hellwigcddae802020-04-14 09:28:54 +0200897 delete_partition(disk, part);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100898 }
899 disk_part_iter_exit(&piter);
900
901 invalidate_partition(disk, 0);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100902 set_capacity(disk, 0);
903 disk->flags &= ~GENHD_FL_UP;
Jan Kara56c09082018-02-26 13:01:41 +0100904 up_write(&disk->lookup_sem);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100905
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300906 if (!(disk->flags & GENHD_FL_HIDDEN))
907 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
Jan Kara90f16fd2017-03-08 17:48:33 +0100908 if (disk->queue) {
909 /*
910 * Unregister bdi before releasing device numbers (as they can
911 * get reused and we'd get clashes in sysfs).
912 */
Mike Snitzerbc8d0622018-01-09 20:46:49 -0500913 if (!(disk->flags & GENHD_FL_HIDDEN))
914 bdi_unregister(disk->queue->backing_dev_info);
Jan Kara90f16fd2017-03-08 17:48:33 +0100915 blk_unregister_queue(disk);
916 } else {
917 WARN_ON(1);
918 }
Tejun Heod2bf1b62010-12-08 20:57:36 +0100919
Hannes Reinecke17eac092017-11-09 17:57:06 +0100920 if (!(disk->flags & GENHD_FL_HIDDEN))
Christoph Hellwig8ddcd652017-11-02 21:29:53 +0300921 blk_unregister_region(disk_devt(disk), disk->minors);
Yufen Yu6fcc44d2019-04-02 20:06:34 +0800922 /*
923 * Remove gendisk pointer from idr so that it cannot be looked up
924 * while RCU period before freeing gendisk is running to prevent
925 * use-after-free issues. Note that the device number stays
926 * "in-use" until we really free the gendisk.
927 */
928 blk_invalidate_devt(disk_devt(disk));
Tejun Heod2bf1b62010-12-08 20:57:36 +0100929
930 kobject_put(disk->part0.holder_dir);
931 kobject_put(disk->slave_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 part_stat_set_all(&disk->part0, 0);
Tejun Heoed9e1982008-08-25 19:56:05 +0900934 disk->part0.stamp = 0;
Tejun Heod2bf1b62010-12-08 20:57:36 +0100935 if (!sysfs_deprecated)
936 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
Ming Lei25e823c2013-02-22 16:34:13 -0800937 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
Tejun Heod2bf1b62010-12-08 20:57:36 +0100938 device_del(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
Tejun Heod2bf1b62010-12-08 20:57:36 +0100940EXPORT_SYMBOL(del_gendisk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Vishal Verma99e66082016-01-09 08:36:51 -0800942/* sysfs access to bad-blocks list. */
943static ssize_t disk_badblocks_show(struct device *dev,
944 struct device_attribute *attr,
945 char *page)
946{
947 struct gendisk *disk = dev_to_disk(dev);
948
949 if (!disk->bb)
950 return sprintf(page, "\n");
951
952 return badblocks_show(disk->bb, page, 0);
953}
954
955static ssize_t disk_badblocks_store(struct device *dev,
956 struct device_attribute *attr,
957 const char *page, size_t len)
958{
959 struct gendisk *disk = dev_to_disk(dev);
960
961 if (!disk->bb)
962 return -ENXIO;
963
964 return badblocks_store(disk->bb, page, len, 0);
965}
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967/**
968 * get_gendisk - get partitioning information for a given device
Randy Dunlap710027a2008-08-19 20:13:11 +0200969 * @devt: device to get partitioning information for
Randy Dunlap496aa8a2008-10-16 07:46:23 +0200970 * @partno: returned partition index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 *
972 * This function gets the structure containing partitioning
Randy Dunlap710027a2008-08-19 20:13:11 +0200973 * information for the given device @devt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
Tejun Heocf771cb2008-09-03 09:01:09 +0200975struct gendisk *get_gendisk(dev_t devt, int *partno)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Tejun Heobcce3de2008-08-25 19:47:22 +0900977 struct gendisk *disk = NULL;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200978
Tejun Heobcce3de2008-08-25 19:47:22 +0900979 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
980 struct kobject *kobj;
981
982 kobj = kobj_lookup(bdev_map, devt, partno);
983 if (kobj)
984 disk = dev_to_disk(kobj_to_dev(kobj));
985 } else {
986 struct hd_struct *part;
987
Dan Williams4d66e5e2015-06-10 23:47:14 -0400988 spin_lock_bh(&ext_devt_lock);
Tejun Heo870d6652008-08-25 19:47:25 +0900989 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
Jan Kara3079c222018-02-26 13:01:38 +0100990 if (part && get_disk_and_module(part_to_disk(part))) {
Tejun Heobcce3de2008-08-25 19:47:22 +0900991 *partno = part->partno;
992 disk = part_to_disk(part);
993 }
Dan Williams4d66e5e2015-06-10 23:47:14 -0400994 spin_unlock_bh(&ext_devt_lock);
Tejun Heobcce3de2008-08-25 19:47:22 +0900995 }
996
Jan Kara56c09082018-02-26 13:01:41 +0100997 if (!disk)
998 return NULL;
999
1000 /*
1001 * Synchronize with del_gendisk() to not return disk that is being
1002 * destroyed.
1003 */
1004 down_read(&disk->lookup_sem);
1005 if (unlikely((disk->flags & GENHD_FL_HIDDEN) ||
1006 !(disk->flags & GENHD_FL_UP))) {
1007 up_read(&disk->lookup_sem);
Jan Kara9df6c292018-02-26 13:01:39 +01001008 put_disk_and_module(disk);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001009 disk = NULL;
Jan Kara56c09082018-02-26 13:01:41 +01001010 } else {
1011 up_read(&disk->lookup_sem);
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001012 }
Tejun Heobcce3de2008-08-25 19:47:22 +09001013 return disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
Tejun Heof331c022008-09-03 09:01:48 +02001016/**
1017 * bdget_disk - do bdget() by gendisk and partition number
1018 * @disk: gendisk of interest
1019 * @partno: partition number
1020 *
1021 * Find partition @partno from @disk, do bdget() on it.
1022 *
1023 * CONTEXT:
1024 * Don't care.
1025 *
1026 * RETURNS:
1027 * Resulting block_device on success, NULL on failure.
1028 */
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001029struct block_device *bdget_disk(struct gendisk *disk, int partno)
Tejun Heof331c022008-09-03 09:01:48 +02001030{
Tejun Heo548b10e2008-08-29 09:01:47 +02001031 struct hd_struct *part;
1032 struct block_device *bdev = NULL;
Tejun Heof331c022008-09-03 09:01:48 +02001033
Tejun Heo548b10e2008-08-29 09:01:47 +02001034 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001035 if (part)
Tejun Heo548b10e2008-08-29 09:01:47 +02001036 bdev = bdget(part_devt(part));
1037 disk_put_part(part);
Tejun Heof331c022008-09-03 09:01:48 +02001038
Tejun Heo548b10e2008-08-29 09:01:47 +02001039 return bdev;
Tejun Heof331c022008-09-03 09:01:48 +02001040}
1041EXPORT_SYMBOL(bdget_disk);
1042
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001043/*
1044 * print a full list of all partitions - intended for places where the root
1045 * filesystem can't be mounted and thus to give the victim some idea of what
1046 * went wrong
1047 */
1048void __init printk_all_partitions(void)
1049{
Tejun Heodef4e382008-09-03 08:57:12 +02001050 struct class_dev_iter iter;
1051 struct device *dev;
1052
1053 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1054 while ((dev = class_dev_iter_next(&iter))) {
1055 struct gendisk *disk = dev_to_disk(dev);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001056 struct disk_part_iter piter;
1057 struct hd_struct *part;
Tejun Heo1f014292008-08-25 19:47:23 +09001058 char name_buf[BDEVNAME_SIZE];
1059 char devt_buf[BDEVT_SIZE];
Tejun Heodef4e382008-09-03 08:57:12 +02001060
1061 /*
1062 * Don't show empty devices or things that have been
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001063 * suppressed
Tejun Heodef4e382008-09-03 08:57:12 +02001064 */
1065 if (get_capacity(disk) == 0 ||
1066 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
1067 continue;
1068
1069 /*
1070 * Note, unlike /proc/partitions, I am showing the
1071 * numbers in hex - the same format as the root=
1072 * option takes.
1073 */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001074 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
1075 while ((part = disk_part_iter_next(&piter))) {
1076 bool is_part0 = part == &disk->part0;
Tejun Heodef4e382008-09-03 08:57:12 +02001077
Will Drewryb5af9212010-08-31 15:47:07 -05001078 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
Tejun Heo1f014292008-08-25 19:47:23 +09001079 bdevt_str(part_devt(part), devt_buf),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001080 (unsigned long long)part_nr_sects_read(part) >> 1
1081 , disk_name(disk, part->partno, name_buf),
Stephen Warren1ad7e892012-11-08 16:12:25 -08001082 part->info ? part->info->uuid : "");
Tejun Heo074a7ac2008-08-25 19:56:14 +09001083 if (is_part0) {
Dan Williams52c44d92016-06-15 19:43:07 -07001084 if (dev->parent && dev->parent->driver)
Tejun Heo074a7ac2008-08-25 19:56:14 +09001085 printk(" driver: %s\n",
Dan Williams52c44d92016-06-15 19:43:07 -07001086 dev->parent->driver->name);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001087 else
1088 printk(" (driver?)\n");
1089 } else
1090 printk("\n");
1091 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001092 disk_part_iter_exit(&piter);
Tejun Heodef4e382008-09-03 08:57:12 +02001093 }
1094 class_dev_iter_exit(&iter);
Dave Gilbertdd2a3452007-05-09 02:33:24 -07001095}
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097#ifdef CONFIG_PROC_FS
1098/* iterator */
Tejun Heodef4e382008-09-03 08:57:12 +02001099static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001100{
Tejun Heodef4e382008-09-03 08:57:12 +02001101 loff_t skip = *pos;
1102 struct class_dev_iter *iter;
1103 struct device *dev;
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001104
Harvey Harrisonaeb3d3a2008-08-28 09:27:42 +02001105 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
Tejun Heodef4e382008-09-03 08:57:12 +02001106 if (!iter)
1107 return ERR_PTR(-ENOMEM);
1108
1109 seqf->private = iter;
1110 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
1111 do {
1112 dev = class_dev_iter_next(iter);
1113 if (!dev)
1114 return NULL;
1115 } while (skip--);
1116
1117 return dev_to_disk(dev);
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001118}
1119
Tejun Heodef4e382008-09-03 08:57:12 +02001120static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001122 struct device *dev;
Greg Kroah-Hartman66c64af2008-05-22 17:21:08 -04001123
Tejun Heodef4e382008-09-03 08:57:12 +02001124 (*pos)++;
1125 dev = class_dev_iter_next(seqf->private);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001126 if (dev)
Greg Kroah-Hartman68c4d4a2008-05-22 17:21:08 -04001127 return dev_to_disk(dev);
Tejun Heo2ac3cee2008-09-03 08:53:37 +02001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return NULL;
1130}
1131
Tejun Heodef4e382008-09-03 08:57:12 +02001132static void disk_seqf_stop(struct seq_file *seqf, void *v)
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001133{
Tejun Heodef4e382008-09-03 08:57:12 +02001134 struct class_dev_iter *iter = seqf->private;
Greg Kroah-Hartman27f30252008-05-22 17:21:08 -04001135
Tejun Heodef4e382008-09-03 08:57:12 +02001136 /* stop is called even after start failed :-( */
1137 if (iter) {
1138 class_dev_iter_exit(iter);
1139 kfree(iter);
Vegard Nossum77da1602016-07-29 10:40:31 +02001140 seqf->private = NULL;
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Tejun Heodef4e382008-09-03 08:57:12 +02001144static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Jianpeng Ma06768062012-08-03 10:42:00 +02001146 void *p;
Tejun Heodef4e382008-09-03 08:57:12 +02001147
1148 p = disk_seqf_start(seqf, pos);
Yang Zhangb9f985b2010-12-17 08:58:36 +01001149 if (!IS_ERR_OR_NULL(p) && !*pos)
Tejun Heodef4e382008-09-03 08:57:12 +02001150 seq_puts(seqf, "major minor #blocks name\n\n");
1151 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
Tejun Heocf771cb2008-09-03 09:01:09 +02001154static int show_partition(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 struct gendisk *sgp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001157 struct disk_part_iter piter;
1158 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 char buf[BDEVNAME_SIZE];
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /* Don't show non-partitionable removeable devices or empty devices */
Tejun Heod27769e2011-08-23 20:01:04 +02001162 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
Tejun Heof331c022008-09-03 09:01:48 +02001163 (sgp->flags & GENHD_FL_REMOVABLE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return 0;
1165 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
1166 return 0;
1167
1168 /* show the full disk and all non-0 size partitions of it */
Tejun Heo074a7ac2008-08-25 19:56:14 +09001169 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001170 while ((part = disk_part_iter_next(&piter)))
Tejun Heo1f014292008-08-25 19:47:23 +09001171 seq_printf(seqf, "%4d %7d %10llu %s\n",
Tejun Heof331c022008-09-03 09:01:48 +02001172 MAJOR(part_devt(part)), MINOR(part_devt(part)),
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001173 (unsigned long long)part_nr_sects_read(part) >> 1,
Tejun Heof331c022008-09-03 09:01:48 +02001174 disk_name(sgp, part->partno, buf));
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001175 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 return 0;
1178}
1179
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001180static const struct seq_operations partitions_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001181 .start = show_partition_start,
1182 .next = disk_seqf_next,
1183 .stop = disk_seqf_stop,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001184 .show = show_partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185};
1186#endif
1187
1188
Tejun Heocf771cb2008-09-03 09:01:09 +02001189static struct kobject *base_probe(dev_t devt, int *partno, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001191 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /* Make old-style 2.4 aliases work */
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001193 request_module("block-major-%d", MAJOR(devt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return NULL;
1195}
1196
1197static int __init genhd_device_init(void)
1198{
Dan Williamse105b8b2008-04-21 10:51:07 -07001199 int error;
1200
1201 block_class.dev_kobj = sysfs_dev_block_kobj;
1202 error = class_register(&block_class);
Roland McGrathee27a552008-03-11 17:13:15 -07001203 if (unlikely(error))
1204 return error;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001205 bdev_map = kobj_map_init(base_probe, &block_class_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 blk_dev_init();
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001207
Zhang, Yanmin561ec682008-11-14 08:26:30 +01001208 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
1209
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001210 /* create top-level block dir */
Andi Kleene52eec12010-09-08 16:54:17 +02001211 if (!sysfs_deprecated)
1212 block_depr = kobject_create_and_add("block", NULL);
Greg Kroah-Hartman830d3cf2007-11-06 10:36:58 -08001213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
1216subsys_initcall(genhd_device_init);
1217
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001218static ssize_t disk_range_show(struct device *dev,
1219 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001221 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001223 return sprintf(buf, "%d\n", disk->minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
Tejun Heo1f014292008-08-25 19:47:23 +09001226static ssize_t disk_ext_range_show(struct device *dev,
1227 struct device_attribute *attr, char *buf)
1228{
1229 struct gendisk *disk = dev_to_disk(dev);
1230
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001231 return sprintf(buf, "%d\n", disk_max_parts(disk));
Tejun Heo1f014292008-08-25 19:47:23 +09001232}
1233
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001234static ssize_t disk_removable_show(struct device *dev,
1235 struct device_attribute *attr, char *buf)
Kay Sieversa7fd6702005-10-01 14:49:43 +02001236{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001237 struct gendisk *disk = dev_to_disk(dev);
Kay Sieversa7fd6702005-10-01 14:49:43 +02001238
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001239 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001241}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001243static ssize_t disk_hidden_show(struct device *dev,
1244 struct device_attribute *attr, char *buf)
1245{
1246 struct gendisk *disk = dev_to_disk(dev);
1247
1248 return sprintf(buf, "%d\n",
1249 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
1250}
1251
Kay Sievers1c9ce522008-06-13 09:41:00 +02001252static ssize_t disk_ro_show(struct device *dev,
1253 struct device_attribute *attr, char *buf)
1254{
1255 struct gendisk *disk = dev_to_disk(dev);
1256
Tejun Heob7db9952008-08-25 19:56:10 +09001257 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
Kay Sievers1c9ce522008-06-13 09:41:00 +02001258}
1259
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001260ssize_t part_size_show(struct device *dev,
1261 struct device_attribute *attr, char *buf)
1262{
1263 struct hd_struct *p = dev_to_part(dev);
1264
1265 return sprintf(buf, "%llu\n",
1266 (unsigned long long)part_nr_sects_read(p));
1267}
1268
1269ssize_t part_stat_show(struct device *dev,
1270 struct device_attribute *attr, char *buf)
1271{
1272 struct hd_struct *p = dev_to_part(dev);
1273 struct request_queue *q = part_to_disk(p)->queue;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001274 struct disk_stats stat;
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001275 unsigned int inflight;
1276
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001277 part_stat_read_all(p, &stat);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001278 if (queue_is_mq(q))
1279 inflight = blk_mq_in_flight(q, p);
1280 else
1281 inflight = part_in_flight(q, p);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001282
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001283 return sprintf(buf,
1284 "%8lu %8lu %8llu %8u "
1285 "%8lu %8lu %8llu %8u "
1286 "%8u %8u %8u "
1287 "%8lu %8lu %8llu %8u "
1288 "%8lu %8u"
1289 "\n",
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001290 stat.ios[STAT_READ],
1291 stat.merges[STAT_READ],
1292 (unsigned long long)stat.sectors[STAT_READ],
1293 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
1294 stat.ios[STAT_WRITE],
1295 stat.merges[STAT_WRITE],
1296 (unsigned long long)stat.sectors[STAT_WRITE],
1297 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001298 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001299 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001300 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1301 stat.nsecs[STAT_WRITE] +
1302 stat.nsecs[STAT_DISCARD] +
1303 stat.nsecs[STAT_FLUSH],
1304 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001305 stat.ios[STAT_DISCARD],
1306 stat.merges[STAT_DISCARD],
1307 (unsigned long long)stat.sectors[STAT_DISCARD],
1308 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
1309 stat.ios[STAT_FLUSH],
1310 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001311}
1312
1313ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
1314 char *buf)
1315{
1316 struct hd_struct *p = dev_to_part(dev);
1317 struct request_queue *q = part_to_disk(p)->queue;
1318 unsigned int inflight[2];
1319
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001320 if (queue_is_mq(q))
1321 blk_mq_in_flight_rw(q, p, inflight);
1322 else
1323 part_in_flight_rw(q, p, inflight);
1324
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001325 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
1326}
1327
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001328static ssize_t disk_capability_show(struct device *dev,
1329 struct device_attribute *attr, char *buf)
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001330{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001331 struct gendisk *disk = dev_to_disk(dev);
1332
1333 return sprintf(buf, "%x\n", disk->flags);
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -07001334}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001335
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001336static ssize_t disk_alignment_offset_show(struct device *dev,
1337 struct device_attribute *attr,
1338 char *buf)
1339{
1340 struct gendisk *disk = dev_to_disk(dev);
1341
1342 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
1343}
1344
Martin K. Petersen86b37282009-11-10 11:50:21 +01001345static ssize_t disk_discard_alignment_show(struct device *dev,
1346 struct device_attribute *attr,
1347 char *buf)
1348{
1349 struct gendisk *disk = dev_to_disk(dev);
1350
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001351 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
Martin K. Petersen86b37282009-11-10 11:50:21 +01001352}
1353
Joe Perches5657a812018-05-24 13:38:59 -06001354static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
1355static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
1356static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1357static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1358static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1359static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1360static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1361static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1362static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1363static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1364static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1365static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001366
Akinobu Mitac17bb492006-12-08 02:39:46 -08001367#ifdef CONFIG_FAIL_MAKE_REQUEST
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001368ssize_t part_fail_show(struct device *dev,
1369 struct device_attribute *attr, char *buf)
1370{
1371 struct hd_struct *p = dev_to_part(dev);
1372
1373 return sprintf(buf, "%d\n", p->make_it_fail);
1374}
1375
1376ssize_t part_fail_store(struct device *dev,
1377 struct device_attribute *attr,
1378 const char *buf, size_t count)
1379{
1380 struct hd_struct *p = dev_to_part(dev);
1381 int i;
1382
1383 if (count > 0 && sscanf(buf, "%d", &i) > 0)
1384 p->make_it_fail = (i == 0) ? 0 : 1;
1385
1386 return count;
1387}
1388
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001389static struct device_attribute dev_attr_fail =
Joe Perches5657a812018-05-24 13:38:59 -06001390 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +01001391#endif /* CONFIG_FAIL_MAKE_REQUEST */
1392
Jens Axboe581d4e22008-09-14 05:56:33 -07001393#ifdef CONFIG_FAIL_IO_TIMEOUT
1394static struct device_attribute dev_attr_fail_timeout =
Joe Perches5657a812018-05-24 13:38:59 -06001395 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
Jens Axboe581d4e22008-09-14 05:56:33 -07001396#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001397
1398static struct attribute *disk_attrs[] = {
1399 &dev_attr_range.attr,
Tejun Heo1f014292008-08-25 19:47:23 +09001400 &dev_attr_ext_range.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001401 &dev_attr_removable.attr,
Christoph Hellwig8ddcd652017-11-02 21:29:53 +03001402 &dev_attr_hidden.attr,
Kay Sievers1c9ce522008-06-13 09:41:00 +02001403 &dev_attr_ro.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001404 &dev_attr_size.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001405 &dev_attr_alignment_offset.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +01001406 &dev_attr_discard_alignment.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001407 &dev_attr_capability.attr,
1408 &dev_attr_stat.attr,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001409 &dev_attr_inflight.attr,
Vishal Verma99e66082016-01-09 08:36:51 -08001410 &dev_attr_badblocks.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001411#ifdef CONFIG_FAIL_MAKE_REQUEST
1412 &dev_attr_fail.attr,
1413#endif
Jens Axboe581d4e22008-09-14 05:56:33 -07001414#ifdef CONFIG_FAIL_IO_TIMEOUT
1415 &dev_attr_fail_timeout.attr,
1416#endif
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001417 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418};
1419
Dan Williams9438b3e02017-04-27 14:46:26 -07001420static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1421{
1422 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1423 struct gendisk *disk = dev_to_disk(dev);
1424
1425 if (a == &dev_attr_badblocks.attr && !disk->bb)
1426 return 0;
1427 return a->mode;
1428}
1429
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001430static struct attribute_group disk_attr_group = {
1431 .attrs = disk_attrs,
Dan Williams9438b3e02017-04-27 14:46:26 -07001432 .is_visible = disk_visible,
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001433};
1434
David Brownella4dbd672009-06-24 10:06:31 -07001435static const struct attribute_group *disk_attr_groups[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001436 &disk_attr_group,
1437 NULL
1438};
1439
Tejun Heo540eed52008-08-25 19:56:15 +09001440/**
1441 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1442 * @disk: disk to replace part_tbl for
1443 * @new_ptbl: new part_tbl to install
1444 *
1445 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1446 * original ptbl is freed using RCU callback.
1447 *
1448 * LOCKING:
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001449 * Matching bd_mutex locked or the caller is the only user of @disk.
Tejun Heo540eed52008-08-25 19:56:15 +09001450 */
1451static void disk_replace_part_tbl(struct gendisk *disk,
1452 struct disk_part_tbl *new_ptbl)
1453{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001454 struct disk_part_tbl *old_ptbl =
1455 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001456
1457 rcu_assign_pointer(disk->part_tbl, new_ptbl);
Jens Axboea6f23652008-10-24 12:52:42 +02001458
1459 if (old_ptbl) {
1460 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
Lai Jiangshan57bdfbf2011-03-18 11:42:58 +08001461 kfree_rcu(old_ptbl, rcu_head);
Jens Axboea6f23652008-10-24 12:52:42 +02001462 }
Tejun Heo540eed52008-08-25 19:56:15 +09001463}
1464
1465/**
1466 * disk_expand_part_tbl - expand disk->part_tbl
1467 * @disk: disk to expand part_tbl for
1468 * @partno: expand such that this partno can fit in
1469 *
1470 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1471 * uses RCU to allow unlocked dereferencing for stats and other stuff.
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.
1475 * Might sleep.
Tejun Heo540eed52008-08-25 19:56:15 +09001476 *
1477 * RETURNS:
1478 * 0 on success, -errno on failure.
1479 */
1480int disk_expand_part_tbl(struct gendisk *disk, int partno)
1481{
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001482 struct disk_part_tbl *old_ptbl =
1483 rcu_dereference_protected(disk->part_tbl, 1);
Tejun Heo540eed52008-08-25 19:56:15 +09001484 struct disk_part_tbl *new_ptbl;
1485 int len = old_ptbl ? old_ptbl->len : 0;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001486 int i, target;
Jens Axboe5fabcb42014-11-19 13:06:22 -07001487
1488 /*
1489 * check for int overflow, since we can get here from blkpg_ioctl()
1490 * with a user passed 'partno'.
1491 */
1492 target = partno + 1;
1493 if (target < 0)
1494 return -EINVAL;
Tejun Heo540eed52008-08-25 19:56:15 +09001495
1496 /* disk_max_parts() is zero during initialization, ignore if so */
1497 if (disk_max_parts(disk) && target > disk_max_parts(disk))
1498 return -EINVAL;
1499
1500 if (target <= len)
1501 return 0;
1502
Gustavo A. R. Silva78b90a22019-05-31 13:47:54 -05001503 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1504 disk->node_id);
Tejun Heo540eed52008-08-25 19:56:15 +09001505 if (!new_ptbl)
1506 return -ENOMEM;
1507
Tejun Heo540eed52008-08-25 19:56:15 +09001508 new_ptbl->len = target;
1509
1510 for (i = 0; i < len; i++)
1511 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1512
1513 disk_replace_part_tbl(disk, new_ptbl);
1514 return 0;
1515}
1516
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001517static void disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001519 struct gendisk *disk = dev_to_disk(dev);
1520
Keith Busch2da78092014-08-26 09:05:36 -06001521 blk_free_devt(dev->devt);
Tejun Heo77ea8872010-12-08 20:57:37 +01001522 disk_release_events(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 kfree(disk->random);
Tejun Heo540eed52008-08-25 19:56:15 +09001524 disk_replace_part_tbl(disk, NULL);
Ming Leib54e5ed2015-07-16 11:16:44 +08001525 hd_free_part(&disk->part0);
Tejun Heo523e1d32011-10-19 14:31:07 +02001526 if (disk->queue)
1527 blk_put_queue(disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 kfree(disk);
1529}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001530struct class block_class = {
1531 .name = "block",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532};
1533
Kay Sievers3c2670e2013-04-06 09:56:00 -07001534static char *block_devnode(struct device *dev, umode_t *mode,
Greg Kroah-Hartman4e4098a2013-04-11 11:43:29 -07001535 kuid_t *uid, kgid_t *gid)
Kay Sieversb03f38b2009-04-30 15:23:42 +02001536{
1537 struct gendisk *disk = dev_to_disk(dev);
1538
Christoph Hellwig348e1142020-03-27 09:07:17 +01001539 if (disk->fops->devnode)
1540 return disk->fops->devnode(disk, mode);
Kay Sieversb03f38b2009-04-30 15:23:42 +02001541 return NULL;
1542}
1543
Bart Van Asscheedf8ff52017-06-20 11:15:48 -07001544static const struct device_type disk_type = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001545 .name = "disk",
1546 .groups = disk_attr_groups,
1547 .release = disk_release,
Kay Sieverse454cea2009-09-18 23:01:12 +02001548 .devnode = block_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549};
1550
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001551#ifdef CONFIG_PROC_FS
Tejun Heocf771cb2008-09-03 09:01:09 +02001552/*
1553 * aggregate disk stat collector. Uses the same stats that the sysfs
1554 * entries do, above, but makes them available through one seq_file.
1555 *
1556 * The output looks suspiciously like /proc/partitions with a bunch of
1557 * extra fields.
1558 */
1559static int diskstats_show(struct seq_file *seqf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 struct gendisk *gp = v;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001562 struct disk_part_iter piter;
1563 struct hd_struct *hd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 char buf[BDEVNAME_SIZE];
Mikulas Patockae016b782018-12-06 11:41:21 -05001565 unsigned int inflight;
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001566 struct disk_stats stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 /*
Tejun Heoed9e1982008-08-25 19:56:05 +09001569 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
Tejun Heocf771cb2008-09-03 09:01:09 +02001570 seq_puts(seqf, "major minor name"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 " rio rmerge rsect ruse wio wmerge "
1572 "wsect wuse running use aveq"
1573 "\n\n");
1574 */
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001575
Tejun Heo71982a42009-04-17 08:34:48 +02001576 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001577 while ((hd = disk_part_iter_next(&piter))) {
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001578 part_stat_read_all(hd, &stat);
Christoph Hellwigb2f609e2020-05-13 12:49:33 +02001579 if (queue_is_mq(gp->queue))
1580 inflight = blk_mq_in_flight(gp->queue, hd);
1581 else
1582 inflight = part_in_flight(gp->queue, hd);
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001583
Michael Callahanbdca3c82018-07-18 04:47:40 -07001584 seq_printf(seqf, "%4d %7d %s "
1585 "%lu %lu %lu %u "
1586 "%lu %lu %lu %u "
1587 "%u %u %u "
Konstantin Khlebnikovb6866312019-11-21 13:40:26 +03001588 "%lu %lu %lu %u "
1589 "%lu %u"
1590 "\n",
Tejun Heof331c022008-09-03 09:01:48 +02001591 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1592 disk_name(gp, hd->partno, buf),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001593 stat.ios[STAT_READ],
1594 stat.merges[STAT_READ],
1595 stat.sectors[STAT_READ],
1596 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1597 NSEC_PER_MSEC),
1598 stat.ios[STAT_WRITE],
1599 stat.merges[STAT_WRITE],
1600 stat.sectors[STAT_WRITE],
1601 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1602 NSEC_PER_MSEC),
Mikulas Patockae016b782018-12-06 11:41:21 -05001603 inflight,
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001604 jiffies_to_msecs(stat.io_ticks),
Konstantin Khlebnikov8cd5b8f2020-03-25 16:07:08 +03001605 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1606 stat.nsecs[STAT_WRITE] +
1607 stat.nsecs[STAT_DISCARD] +
1608 stat.nsecs[STAT_FLUSH],
1609 NSEC_PER_MSEC),
Konstantin Khlebnikovea18e0f2020-03-25 16:07:06 +03001610 stat.ios[STAT_DISCARD],
1611 stat.merges[STAT_DISCARD],
1612 stat.sectors[STAT_DISCARD],
1613 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1614 NSEC_PER_MSEC),
1615 stat.ios[STAT_FLUSH],
1616 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1617 NSEC_PER_MSEC)
Jerome Marchand28f39d52008-02-08 11:04:56 +01001618 );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001620 disk_part_iter_exit(&piter);
Wanlong Gao9f5e4862011-06-13 10:45:43 +02001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return 0;
1623}
1624
Alexey Dobriyan31d85ab2008-10-06 12:55:38 +04001625static const struct seq_operations diskstats_op = {
Tejun Heodef4e382008-09-03 08:57:12 +02001626 .start = disk_seqf_start,
1627 .next = disk_seqf_next,
1628 .stop = disk_seqf_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 .show = diskstats_show
1630};
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001631
1632static int __init proc_genhd_init(void)
1633{
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001634 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1635 proc_create_seq("partitions", 0, NULL, &partitions_op);
Alexey Dobriyanf5009752008-10-04 23:53:21 +04001636 return 0;
1637}
1638module_init(proc_genhd_init);
Randy Dunlapa6e2ba82008-05-23 09:44:11 -07001639#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Tejun Heocf771cb2008-09-03 09:01:09 +02001641dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001642{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001643 dev_t devt = MKDEV(0, 0);
Tejun Heodef4e382008-09-03 08:57:12 +02001644 struct class_dev_iter iter;
1645 struct device *dev;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001646
Tejun Heodef4e382008-09-03 08:57:12 +02001647 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1648 while ((dev = class_dev_iter_next(&iter))) {
1649 struct gendisk *disk = dev_to_disk(dev);
Tejun Heo548b10e2008-08-29 09:01:47 +02001650 struct hd_struct *part;
Tejun Heodef4e382008-09-03 08:57:12 +02001651
Kay Sievers3ada8b72009-01-06 10:44:43 -08001652 if (strcmp(dev_name(dev), name))
Tejun Heof331c022008-09-03 09:01:48 +02001653 continue;
Tejun Heof331c022008-09-03 09:01:48 +02001654
Neil Brown41b8c852009-02-18 10:33:59 +01001655 if (partno < disk->minors) {
1656 /* We need to return the right devno, even
1657 * if the partition doesn't exist yet.
1658 */
1659 devt = MKDEV(MAJOR(dev->devt),
1660 MINOR(dev->devt) + partno);
1661 break;
1662 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001663 part = disk_get_part(disk, partno);
Tejun Heo2bbedcb2008-08-29 11:41:51 +02001664 if (part) {
Tejun Heof331c022008-09-03 09:01:48 +02001665 devt = part_devt(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001666 disk_put_part(part);
Tejun Heo548b10e2008-08-29 09:01:47 +02001667 break;
Tejun Heodef4e382008-09-03 08:57:12 +02001668 }
Tejun Heo548b10e2008-08-29 09:01:47 +02001669 disk_put_part(part);
Kay Sievers5c0ef6d2008-08-16 14:30:30 +02001670 }
Tejun Heodef4e382008-09-03 08:57:12 +02001671 class_dev_iter_exit(&iter);
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001672 return devt;
1673}
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001674
Byungchul Parke319e1f2017-10-25 17:56:05 +09001675struct gendisk *__alloc_disk_node(int minors, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001676{
1677 struct gendisk *disk;
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001678 struct disk_part_tbl *ptbl;
Christoph Lameter19460892005-06-23 00:08:19 -07001679
Christoph Hellwigde65b012017-08-23 19:10:29 +02001680 if (minors > DISK_MAX_PARTS) {
1681 printk(KERN_ERR
Randy Dunlap7fb52622017-11-18 17:43:38 -08001682 "block: can't allocate more than %d partitions\n",
Christoph Hellwigde65b012017-08-23 19:10:29 +02001683 DISK_MAX_PARTS);
1684 minors = DISK_MAX_PARTS;
1685 }
Christoph Lameter19460892005-06-23 00:08:19 -07001686
Joe Perchesc1b511e2013-08-29 15:21:42 -07001687 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (disk) {
Christoph Hellwig58d4f142020-05-27 07:24:14 +02001689 disk->part0.dkstats = alloc_percpu(struct disk_stats);
1690 if (!disk->part0.dkstats) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 kfree(disk);
1692 return NULL;
1693 }
Jan Kara56c09082018-02-26 13:01:41 +01001694 init_rwsem(&disk->lookup_sem);
Cheng Renquanbf91db12008-11-20 08:37:37 +01001695 disk->node_id = node_id;
Tejun Heo540eed52008-08-25 19:56:15 +09001696 if (disk_expand_part_tbl(disk, 0)) {
Christoph Hellwig58d4f142020-05-27 07:24:14 +02001697 free_percpu(disk->part0.dkstats);
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001698 kfree(disk);
1699 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
Bart Van Assche6d2cf6f2017-08-17 16:23:06 -07001701 ptbl = rcu_dereference_protected(disk->part_tbl, 1);
1702 rcu_assign_pointer(ptbl->part[0], &disk->part0);
Jens Axboe6c23a962011-01-07 08:43:37 +01001703
Vivek Goyalc83f6bf2012-08-01 12:24:18 +02001704 /*
1705 * set_capacity() and get_capacity() currently don't use
1706 * seqcounter to read/update the part0->nr_sects. Still init
1707 * the counter as we can read the sectors in IO submission
1708 * patch using seqence counters.
1709 *
1710 * TODO: Ideally set_capacity() and get_capacity() should be
1711 * converted to make use of bd_mutex and sequence counters.
1712 */
Ming Lei07c4e1e2020-05-08 16:17:56 +08001713 hd_sects_seq_init(&disk->part0);
Ming Lei6c710132015-07-16 11:16:45 +08001714 if (hd_ref_init(&disk->part0)) {
1715 hd_free_part(&disk->part0);
1716 kfree(disk);
1717 return NULL;
1718 }
Tejun Heob5d0b9d2008-09-03 09:06:42 +02001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 disk->minors = minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 rand_initialize_disk(disk);
Tejun Heoed9e1982008-08-25 19:56:05 +09001722 disk_to_dev(disk)->class = &block_class;
1723 disk_to_dev(disk)->type = &disk_type;
1724 device_initialize(disk_to_dev(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 return disk;
1727}
Byungchul Parke319e1f2017-10-25 17:56:05 +09001728EXPORT_SYMBOL(__alloc_disk_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Jan Kara3079c222018-02-26 13:01:38 +01001730struct kobject *get_disk_and_module(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
1732 struct module *owner;
1733 struct kobject *kobj;
1734
1735 if (!disk->fops)
1736 return NULL;
1737 owner = disk->fops->owner;
1738 if (owner && !try_module_get(owner))
1739 return NULL;
Jan Karad01b2dc2017-03-23 01:37:02 +01001740 kobj = kobject_get_unless_zero(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (kobj == NULL) {
1742 module_put(owner);
1743 return NULL;
1744 }
1745 return kobj;
1746
1747}
Jan Kara3079c222018-02-26 13:01:38 +01001748EXPORT_SYMBOL(get_disk_and_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750void put_disk(struct gendisk *disk)
1751{
1752 if (disk)
Tejun Heoed9e1982008-08-25 19:56:05 +09001753 kobject_put(&disk_to_dev(disk)->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755EXPORT_SYMBOL(put_disk);
1756
Jan Kara9df6c292018-02-26 13:01:39 +01001757/*
1758 * This is a counterpart of get_disk_and_module() and thus also of
1759 * get_gendisk().
1760 */
1761void put_disk_and_module(struct gendisk *disk)
1762{
1763 if (disk) {
1764 struct module *owner = disk->fops->owner;
1765
1766 put_disk(disk);
1767 module_put(owner);
1768 }
1769}
1770EXPORT_SYMBOL(put_disk_and_module);
1771
Hannes Reineckee3264a42009-07-28 09:13:13 +02001772static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1773{
1774 char event[] = "DISK_RO=1";
1775 char *envp[] = { event, NULL };
1776
1777 if (!ro)
1778 event[8] = '0';
1779 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1780}
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782void set_device_ro(struct block_device *bdev, int flag)
1783{
Tejun Heob7db9952008-08-25 19:56:10 +09001784 bdev->bd_part->policy = flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
1787EXPORT_SYMBOL(set_device_ro);
1788
1789void set_disk_ro(struct gendisk *disk, int flag)
1790{
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001791 struct disk_part_iter piter;
1792 struct hd_struct *part;
1793
Hannes Reineckee3264a42009-07-28 09:13:13 +02001794 if (disk->part0.policy != flag) {
1795 set_disk_ro_uevent(disk, flag);
1796 disk->part0.policy = flag;
1797 }
1798
1799 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001800 while ((part = disk_part_iter_next(&piter)))
1801 part->policy = flag;
1802 disk_part_iter_exit(&piter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
1805EXPORT_SYMBOL(set_disk_ro);
1806
1807int bdev_read_only(struct block_device *bdev)
1808{
1809 if (!bdev)
1810 return 0;
Tejun Heob7db9952008-08-25 19:56:10 +09001811 return bdev->bd_part->policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
1814EXPORT_SYMBOL(bdev_read_only);
1815
Tejun Heo77ea8872010-12-08 20:57:37 +01001816/*
1817 * Disk events - monitor disk events like media change and eject request.
1818 */
1819struct disk_events {
1820 struct list_head node; /* all disk_event's */
1821 struct gendisk *disk; /* the associated disk */
1822 spinlock_t lock;
1823
Tejun Heofdd514e2011-06-09 20:43:59 +02001824 struct mutex block_mutex; /* protects blocking */
Tejun Heo77ea8872010-12-08 20:57:37 +01001825 int block; /* event blocking depth */
1826 unsigned int pending; /* events already sent out */
1827 unsigned int clearing; /* events being cleared */
1828
1829 long poll_msecs; /* interval, -1 for default */
1830 struct delayed_work dwork;
1831};
1832
1833static const char *disk_events_strs[] = {
1834 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "media_change",
1835 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "eject_request",
1836};
1837
1838static char *disk_uevents[] = {
1839 [ilog2(DISK_EVENT_MEDIA_CHANGE)] = "DISK_MEDIA_CHANGE=1",
1840 [ilog2(DISK_EVENT_EJECT_REQUEST)] = "DISK_EJECT_REQUEST=1",
1841};
1842
1843/* list of all disk_events */
1844static DEFINE_MUTEX(disk_events_mutex);
1845static LIST_HEAD(disk_events);
1846
1847/* disable in-kernel polling by default */
Wei Tang1fe8f342015-11-24 09:58:46 +08001848static unsigned long disk_events_dfl_poll_msecs;
Tejun Heo77ea8872010-12-08 20:57:37 +01001849
1850static unsigned long disk_events_poll_jiffies(struct gendisk *disk)
1851{
1852 struct disk_events *ev = disk->ev;
1853 long intv_msecs = 0;
1854
1855 /*
1856 * If device-specific poll interval is set, always use it. If
Martin Wilck673387a2019-03-27 14:51:01 +01001857 * the default is being used, poll if the POLL flag is set.
Tejun Heo77ea8872010-12-08 20:57:37 +01001858 */
1859 if (ev->poll_msecs >= 0)
1860 intv_msecs = ev->poll_msecs;
Martin Wilckc92e2f02019-03-27 14:51:02 +01001861 else if (disk->event_flags & DISK_EVENT_FLAG_POLL)
Tejun Heo77ea8872010-12-08 20:57:37 +01001862 intv_msecs = disk_events_dfl_poll_msecs;
1863
1864 return msecs_to_jiffies(intv_msecs);
1865}
1866
Tejun Heoc3af54a2011-06-09 20:43:55 +02001867/**
1868 * disk_block_events - block and flush disk event checking
1869 * @disk: disk to block events for
1870 *
1871 * On return from this function, it is guaranteed that event checking
1872 * isn't in progress and won't happen until unblocked by
1873 * disk_unblock_events(). Events blocking is counted and the actual
1874 * unblocking happens after the matching number of unblocks are done.
1875 *
1876 * Note that this intentionally does not block event checking from
1877 * disk_clear_events().
1878 *
1879 * CONTEXT:
1880 * Might sleep.
1881 */
1882void disk_block_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01001883{
1884 struct disk_events *ev = disk->ev;
1885 unsigned long flags;
1886 bool cancel;
1887
Tejun Heoc3af54a2011-06-09 20:43:55 +02001888 if (!ev)
1889 return;
1890
Tejun Heofdd514e2011-06-09 20:43:59 +02001891 /*
1892 * Outer mutex ensures that the first blocker completes canceling
1893 * the event work before further blockers are allowed to finish.
1894 */
1895 mutex_lock(&ev->block_mutex);
1896
Tejun Heo77ea8872010-12-08 20:57:37 +01001897 spin_lock_irqsave(&ev->lock, flags);
1898 cancel = !ev->block++;
1899 spin_unlock_irqrestore(&ev->lock, flags);
1900
Tejun Heoc3af54a2011-06-09 20:43:55 +02001901 if (cancel)
1902 cancel_delayed_work_sync(&disk->ev->dwork);
Tejun Heofdd514e2011-06-09 20:43:59 +02001903
1904 mutex_unlock(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01001905}
1906
1907static void __disk_unblock_events(struct gendisk *disk, bool check_now)
1908{
1909 struct disk_events *ev = disk->ev;
1910 unsigned long intv;
1911 unsigned long flags;
1912
1913 spin_lock_irqsave(&ev->lock, flags);
1914
1915 if (WARN_ON_ONCE(ev->block <= 0))
1916 goto out_unlock;
1917
1918 if (--ev->block)
1919 goto out_unlock;
1920
Tejun Heo77ea8872010-12-08 20:57:37 +01001921 intv = disk_events_poll_jiffies(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01001922 if (check_now)
Viresh Kumar695588f2013-04-24 17:12:56 +05301923 queue_delayed_work(system_freezable_power_efficient_wq,
1924 &ev->dwork, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01001925 else if (intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05301926 queue_delayed_work(system_freezable_power_efficient_wq,
1927 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01001928out_unlock:
1929 spin_unlock_irqrestore(&ev->lock, flags);
1930}
1931
1932/**
Tejun Heo77ea8872010-12-08 20:57:37 +01001933 * disk_unblock_events - unblock disk event checking
1934 * @disk: disk to unblock events for
1935 *
1936 * Undo disk_block_events(). When the block count reaches zero, it
1937 * starts events polling if configured.
1938 *
1939 * CONTEXT:
1940 * Don't care. Safe to call from irq context.
1941 */
1942void disk_unblock_events(struct gendisk *disk)
1943{
1944 if (disk->ev)
Tejun Heofacc31d2011-03-09 19:54:27 +01001945 __disk_unblock_events(disk, false);
Tejun Heo77ea8872010-12-08 20:57:37 +01001946}
1947
1948/**
Tejun Heo85ef06d2011-07-01 16:17:47 +02001949 * disk_flush_events - schedule immediate event checking and flushing
1950 * @disk: disk to check and flush events for
1951 * @mask: events to flush
Tejun Heo77ea8872010-12-08 20:57:37 +01001952 *
Tejun Heo85ef06d2011-07-01 16:17:47 +02001953 * Schedule immediate event checking on @disk if not blocked. Events in
1954 * @mask are scheduled to be cleared from the driver. Note that this
1955 * doesn't clear the events from @disk->ev.
Tejun Heo77ea8872010-12-08 20:57:37 +01001956 *
1957 * CONTEXT:
Tejun Heo85ef06d2011-07-01 16:17:47 +02001958 * If @mask is non-zero must be called with bdev->bd_mutex held.
Tejun Heo77ea8872010-12-08 20:57:37 +01001959 */
Tejun Heo85ef06d2011-07-01 16:17:47 +02001960void disk_flush_events(struct gendisk *disk, unsigned int mask)
Tejun Heo77ea8872010-12-08 20:57:37 +01001961{
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001962 struct disk_events *ev = disk->ev;
Tejun Heoa9dce2a2011-06-09 20:43:54 +02001963
1964 if (!ev)
1965 return;
1966
Tejun Heo85ef06d2011-07-01 16:17:47 +02001967 spin_lock_irq(&ev->lock);
1968 ev->clearing |= mask;
Tejun Heo41f63c52012-08-03 10:30:47 -07001969 if (!ev->block)
Viresh Kumar695588f2013-04-24 17:12:56 +05301970 mod_delayed_work(system_freezable_power_efficient_wq,
1971 &ev->dwork, 0);
Tejun Heo85ef06d2011-07-01 16:17:47 +02001972 spin_unlock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01001973}
Tejun Heo77ea8872010-12-08 20:57:37 +01001974
1975/**
1976 * disk_clear_events - synchronously check, clear and return pending events
1977 * @disk: disk to fetch and clear events from
Masanari Iidada3dae52014-09-09 01:27:23 +09001978 * @mask: mask of events to be fetched and cleared
Tejun Heo77ea8872010-12-08 20:57:37 +01001979 *
1980 * Disk events are synchronously checked and pending events in @mask
1981 * are cleared and returned. This ignores the block count.
1982 *
1983 * CONTEXT:
1984 * Might sleep.
1985 */
1986unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask)
1987{
1988 const struct block_device_operations *bdops = disk->fops;
1989 struct disk_events *ev = disk->ev;
1990 unsigned int pending;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08001991 unsigned int clearing = mask;
Tejun Heo77ea8872010-12-08 20:57:37 +01001992
1993 if (!ev) {
1994 /* for drivers still using the old ->media_changed method */
1995 if ((mask & DISK_EVENT_MEDIA_CHANGE) &&
1996 bdops->media_changed && bdops->media_changed(disk))
1997 return DISK_EVENT_MEDIA_CHANGE;
1998 return 0;
1999 }
2000
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002001 disk_block_events(disk);
2002
2003 /*
2004 * store the union of mask and ev->clearing on the stack so that the
2005 * race with disk_flush_events does not cause ambiguity (ev->clearing
2006 * can still be modified even if events are blocked).
2007 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002008 spin_lock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002009 clearing |= ev->clearing;
2010 ev->clearing = 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002011 spin_unlock_irq(&ev->lock);
2012
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002013 disk_check_events(ev, &clearing);
Derek Basehoreaea24a82012-12-18 12:27:18 -08002014 /*
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002015 * if ev->clearing is not 0, the disk_flush_events got called in the
2016 * middle of this function, so we want to run the workfn without delay.
Derek Basehoreaea24a82012-12-18 12:27:18 -08002017 */
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002018 __disk_unblock_events(disk, ev->clearing ? true : false);
Tejun Heo77ea8872010-12-08 20:57:37 +01002019
2020 /* then, fetch and clear pending events */
2021 spin_lock_irq(&ev->lock);
Tejun Heo77ea8872010-12-08 20:57:37 +01002022 pending = ev->pending & mask;
2023 ev->pending &= ~mask;
2024 spin_unlock_irq(&ev->lock);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002025 WARN_ON_ONCE(clearing & mask);
Tejun Heo77ea8872010-12-08 20:57:37 +01002026
2027 return pending;
2028}
2029
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002030/*
2031 * Separate this part out so that a different pointer for clearing_ptr can be
2032 * passed in for disk_clear_events.
2033 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002034static void disk_events_workfn(struct work_struct *work)
2035{
2036 struct delayed_work *dwork = to_delayed_work(work);
2037 struct disk_events *ev = container_of(dwork, struct disk_events, dwork);
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002038
2039 disk_check_events(ev, &ev->clearing);
2040}
2041
2042static void disk_check_events(struct disk_events *ev,
2043 unsigned int *clearing_ptr)
2044{
Tejun Heo77ea8872010-12-08 20:57:37 +01002045 struct gendisk *disk = ev->disk;
2046 char *envp[ARRAY_SIZE(disk_uevents) + 1] = { };
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002047 unsigned int clearing = *clearing_ptr;
Tejun Heo77ea8872010-12-08 20:57:37 +01002048 unsigned int events;
2049 unsigned long intv;
2050 int nr_events = 0, i;
2051
2052 /* check events */
2053 events = disk->fops->check_events(disk, clearing);
2054
2055 /* accumulate pending events and schedule next poll if necessary */
2056 spin_lock_irq(&ev->lock);
2057
2058 events &= ~ev->pending;
2059 ev->pending |= events;
Derek Basehore12c2bdb2012-12-18 12:27:20 -08002060 *clearing_ptr &= ~clearing;
Tejun Heo77ea8872010-12-08 20:57:37 +01002061
2062 intv = disk_events_poll_jiffies(disk);
2063 if (!ev->block && intv)
Viresh Kumar695588f2013-04-24 17:12:56 +05302064 queue_delayed_work(system_freezable_power_efficient_wq,
2065 &ev->dwork, intv);
Tejun Heo77ea8872010-12-08 20:57:37 +01002066
2067 spin_unlock_irq(&ev->lock);
2068
Tejun Heo7c88a162011-04-21 19:43:58 +02002069 /*
2070 * Tell userland about new events. Only the events listed in
Martin Wilckc92e2f02019-03-27 14:51:02 +01002071 * @disk->events are reported, and only if DISK_EVENT_FLAG_UEVENT
2072 * is set. Otherwise, events are processed internally but never
2073 * get reported to userland.
Tejun Heo7c88a162011-04-21 19:43:58 +02002074 */
Tejun Heo77ea8872010-12-08 20:57:37 +01002075 for (i = 0; i < ARRAY_SIZE(disk_uevents); i++)
Martin Wilckc92e2f02019-03-27 14:51:02 +01002076 if ((events & disk->events & (1 << i)) &&
2077 (disk->event_flags & DISK_EVENT_FLAG_UEVENT))
Tejun Heo77ea8872010-12-08 20:57:37 +01002078 envp[nr_events++] = disk_uevents[i];
2079
2080 if (nr_events)
2081 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
2082}
2083
2084/*
2085 * A disk events enabled device has the following sysfs nodes under
2086 * its /sys/block/X/ directory.
2087 *
2088 * events : list of all supported events
2089 * events_async : list of events which can be detected w/o polling
Martin Wilck673387a2019-03-27 14:51:01 +01002090 * (always empty, only for backwards compatibility)
Tejun Heo77ea8872010-12-08 20:57:37 +01002091 * events_poll_msecs : polling interval, 0: disable, -1: system default
2092 */
2093static ssize_t __disk_events_show(unsigned int events, char *buf)
2094{
2095 const char *delim = "";
2096 ssize_t pos = 0;
2097 int i;
2098
2099 for (i = 0; i < ARRAY_SIZE(disk_events_strs); i++)
2100 if (events & (1 << i)) {
2101 pos += sprintf(buf + pos, "%s%s",
2102 delim, disk_events_strs[i]);
2103 delim = " ";
2104 }
2105 if (pos)
2106 pos += sprintf(buf + pos, "\n");
2107 return pos;
2108}
2109
2110static ssize_t disk_events_show(struct device *dev,
2111 struct device_attribute *attr, char *buf)
2112{
2113 struct gendisk *disk = dev_to_disk(dev);
2114
Martin Wilckc92e2f02019-03-27 14:51:02 +01002115 if (!(disk->event_flags & DISK_EVENT_FLAG_UEVENT))
2116 return 0;
2117
Tejun Heo77ea8872010-12-08 20:57:37 +01002118 return __disk_events_show(disk->events, buf);
2119}
2120
2121static ssize_t disk_events_async_show(struct device *dev,
2122 struct device_attribute *attr, char *buf)
2123{
Martin Wilck673387a2019-03-27 14:51:01 +01002124 return 0;
Tejun Heo77ea8872010-12-08 20:57:37 +01002125}
2126
2127static ssize_t disk_events_poll_msecs_show(struct device *dev,
2128 struct device_attribute *attr,
2129 char *buf)
2130{
2131 struct gendisk *disk = dev_to_disk(dev);
2132
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002133 if (!disk->ev)
2134 return sprintf(buf, "-1\n");
2135
Tejun Heo77ea8872010-12-08 20:57:37 +01002136 return sprintf(buf, "%ld\n", disk->ev->poll_msecs);
2137}
2138
2139static ssize_t disk_events_poll_msecs_store(struct device *dev,
2140 struct device_attribute *attr,
2141 const char *buf, size_t count)
2142{
2143 struct gendisk *disk = dev_to_disk(dev);
2144 long intv;
2145
2146 if (!count || !sscanf(buf, "%ld", &intv))
2147 return -EINVAL;
2148
2149 if (intv < 0 && intv != -1)
2150 return -EINVAL;
2151
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002152 if (!disk->ev)
2153 return -ENODEV;
2154
Tejun Heoc3af54a2011-06-09 20:43:55 +02002155 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002156 disk->ev->poll_msecs = intv;
2157 __disk_unblock_events(disk, true);
2158
2159 return count;
2160}
2161
Joe Perches5657a812018-05-24 13:38:59 -06002162static const DEVICE_ATTR(events, 0444, disk_events_show, NULL);
2163static const DEVICE_ATTR(events_async, 0444, disk_events_async_show, NULL);
2164static const DEVICE_ATTR(events_poll_msecs, 0644,
Tejun Heo77ea8872010-12-08 20:57:37 +01002165 disk_events_poll_msecs_show,
2166 disk_events_poll_msecs_store);
2167
2168static const struct attribute *disk_events_attrs[] = {
2169 &dev_attr_events.attr,
2170 &dev_attr_events_async.attr,
2171 &dev_attr_events_poll_msecs.attr,
2172 NULL,
2173};
2174
2175/*
2176 * The default polling interval can be specified by the kernel
2177 * parameter block.events_dfl_poll_msecs which defaults to 0
2178 * (disable). This can also be modified runtime by writing to
Akinobu Mita1624b0b2019-07-16 21:59:35 +09002179 * /sys/module/block/parameters/events_dfl_poll_msecs.
Tejun Heo77ea8872010-12-08 20:57:37 +01002180 */
2181static int disk_events_set_dfl_poll_msecs(const char *val,
2182 const struct kernel_param *kp)
2183{
2184 struct disk_events *ev;
2185 int ret;
2186
2187 ret = param_set_ulong(val, kp);
2188 if (ret < 0)
2189 return ret;
2190
2191 mutex_lock(&disk_events_mutex);
2192
2193 list_for_each_entry(ev, &disk_events, node)
Tejun Heo85ef06d2011-07-01 16:17:47 +02002194 disk_flush_events(ev->disk, 0);
Tejun Heo77ea8872010-12-08 20:57:37 +01002195
2196 mutex_unlock(&disk_events_mutex);
2197
2198 return 0;
2199}
2200
2201static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops = {
2202 .set = disk_events_set_dfl_poll_msecs,
2203 .get = param_get_ulong,
2204};
2205
2206#undef MODULE_PARAM_PREFIX
2207#define MODULE_PARAM_PREFIX "block."
2208
2209module_param_cb(events_dfl_poll_msecs, &disk_events_dfl_poll_msecs_param_ops,
2210 &disk_events_dfl_poll_msecs, 0644);
2211
2212/*
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002213 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
Tejun Heo77ea8872010-12-08 20:57:37 +01002214 */
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002215static void disk_alloc_events(struct gendisk *disk)
Tejun Heo77ea8872010-12-08 20:57:37 +01002216{
2217 struct disk_events *ev;
2218
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002219 if (!disk->fops->check_events || !disk->events)
Tejun Heo77ea8872010-12-08 20:57:37 +01002220 return;
2221
2222 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
2223 if (!ev) {
2224 pr_warn("%s: failed to initialize events\n", disk->disk_name);
2225 return;
2226 }
2227
Tejun Heo77ea8872010-12-08 20:57:37 +01002228 INIT_LIST_HEAD(&ev->node);
2229 ev->disk = disk;
2230 spin_lock_init(&ev->lock);
Tejun Heofdd514e2011-06-09 20:43:59 +02002231 mutex_init(&ev->block_mutex);
Tejun Heo77ea8872010-12-08 20:57:37 +01002232 ev->block = 1;
2233 ev->poll_msecs = -1;
2234 INIT_DELAYED_WORK(&ev->dwork, disk_events_workfn);
2235
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002236 disk->ev = ev;
2237}
2238
2239static void disk_add_events(struct gendisk *disk)
2240{
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002241 /* FIXME: error handling */
2242 if (sysfs_create_files(&disk_to_dev(disk)->kobj, disk_events_attrs) < 0)
2243 pr_warn("%s: failed to create sysfs files for events\n",
2244 disk->disk_name);
2245
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002246 if (!disk->ev)
2247 return;
2248
Tejun Heo77ea8872010-12-08 20:57:37 +01002249 mutex_lock(&disk_events_mutex);
Stanislaw Gruszka9f53d2fe2012-03-02 10:43:28 +01002250 list_add_tail(&disk->ev->node, &disk_events);
Tejun Heo77ea8872010-12-08 20:57:37 +01002251 mutex_unlock(&disk_events_mutex);
2252
2253 /*
2254 * Block count is initialized to 1 and the following initial
2255 * unblock kicks it into action.
2256 */
2257 __disk_unblock_events(disk, true);
2258}
2259
2260static void disk_del_events(struct gendisk *disk)
2261{
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002262 if (disk->ev) {
2263 disk_block_events(disk);
Tejun Heo77ea8872010-12-08 20:57:37 +01002264
Martin Wilckcdf3e3d2019-03-27 14:51:05 +01002265 mutex_lock(&disk_events_mutex);
2266 list_del_init(&disk->ev->node);
2267 mutex_unlock(&disk_events_mutex);
2268 }
Tejun Heo77ea8872010-12-08 20:57:37 +01002269
2270 sysfs_remove_files(&disk_to_dev(disk)->kobj, disk_events_attrs);
2271}
2272
2273static void disk_release_events(struct gendisk *disk)
2274{
2275 /* the block count should be 1 from disk_del_events() */
2276 WARN_ON_ONCE(disk->ev && disk->ev->block != 1);
2277 kfree(disk->ev);
2278}