Skip to content

Commit 01584c1

Browse files
damien-lemoalmartinkpetersen
authored andcommitted
scsi: block: Improve ioprio value validity checks
The introduction of the macro IOPRIO_PRIO_LEVEL() in commit eca2040 ("scsi: block: ioprio: Clean up interface definition") results in an iopriority level to always be masked using the macro IOPRIO_LEVEL_MASK, and thus to the kernel always seeing an acceptable value for an I/O priority level when checked in ioprio_check_cap(). Before this patch, this function would return an error for some (but not all) invalid values for a level valid range of [0..7]. Restore and improve the detection of invalid priority levels by introducing the inline function ioprio_value() to check an ioprio class, level and hint value before combining these fields into a single value to be used with ioprio_set() or AIOs. If an invalid value for the class, level or hint of an ioprio is detected, ioprio_value() returns an ioprio using the class IOPRIO_CLASS_INVALID, indicating an invalid value and causing ioprio_check_cap() to return -EINVAL. Fixes: 6c91325 ("scsi: block: Introduce ioprio hints") Fixes: eca2040 ("scsi: block: ioprio: Clean up interface definition") Signed-off-by: Damien Le Moal <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Niklas Cassel <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent 022000d commit 01584c1

File tree

2 files changed

+34
-17
lines changed

2 files changed

+34
-17
lines changed

block/ioprio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ int ioprio_check_cap(int ioprio)
5858
if (level)
5959
return -EINVAL;
6060
break;
61+
case IOPRIO_CLASS_INVALID:
6162
default:
6263
return -EINVAL;
6364
}

include/uapi/linux/ioprio.h

Lines changed: 33 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
#ifndef _UAPI_LINUX_IOPRIO_H
33
#define _UAPI_LINUX_IOPRIO_H
44

5+
#include <linux/stddef.h>
6+
#include <linux/types.h>
7+
58
/*
69
* Gives us 8 prio classes with 13-bits of data for each class
710
*/
811
#define IOPRIO_CLASS_SHIFT 13
9-
#define IOPRIO_CLASS_MASK 0x07
12+
#define IOPRIO_NR_CLASSES 8
13+
#define IOPRIO_CLASS_MASK (IOPRIO_NR_CLASSES - 1)
1014
#define IOPRIO_PRIO_MASK ((1UL << IOPRIO_CLASS_SHIFT) - 1)
1115

1216
#define IOPRIO_PRIO_CLASS(ioprio) \
1317
(((ioprio) >> IOPRIO_CLASS_SHIFT) & IOPRIO_CLASS_MASK)
1418
#define IOPRIO_PRIO_DATA(ioprio) ((ioprio) & IOPRIO_PRIO_MASK)
15-
#define IOPRIO_PRIO_VALUE(class, data) \
16-
((((class) & IOPRIO_CLASS_MASK) << IOPRIO_CLASS_SHIFT) | \
17-
((data) & IOPRIO_PRIO_MASK))
1819

1920
/*
2021
* These are the io priority classes as implemented by the BFQ and mq-deadline
@@ -25,10 +26,13 @@
2526
* served when no one else is using the disk.
2627
*/
2728
enum {
28-
IOPRIO_CLASS_NONE,
29-
IOPRIO_CLASS_RT,
30-
IOPRIO_CLASS_BE,
31-
IOPRIO_CLASS_IDLE,
29+
IOPRIO_CLASS_NONE = 0,
30+
IOPRIO_CLASS_RT = 1,
31+
IOPRIO_CLASS_BE = 2,
32+
IOPRIO_CLASS_IDLE = 3,
33+
34+
/* Special class to indicate an invalid ioprio value */
35+
IOPRIO_CLASS_INVALID = 7,
3236
};
3337

3438
/*
@@ -73,15 +77,6 @@ enum {
7377
#define IOPRIO_PRIO_HINT(ioprio) \
7478
(((ioprio) >> IOPRIO_HINT_SHIFT) & IOPRIO_HINT_MASK)
7579

76-
/*
77-
* Alternate macro for IOPRIO_PRIO_VALUE() to define an I/O priority with
78-
* a class, level and hint.
79-
*/
80-
#define IOPRIO_PRIO_VALUE_HINT(class, level, hint) \
81-
((((class) & IOPRIO_CLASS_MASK) << IOPRIO_CLASS_SHIFT) | \
82-
(((hint) & IOPRIO_HINT_MASK) << IOPRIO_HINT_SHIFT) | \
83-
((level) & IOPRIO_LEVEL_MASK))
84-
8580
/*
8681
* I/O hints.
8782
*/
@@ -107,4 +102,25 @@ enum {
107102
IOPRIO_HINT_DEV_DURATION_LIMIT_7 = 7,
108103
};
109104

105+
#define IOPRIO_BAD_VALUE(val, max) ((val) < 0 || (val) >= (max))
106+
107+
/*
108+
* Return an I/O priority value based on a class, a level and a hint.
109+
*/
110+
static __always_inline __u16 ioprio_value(int class, int level, int hint)
111+
{
112+
if (IOPRIO_BAD_VALUE(class, IOPRIO_NR_CLASSES) ||
113+
IOPRIO_BAD_VALUE(level, IOPRIO_NR_LEVELS) ||
114+
IOPRIO_BAD_VALUE(hint, IOPRIO_NR_HINTS))
115+
return IOPRIO_CLASS_INVALID << IOPRIO_CLASS_SHIFT;
116+
117+
return (class << IOPRIO_CLASS_SHIFT) |
118+
(hint << IOPRIO_HINT_SHIFT) | level;
119+
}
120+
121+
#define IOPRIO_PRIO_VALUE(class, level) \
122+
ioprio_value(class, level, IOPRIO_HINT_NONE)
123+
#define IOPRIO_PRIO_VALUE_HINT(class, level, hint) \
124+
ioprio_value(class, level, hint)
125+
110126
#endif /* _UAPI_LINUX_IOPRIO_H */

0 commit comments

Comments
 (0)