1 // SPDX-License-Identifier: GPL-2.0
3 * S/390 common I/O routines -- blacklisting of specific devices
5 * Copyright IBM Corp. 1999, 2013
6 * Author(s): Ingo Adlung (adlung@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
8 * Arnd Bergmann (arndb@de.ibm.com)
11 #define KMSG_COMPONENT "cio"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/init.h>
15 #include <linux/vmalloc.h>
16 #include <linux/proc_fs.h>
17 #include <linux/seq_file.h>
18 #include <linux/ctype.h>
19 #include <linux/device.h>
21 #include <linux/uaccess.h>
25 #include "blacklist.h"
27 #include "cio_debug.h"
32 * "Blacklisting" of certain devices:
33 * Device numbers given in the commandline as cio_ignore=... won't be known
36 * These can be single devices or ranges of devices
39 /* 65536 bits for each set to indicate if a devno is blacklisted or not */
40 #define __BL_DEV_WORDS ((__MAX_SUBCHANNEL + (8*sizeof(long) - 1)) / \
42 static unsigned long bl_dev
[__MAX_SSID
+ 1][__BL_DEV_WORDS
];
43 typedef enum {add
, free
} range_action
;
46 * Function: blacklist_range
47 * (Un-)blacklist the devices from-to
49 static int blacklist_range(range_action action
, unsigned int from_ssid
,
50 unsigned int to_ssid
, unsigned int from
,
51 unsigned int to
, int msgtrigger
)
53 if ((from_ssid
> to_ssid
) || ((from_ssid
== to_ssid
) && (from
> to
))) {
55 pr_warn("0.%x.%04x to 0.%x.%04x is not a valid range for cio_ignore\n",
56 from_ssid
, from
, to_ssid
, to
);
61 while ((from_ssid
< to_ssid
) || ((from_ssid
== to_ssid
) &&
64 set_bit(from
, bl_dev
[from_ssid
]);
66 clear_bit(from
, bl_dev
[from_ssid
]);
68 if (from
> __MAX_SUBCHANNEL
) {
77 static int pure_hex(char **cp
, unsigned int *val
, int min_digit
,
78 int max_digit
, int max_val
)
85 while (diff
<= max_digit
) {
86 int value
= hex_to_bin(**cp
);
90 *val
= *val
* 16 + value
;
95 if ((diff
< min_digit
) || (diff
> max_digit
) || (*val
> max_val
))
101 static int parse_busid(char *str
, unsigned int *cssid
, unsigned int *ssid
,
102 unsigned int *devno
, int msgtrigger
)
114 val
= simple_strtoul(str
, &str_work
, 16);
116 if (*str_work
== '\0') {
117 if (val
<= __MAX_SUBCHANNEL
) {
128 ret
= pure_hex(&str_work
, cssid
, 1, 2, __MAX_CSSID
);
129 if (ret
|| (str_work
[0] != '.'))
132 ret
= pure_hex(&str_work
, ssid
, 1, 1, __MAX_SSID
);
133 if (ret
|| (str_work
[0] != '.'))
136 ret
= pure_hex(&str_work
, devno
, 4, 4, __MAX_SUBCHANNEL
);
137 if (ret
|| (str_work
[0] != '\0'))
142 if (rc
&& msgtrigger
)
143 pr_warn("%s is not a valid device for the cio_ignore kernel parameter\n",
149 static int blacklist_parse_parameters(char *str
, range_action action
,
152 unsigned int from_cssid
, to_cssid
, from_ssid
, to_ssid
, from
, to
;
159 while ((parm
= strsep(&str
, ","))) {
169 if (strcmp(parm
, "all") == 0) {
173 to_cssid
= __MAX_CSSID
;
174 to_ssid
= __MAX_SSID
;
175 to
= __MAX_SUBCHANNEL
;
176 } else if (strcmp(parm
, "ipldev") == 0) {
177 if (ipl_info
.type
== IPL_TYPE_CCW
) {
179 from_ssid
= ipl_info
.data
.ccw
.dev_id
.ssid
;
180 from
= ipl_info
.data
.ccw
.dev_id
.devno
;
181 } else if (ipl_info
.type
== IPL_TYPE_FCP
||
182 ipl_info
.type
== IPL_TYPE_FCP_DUMP
) {
184 from_ssid
= ipl_info
.data
.fcp
.dev_id
.ssid
;
185 from
= ipl_info
.data
.fcp
.dev_id
.devno
;
189 to_cssid
= from_cssid
;
192 } else if (strcmp(parm
, "condev") == 0) {
193 if (console_devno
== -1)
196 from_cssid
= to_cssid
= 0;
197 from_ssid
= to_ssid
= 0;
198 from
= to
= console_devno
;
200 rc
= parse_busid(strsep(&parm
, "-"), &from_cssid
,
201 &from_ssid
, &from
, msgtrigger
);
204 rc
= parse_busid(parm
, &to_cssid
,
208 to_cssid
= from_cssid
;
215 rc
= blacklist_range(ra
, from_ssid
, to_ssid
, from
, to
,
227 blacklist_setup (char *str
)
229 CIO_MSG_EVENT(6, "Reading blacklist parameters\n");
230 if (blacklist_parse_parameters(str
, add
, 1))
235 __setup ("cio_ignore=", blacklist_setup
);
237 /* Checking if devices are blacklisted */
240 * Function: is_blacklisted
241 * Returns 1 if the given devicenumber can be found in the blacklist,
243 * Used by validate_subchannel()
246 is_blacklisted (int ssid
, int devno
)
248 return test_bit (devno
, bl_dev
[ssid
]);
251 #ifdef CONFIG_PROC_FS
253 * Function: blacklist_parse_proc_parameters
254 * parse the stuff which is piped to /proc/cio_ignore
256 static int blacklist_parse_proc_parameters(char *buf
)
261 parm
= strsep(&buf
, " ");
263 if (strcmp("free", parm
) == 0) {
264 rc
= blacklist_parse_parameters(buf
, free
, 0);
265 css_schedule_eval_all_unreg(0);
266 } else if (strcmp("add", parm
) == 0)
267 rc
= blacklist_parse_parameters(buf
, add
, 0);
268 else if (strcmp("purge", parm
) == 0)
269 return ccw_purge_blacklisted();
277 /* Iterator struct for all devices. */
285 cio_ignore_proc_seq_start(struct seq_file
*s
, loff_t
*offset
)
287 struct ccwdev_iter
*iter
= s
->private;
289 if (*offset
>= (__MAX_SUBCHANNEL
+ 1) * (__MAX_SSID
+ 1))
291 memset(iter
, 0, sizeof(*iter
));
292 iter
->ssid
= *offset
/ (__MAX_SUBCHANNEL
+ 1);
293 iter
->devno
= *offset
% (__MAX_SUBCHANNEL
+ 1);
298 cio_ignore_proc_seq_stop(struct seq_file
*s
, void *it
)
303 cio_ignore_proc_seq_next(struct seq_file
*s
, void *it
, loff_t
*offset
)
305 struct ccwdev_iter
*iter
;
307 if (*offset
>= (__MAX_SUBCHANNEL
+ 1) * (__MAX_SSID
+ 1))
310 if (iter
->devno
== __MAX_SUBCHANNEL
) {
313 if (iter
->ssid
> __MAX_SSID
)
322 cio_ignore_proc_seq_show(struct seq_file
*s
, void *it
)
324 struct ccwdev_iter
*iter
;
327 if (!is_blacklisted(iter
->ssid
, iter
->devno
))
328 /* Not blacklisted, nothing to output. */
330 if (!iter
->in_range
) {
331 /* First device in range. */
332 if ((iter
->devno
== __MAX_SUBCHANNEL
) ||
333 !is_blacklisted(iter
->ssid
, iter
->devno
+ 1)) {
334 /* Singular device. */
335 seq_printf(s
, "0.%x.%04x\n", iter
->ssid
, iter
->devno
);
339 seq_printf(s
, "0.%x.%04x-", iter
->ssid
, iter
->devno
);
342 if ((iter
->devno
== __MAX_SUBCHANNEL
) ||
343 !is_blacklisted(iter
->ssid
, iter
->devno
+ 1)) {
344 /* Last device in range. */
346 seq_printf(s
, "0.%x.%04x\n", iter
->ssid
, iter
->devno
);
352 cio_ignore_write(struct file
*file
, const char __user
*user_buf
,
353 size_t user_len
, loff_t
*offset
)
360 if (user_len
> 65536)
362 buf
= vzalloc(user_len
+ 1); /* maybe better use the stack? */
366 if (strncpy_from_user (buf
, user_buf
, user_len
) < 0) {
372 while ((i
>= 0) && (isspace(buf
[i
]) || (buf
[i
] == 0))) {
376 ret
= blacklist_parse_proc_parameters(buf
);
387 static const struct seq_operations cio_ignore_proc_seq_ops
= {
388 .start
= cio_ignore_proc_seq_start
,
389 .stop
= cio_ignore_proc_seq_stop
,
390 .next
= cio_ignore_proc_seq_next
,
391 .show
= cio_ignore_proc_seq_show
,
395 cio_ignore_proc_open(struct inode
*inode
, struct file
*file
)
397 return seq_open_private(file
, &cio_ignore_proc_seq_ops
,
398 sizeof(struct ccwdev_iter
));
401 static const struct file_operations cio_ignore_proc_fops
= {
402 .open
= cio_ignore_proc_open
,
405 .release
= seq_release_private
,
406 .write
= cio_ignore_write
,
410 cio_ignore_proc_init (void)
412 struct proc_dir_entry
*entry
;
414 entry
= proc_create("cio_ignore", S_IFREG
| S_IRUGO
| S_IWUSR
, NULL
,
415 &cio_ignore_proc_fops
);
421 __initcall (cio_ignore_proc_init
);
423 #endif /* CONFIG_PROC_FS */