| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- // SPDX-License-Identifier: GPL-2.0-or-later
- /*
- * Linux Kernel Dump Test Module for testing kernel crashes conditions:
- * induces system failures at predefined crashpoints and under predefined
- * operational conditions in order to evaluate the reliability of kernel
- * sanity checking and crash dumps obtained using different dumping
- * solutions.
- *
- * Copyright (C) IBM Corporation, 2006
- *
- * Author: Ankita Garg <ankita@in.ibm.com>
- *
- * It is adapted from the Linux Kernel Dump Test Tool by
- * Fernando Luis Vazquez Cao <http://lkdtt.sourceforge.net>
- *
- * Debugfs support added by Simon Kagstrom <simon.kagstrom@netinsight.net>
- *
- * See Documentation/fault-injection/provoke-crashes.rst for instructions
- */
- #include "lkdtm.h"
- #include <linux/fs.h>
- #include <linux/module.h>
- #include <linux/buffer_head.h>
- #include <linux/kprobes.h>
- #include <linux/list.h>
- #include <linux/init.h>
- #include <linux/slab.h>
- #include <linux/debugfs.h>
- #include <linux/utsname.h>
- #define DEFAULT_COUNT 10
- static int lkdtm_debugfs_open(struct inode *inode, struct file *file);
- static ssize_t lkdtm_debugfs_read(struct file *f, char __user *user_buf,
- size_t count, loff_t *off);
- static ssize_t direct_entry(struct file *f, const char __user *user_buf,
- size_t count, loff_t *off);
- #ifdef CONFIG_KPROBES
- static int lkdtm_kprobe_handler(struct kprobe *kp, struct pt_regs *regs);
- static ssize_t lkdtm_debugfs_entry(struct file *f,
- const char __user *user_buf,
- size_t count, loff_t *off);
- # define CRASHPOINT_KPROBE(_symbol) \
- .kprobe = { \
- .symbol_name = (_symbol), \
- .pre_handler = lkdtm_kprobe_handler, \
- },
- # define CRASHPOINT_WRITE(_symbol) \
- (_symbol) ? lkdtm_debugfs_entry : direct_entry
- #else
- # define CRASHPOINT_KPROBE(_symbol)
- # define CRASHPOINT_WRITE(_symbol) direct_entry
- #endif
- /* Crash points */
- struct crashpoint {
- const char *name;
- const struct file_operations fops;
- struct kprobe kprobe;
- };
- #define CRASHPOINT(_name, _symbol) \
- { \
- .name = _name, \
- .fops = { \
- .read = lkdtm_debugfs_read, \
- .llseek = generic_file_llseek, \
- .open = lkdtm_debugfs_open, \
- .write = CRASHPOINT_WRITE(_symbol) \
- }, \
- CRASHPOINT_KPROBE(_symbol) \
- }
- /* Define the possible places where we can trigger a crash point. */
- static struct crashpoint crashpoints[] = {
- CRASHPOINT("DIRECT", NULL),
- #ifdef CONFIG_KPROBES
- CRASHPOINT("INT_HARDWARE_ENTRY", "do_IRQ"),
- CRASHPOINT("INT_HW_IRQ_EN", "handle_irq_event"),
- CRASHPOINT("INT_TASKLET_ENTRY", "tasklet_action"),
- CRASHPOINT("FS_SUBMIT_BH", "submit_bh"),
- CRASHPOINT("MEM_SWAPOUT", "shrink_inactive_list"),
- CRASHPOINT("TIMERADD", "hrtimer_start"),
- CRASHPOINT("SCSI_QUEUE_RQ", "scsi_queue_rq"),
- #endif
- };
- /* List of possible types for crashes that can be triggered. */
- static const struct crashtype_category *crashtype_categories[] = {
- &bugs_crashtypes,
- &heap_crashtypes,
- &perms_crashtypes,
- &refcount_crashtypes,
- &usercopy_crashtypes,
- &stackleak_crashtypes,
- &cfi_crashtypes,
- &fortify_crashtypes,
- #ifdef CONFIG_PPC_64S_HASH_MMU
- &powerpc_crashtypes,
- #endif
- };
- /* Global kprobe entry and crashtype. */
- static struct kprobe *lkdtm_kprobe;
- static struct crashpoint *lkdtm_crashpoint;
- static const struct crashtype *lkdtm_crashtype;
- /* Module parameters */
- static int recur_count = -1;
- module_param(recur_count, int, 0644);
- MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test");
- static char* cpoint_name;
- module_param(cpoint_name, charp, 0444);
- MODULE_PARM_DESC(cpoint_name, " Crash Point, where kernel is to be crashed");
- static char* cpoint_type;
- module_param(cpoint_type, charp, 0444);
- MODULE_PARM_DESC(cpoint_type, " Crash Point Type, action to be taken on "\
- "hitting the crash point");
- static int cpoint_count = DEFAULT_COUNT;
- module_param(cpoint_count, int, 0644);
- MODULE_PARM_DESC(cpoint_count, " Crash Point Count, number of times the "\
- "crash point is to be hit to trigger action");
- /*
- * For test debug reporting when CI systems provide terse summaries.
- * TODO: Remove this once reasonable reporting exists in most CI systems:
- * https://lore.kernel.org/lkml/CAHk-=wiFvfkoFixTapvvyPMN9pq5G-+Dys2eSyBa1vzDGAO5+A@mail.gmail.com
- */
- char *lkdtm_kernel_info;
- /* Return the crashtype number or NULL if the name is invalid */
- static const struct crashtype *find_crashtype(const char *name)
- {
- int cat, idx;
- for (cat = 0; cat < ARRAY_SIZE(crashtype_categories); cat++) {
- for (idx = 0; idx < crashtype_categories[cat]->len; idx++) {
- struct crashtype *crashtype;
- crashtype = &crashtype_categories[cat]->crashtypes[idx];
- if (!strcmp(name, crashtype->name))
- return crashtype;
- }
- }
- return NULL;
- }
- /*
- * This is forced noinline just so it distinctly shows up in the stackdump
- * which makes validation of expected lkdtm crashes easier.
- *
- * NOTE: having a valid return value helps prevent the compiler from doing
- * tail call optimizations and taking this out of the stack trace.
- */
- static noinline int lkdtm_do_action(const struct crashtype *crashtype)
- {
- if (WARN_ON(!crashtype || !crashtype->func))
- return -EINVAL;
- crashtype->func();
- return 0;
- }
- static int lkdtm_register_cpoint(struct crashpoint *crashpoint,
- const struct crashtype *crashtype)
- {
- int ret;
- /* If this doesn't have a symbol, just call immediately. */
- if (!crashpoint->kprobe.symbol_name)
- return lkdtm_do_action(crashtype);
- if (lkdtm_kprobe != NULL)
- unregister_kprobe(lkdtm_kprobe);
- lkdtm_crashpoint = crashpoint;
- lkdtm_crashtype = crashtype;
- lkdtm_kprobe = &crashpoint->kprobe;
- ret = register_kprobe(lkdtm_kprobe);
- if (ret < 0) {
- pr_info("Couldn't register kprobe %s\n",
- crashpoint->kprobe.symbol_name);
- lkdtm_kprobe = NULL;
- lkdtm_crashpoint = NULL;
- lkdtm_crashtype = NULL;
- }
- return ret;
- }
- #ifdef CONFIG_KPROBES
- /* Global crash counter and spinlock. */
- static int crash_count = DEFAULT_COUNT;
- static DEFINE_SPINLOCK(crash_count_lock);
- /* Called by kprobe entry points. */
- static int lkdtm_kprobe_handler(struct kprobe *kp, struct pt_regs *regs)
- {
- unsigned long flags;
- bool do_it = false;
- if (WARN_ON(!lkdtm_crashpoint || !lkdtm_crashtype))
- return 0;
- spin_lock_irqsave(&crash_count_lock, flags);
- crash_count--;
- pr_info("Crash point %s of type %s hit, trigger in %d rounds\n",
- lkdtm_crashpoint->name, lkdtm_crashtype->name, crash_count);
- if (crash_count == 0) {
- do_it = true;
- crash_count = cpoint_count;
- }
- spin_unlock_irqrestore(&crash_count_lock, flags);
- if (do_it)
- return lkdtm_do_action(lkdtm_crashtype);
- return 0;
- }
- static ssize_t lkdtm_debugfs_entry(struct file *f,
- const char __user *user_buf,
- size_t count, loff_t *off)
- {
- struct crashpoint *crashpoint = file_inode(f)->i_private;
- const struct crashtype *crashtype = NULL;
- char *buf;
- int err;
- if (count >= PAGE_SIZE)
- return -EINVAL;
- buf = (char *)__get_free_page(GFP_KERNEL);
- if (!buf)
- return -ENOMEM;
- if (copy_from_user(buf, user_buf, count)) {
- free_page((unsigned long) buf);
- return -EFAULT;
- }
- /* NULL-terminate and remove enter */
- buf[count] = '\0';
- strim(buf);
- crashtype = find_crashtype(buf);
- free_page((unsigned long)buf);
- if (!crashtype)
- return -EINVAL;
- err = lkdtm_register_cpoint(crashpoint, crashtype);
- if (err < 0)
- return err;
- *off += count;
- return count;
- }
- #endif
- /* Generic read callback that just prints out the available crash types */
- static ssize_t lkdtm_debugfs_read(struct file *f, char __user *user_buf,
- size_t count, loff_t *off)
- {
- int n, cat, idx;
- ssize_t out;
- char *buf;
- buf = (char *)__get_free_page(GFP_KERNEL);
- if (buf == NULL)
- return -ENOMEM;
- n = scnprintf(buf, PAGE_SIZE, "Available crash types:\n");
- for (cat = 0; cat < ARRAY_SIZE(crashtype_categories); cat++) {
- for (idx = 0; idx < crashtype_categories[cat]->len; idx++) {
- struct crashtype *crashtype;
- crashtype = &crashtype_categories[cat]->crashtypes[idx];
- n += scnprintf(buf + n, PAGE_SIZE - n, "%s\n",
- crashtype->name);
- }
- }
- buf[n] = '\0';
- out = simple_read_from_buffer(user_buf, count, off,
- buf, n);
- free_page((unsigned long) buf);
- return out;
- }
- static int lkdtm_debugfs_open(struct inode *inode, struct file *file)
- {
- return 0;
- }
- /* Special entry to just crash directly. Available without KPROBEs */
- static ssize_t direct_entry(struct file *f, const char __user *user_buf,
- size_t count, loff_t *off)
- {
- const struct crashtype *crashtype;
- char *buf;
- int err;
- if (count >= PAGE_SIZE)
- return -EINVAL;
- if (count < 1)
- return -EINVAL;
- buf = (char *)__get_free_page(GFP_KERNEL);
- if (!buf)
- return -ENOMEM;
- if (copy_from_user(buf, user_buf, count)) {
- free_page((unsigned long) buf);
- return -EFAULT;
- }
- /* NULL-terminate and remove enter */
- buf[count] = '\0';
- strim(buf);
- crashtype = find_crashtype(buf);
- free_page((unsigned long) buf);
- if (!crashtype)
- return -EINVAL;
- pr_info("Performing direct entry %s\n", crashtype->name);
- err = lkdtm_do_action(crashtype);
- *off += count;
- if (err)
- return err;
- return count;
- }
- #ifndef MODULE
- /*
- * To avoid needing to export parse_args(), just don't use this code
- * when LKDTM is built as a module.
- */
- struct check_cmdline_args {
- const char *param;
- int value;
- };
- static int lkdtm_parse_one(char *param, char *val,
- const char *unused, void *arg)
- {
- struct check_cmdline_args *args = arg;
- /* short circuit if we already found a value. */
- if (args->value != -ESRCH)
- return 0;
- if (strncmp(param, args->param, strlen(args->param)) == 0) {
- bool bool_result;
- int ret;
- ret = kstrtobool(val, &bool_result);
- if (ret == 0)
- args->value = bool_result;
- }
- return 0;
- }
- int lkdtm_check_bool_cmdline(const char *param)
- {
- char *command_line;
- struct check_cmdline_args args = {
- .param = param,
- .value = -ESRCH,
- };
- command_line = kstrdup(saved_command_line, GFP_KERNEL);
- if (!command_line)
- return -ENOMEM;
- parse_args("Setting sysctl args", command_line,
- NULL, 0, -1, -1, &args, lkdtm_parse_one);
- kfree(command_line);
- return args.value;
- }
- #endif
- static struct dentry *lkdtm_debugfs_root;
- static int __init lkdtm_module_init(void)
- {
- struct crashpoint *crashpoint = NULL;
- const struct crashtype *crashtype = NULL;
- int ret;
- int i;
- /* Neither or both of these need to be set */
- if ((cpoint_type || cpoint_name) && !(cpoint_type && cpoint_name)) {
- pr_err("Need both cpoint_type and cpoint_name or neither\n");
- return -EINVAL;
- }
- if (cpoint_type) {
- crashtype = find_crashtype(cpoint_type);
- if (!crashtype) {
- pr_err("Unknown crashtype '%s'\n", cpoint_type);
- return -EINVAL;
- }
- }
- if (cpoint_name) {
- for (i = 0; i < ARRAY_SIZE(crashpoints); i++) {
- if (!strcmp(cpoint_name, crashpoints[i].name))
- crashpoint = &crashpoints[i];
- }
- /* Refuse unknown crashpoints. */
- if (!crashpoint) {
- pr_err("Invalid crashpoint %s\n", cpoint_name);
- return -EINVAL;
- }
- }
- #ifdef CONFIG_KPROBES
- /* Set crash count. */
- crash_count = cpoint_count;
- #endif
- /* Common initialization. */
- lkdtm_kernel_info = kasprintf(GFP_KERNEL, "kernel (%s %s)",
- init_uts_ns.name.release,
- init_uts_ns.name.machine);
- /* Handle test-specific initialization. */
- lkdtm_bugs_init(&recur_count);
- lkdtm_perms_init();
- lkdtm_usercopy_init();
- lkdtm_heap_init();
- /* Register debugfs interface */
- lkdtm_debugfs_root = debugfs_create_dir("provoke-crash", NULL);
- /* Install debugfs trigger files. */
- for (i = 0; i < ARRAY_SIZE(crashpoints); i++) {
- struct crashpoint *cur = &crashpoints[i];
- debugfs_create_file(cur->name, 0644, lkdtm_debugfs_root, cur,
- &cur->fops);
- }
- /* Install crashpoint if one was selected. */
- if (crashpoint) {
- ret = lkdtm_register_cpoint(crashpoint, crashtype);
- if (ret < 0) {
- pr_info("Invalid crashpoint %s\n", crashpoint->name);
- goto out_err;
- }
- pr_info("Crash point %s of type %s registered\n",
- crashpoint->name, cpoint_type);
- } else {
- pr_info("No crash points registered, enable through debugfs\n");
- }
- return 0;
- out_err:
- debugfs_remove_recursive(lkdtm_debugfs_root);
- return ret;
- }
- static void __exit lkdtm_module_exit(void)
- {
- debugfs_remove_recursive(lkdtm_debugfs_root);
- /* Handle test-specific clean-up. */
- lkdtm_heap_exit();
- lkdtm_usercopy_exit();
- if (lkdtm_kprobe != NULL)
- unregister_kprobe(lkdtm_kprobe);
- kfree(lkdtm_kernel_info);
- pr_info("Crash point unregistered\n");
- }
- module_init(lkdtm_module_init);
- module_exit(lkdtm_module_exit);
- MODULE_LICENSE("GPL");
- MODULE_DESCRIPTION("Kernel crash testing module");
|