Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Based on the same principle as kgdboe using the NETPOLL api, this |
| 3 | * driver uses a console polling api to implement a gdb serial inteface |
| 4 | * which is multiplexed on a console port. |
| 5 | * |
| 6 | * Maintainer: Jason Wessel <jason.wessel@windriver.com> |
| 7 | * |
| 8 | * 2007-2008 (c) Jason Wessel - Wind River Systems, Inc. |
| 9 | * |
| 10 | * This file is licensed under the terms of the GNU General Public |
| 11 | * License version 2. This program is licensed "as is" without any |
| 12 | * warranty of any kind, whether express or implied. |
| 13 | */ |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/ctype.h> |
| 16 | #include <linux/kgdb.h> |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 17 | #include <linux/kdb.h> |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 18 | #include <linux/tty.h> |
Jason Wessel | efe2f29 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 19 | #include <linux/console.h> |
Jason Wessel | 408a4be | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 20 | #include <linux/vt_kern.h> |
Dmitry Torokhov | 111c182 | 2010-11-03 11:04:05 -0700 | [diff] [blame] | 21 | #include <linux/input.h> |
Paul Gortmaker | 578b9ce | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 22 | #include <linux/module.h> |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 23 | |
| 24 | #define MAX_CONFIG_LEN 40 |
| 25 | |
| 26 | static struct kgdb_io kgdboc_io_ops; |
| 27 | |
| 28 | /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */ |
| 29 | static int configured = -1; |
| 30 | |
| 31 | static char config[MAX_CONFIG_LEN]; |
| 32 | static struct kparam_string kps = { |
| 33 | .string = config, |
| 34 | .maxlen = MAX_CONFIG_LEN, |
| 35 | }; |
| 36 | |
Jason Wessel | 408a4be | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 37 | static int kgdboc_use_kms; /* 1 if we use kernel mode switching */ |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 38 | static struct tty_driver *kgdb_tty_driver; |
| 39 | static int kgdb_tty_line; |
| 40 | |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 41 | #ifdef CONFIG_KDB_KEYBOARD |
Dmitry Torokhov | 111c182 | 2010-11-03 11:04:05 -0700 | [diff] [blame] | 42 | static int kgdboc_reset_connect(struct input_handler *handler, |
| 43 | struct input_dev *dev, |
| 44 | const struct input_device_id *id) |
| 45 | { |
| 46 | input_reset_device(dev); |
| 47 | |
Joe Perches | 9e03aa2 | 2013-09-03 13:45:58 -0700 | [diff] [blame] | 48 | /* Return an error - we do not want to bind, just to reset */ |
Dmitry Torokhov | 111c182 | 2010-11-03 11:04:05 -0700 | [diff] [blame] | 49 | return -ENODEV; |
| 50 | } |
| 51 | |
| 52 | static void kgdboc_reset_disconnect(struct input_handle *handle) |
| 53 | { |
| 54 | /* We do not expect anyone to actually bind to us */ |
| 55 | BUG(); |
| 56 | } |
| 57 | |
| 58 | static const struct input_device_id kgdboc_reset_ids[] = { |
| 59 | { |
| 60 | .flags = INPUT_DEVICE_ID_MATCH_EVBIT, |
| 61 | .evbit = { BIT_MASK(EV_KEY) }, |
| 62 | }, |
| 63 | { } |
| 64 | }; |
| 65 | |
| 66 | static struct input_handler kgdboc_reset_handler = { |
| 67 | .connect = kgdboc_reset_connect, |
| 68 | .disconnect = kgdboc_reset_disconnect, |
| 69 | .name = "kgdboc_reset", |
| 70 | .id_table = kgdboc_reset_ids, |
| 71 | }; |
| 72 | |
| 73 | static DEFINE_MUTEX(kgdboc_reset_mutex); |
| 74 | |
| 75 | static void kgdboc_restore_input_helper(struct work_struct *dummy) |
| 76 | { |
| 77 | /* |
| 78 | * We need to take a mutex to prevent several instances of |
| 79 | * this work running on different CPUs so they don't try |
| 80 | * to register again already registered handler. |
| 81 | */ |
| 82 | mutex_lock(&kgdboc_reset_mutex); |
| 83 | |
| 84 | if (input_register_handler(&kgdboc_reset_handler) == 0) |
| 85 | input_unregister_handler(&kgdboc_reset_handler); |
| 86 | |
| 87 | mutex_unlock(&kgdboc_reset_mutex); |
| 88 | } |
| 89 | |
| 90 | static DECLARE_WORK(kgdboc_restore_input_work, kgdboc_restore_input_helper); |
| 91 | |
| 92 | static void kgdboc_restore_input(void) |
| 93 | { |
Jason Wessel | 8863ada | 2010-12-01 13:01:01 -0600 | [diff] [blame] | 94 | if (likely(system_state == SYSTEM_RUNNING)) |
| 95 | schedule_work(&kgdboc_restore_input_work); |
Dmitry Torokhov | 111c182 | 2010-11-03 11:04:05 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 98 | static int kgdboc_register_kbd(char **cptr) |
| 99 | { |
Jason Wessel | 24b8592 | 2012-08-10 12:12:23 -0500 | [diff] [blame] | 100 | if (strncmp(*cptr, "kbd", 3) == 0 || |
| 101 | strncmp(*cptr, "kdb", 3) == 0) { |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 102 | if (kdb_poll_idx < KDB_POLL_FUNC_MAX) { |
| 103 | kdb_poll_funcs[kdb_poll_idx] = kdb_get_kbd_char; |
| 104 | kdb_poll_idx++; |
| 105 | if (cptr[0][3] == ',') |
| 106 | *cptr += 4; |
| 107 | else |
| 108 | return 1; |
| 109 | } |
| 110 | } |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | static void kgdboc_unregister_kbd(void) |
| 115 | { |
| 116 | int i; |
| 117 | |
| 118 | for (i = 0; i < kdb_poll_idx; i++) { |
| 119 | if (kdb_poll_funcs[i] == kdb_get_kbd_char) { |
| 120 | kdb_poll_idx--; |
| 121 | kdb_poll_funcs[i] = kdb_poll_funcs[kdb_poll_idx]; |
| 122 | kdb_poll_funcs[kdb_poll_idx] = NULL; |
| 123 | i--; |
| 124 | } |
| 125 | } |
Tejun Heo | 4382973 | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 126 | flush_work(&kgdboc_restore_input_work); |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 127 | } |
| 128 | #else /* ! CONFIG_KDB_KEYBOARD */ |
| 129 | #define kgdboc_register_kbd(x) 0 |
| 130 | #define kgdboc_unregister_kbd() |
Dmitry Torokhov | 111c182 | 2010-11-03 11:04:05 -0700 | [diff] [blame] | 131 | #define kgdboc_restore_input() |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 132 | #endif /* ! CONFIG_KDB_KEYBOARD */ |
| 133 | |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 134 | static void cleanup_kgdboc(void) |
| 135 | { |
Anton Vorontsov | 0c57dfc | 2012-09-24 14:27:56 -0700 | [diff] [blame] | 136 | if (kgdb_unregister_nmi_console()) |
| 137 | return; |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 138 | kgdboc_unregister_kbd(); |
| 139 | if (configured == 1) |
| 140 | kgdb_unregister_io_module(&kgdboc_io_ops); |
| 141 | } |
| 142 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 143 | static int configure_kgdboc(void) |
| 144 | { |
| 145 | struct tty_driver *p; |
| 146 | int tty_line = 0; |
Laura Abbott | d0bf1cb | 2018-09-10 16:20:14 -0700 | [diff] [blame] | 147 | int err = -ENODEV; |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 148 | char *cptr = config; |
Jason Wessel | efe2f29 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 149 | struct console *cons; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 150 | |
Wentao Wang | 9b06a0b | 2019-03-20 15:30:39 +0000 | [diff] [blame] | 151 | if (!strlen(config) || isspace(config[0])) { |
| 152 | err = 0; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 153 | goto noconfig; |
Wentao Wang | 9b06a0b | 2019-03-20 15:30:39 +0000 | [diff] [blame] | 154 | } |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 155 | |
Jason Wessel | efe2f29 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 156 | kgdboc_io_ops.is_console = 0; |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 157 | kgdb_tty_driver = NULL; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 158 | |
Jason Wessel | 408a4be | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 159 | kgdboc_use_kms = 0; |
| 160 | if (strncmp(cptr, "kms,", 4) == 0) { |
| 161 | cptr += 4; |
| 162 | kgdboc_use_kms = 1; |
| 163 | } |
| 164 | |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 165 | if (kgdboc_register_kbd(&cptr)) |
| 166 | goto do_register; |
| 167 | |
| 168 | p = tty_find_polling_driver(cptr, &tty_line); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 169 | if (!p) |
| 170 | goto noconfig; |
| 171 | |
Jason Wessel | efe2f29 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 172 | cons = console_drivers; |
| 173 | while (cons) { |
| 174 | int idx; |
| 175 | if (cons->device && cons->device(cons, &idx) == p && |
| 176 | idx == tty_line) { |
| 177 | kgdboc_io_ops.is_console = 1; |
| 178 | break; |
| 179 | } |
| 180 | cons = cons->next; |
| 181 | } |
| 182 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 183 | kgdb_tty_driver = p; |
| 184 | kgdb_tty_line = tty_line; |
| 185 | |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 186 | do_register: |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 187 | err = kgdb_register_io_module(&kgdboc_io_ops); |
| 188 | if (err) |
| 189 | goto noconfig; |
| 190 | |
Anton Vorontsov | 0c57dfc | 2012-09-24 14:27:56 -0700 | [diff] [blame] | 191 | err = kgdb_register_nmi_console(); |
| 192 | if (err) |
| 193 | goto nmi_con_failed; |
| 194 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 195 | configured = 1; |
| 196 | |
| 197 | return 0; |
| 198 | |
Anton Vorontsov | 0c57dfc | 2012-09-24 14:27:56 -0700 | [diff] [blame] | 199 | nmi_con_failed: |
| 200 | kgdb_unregister_io_module(&kgdboc_io_ops); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 201 | noconfig: |
Anton Vorontsov | 0c57dfc | 2012-09-24 14:27:56 -0700 | [diff] [blame] | 202 | kgdboc_unregister_kbd(); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 203 | config[0] = 0; |
| 204 | configured = 0; |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 205 | cleanup_kgdboc(); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 206 | |
| 207 | return err; |
| 208 | } |
| 209 | |
| 210 | static int __init init_kgdboc(void) |
| 211 | { |
| 212 | /* Already configured? */ |
| 213 | if (configured == 1) |
| 214 | return 0; |
| 215 | |
| 216 | return configure_kgdboc(); |
| 217 | } |
| 218 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 219 | static int kgdboc_get_char(void) |
| 220 | { |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 221 | if (!kgdb_tty_driver) |
| 222 | return -1; |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 223 | return kgdb_tty_driver->ops->poll_get_char(kgdb_tty_driver, |
| 224 | kgdb_tty_line); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | static void kgdboc_put_char(u8 chr) |
| 228 | { |
Jason Wessel | ada64e4 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 229 | if (!kgdb_tty_driver) |
| 230 | return; |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 231 | kgdb_tty_driver->ops->poll_put_char(kgdb_tty_driver, |
| 232 | kgdb_tty_line, chr); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | static int param_set_kgdboc_var(const char *kmessage, struct kernel_param *kp) |
| 236 | { |
Macpaul Lin | 6d861927 | 2018-10-17 23:08:38 +0800 | [diff] [blame] | 237 | size_t len = strlen(kmessage); |
Jason Wessel | c191e5a | 2008-02-15 14:55:52 -0600 | [diff] [blame] | 238 | |
| 239 | if (len >= MAX_CONFIG_LEN) { |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 240 | printk(KERN_ERR "kgdboc: config string too long\n"); |
| 241 | return -ENOSPC; |
| 242 | } |
| 243 | |
| 244 | /* Only copy in the string if the init function has not run yet */ |
| 245 | if (configured < 0) { |
| 246 | strcpy(config, kmessage); |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | if (kgdb_connected) { |
| 251 | printk(KERN_ERR |
| 252 | "kgdboc: Cannot reconfigure while KGDB is connected.\n"); |
| 253 | |
| 254 | return -EBUSY; |
| 255 | } |
| 256 | |
| 257 | strcpy(config, kmessage); |
Jason Wessel | c191e5a | 2008-02-15 14:55:52 -0600 | [diff] [blame] | 258 | /* Chop out \n char as a result of echo */ |
Macpaul Lin | 6d861927 | 2018-10-17 23:08:38 +0800 | [diff] [blame] | 259 | if (len && config[len - 1] == '\n') |
Jason Wessel | c191e5a | 2008-02-15 14:55:52 -0600 | [diff] [blame] | 260 | config[len - 1] = '\0'; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 261 | |
| 262 | if (configured == 1) |
| 263 | cleanup_kgdboc(); |
| 264 | |
| 265 | /* Go and configure with the new params. */ |
| 266 | return configure_kgdboc(); |
| 267 | } |
| 268 | |
Jason Wessel | 408a4be | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 269 | static int dbg_restore_graphics; |
| 270 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 271 | static void kgdboc_pre_exp_handler(void) |
| 272 | { |
Jason Wessel | 408a4be | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 273 | if (!dbg_restore_graphics && kgdboc_use_kms) { |
| 274 | dbg_restore_graphics = 1; |
| 275 | con_debug_enter(vc_cons[fg_console].d); |
| 276 | } |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 277 | /* Increment the module count when the debugger is active */ |
| 278 | if (!kgdb_connected) |
| 279 | try_module_get(THIS_MODULE); |
| 280 | } |
| 281 | |
| 282 | static void kgdboc_post_exp_handler(void) |
| 283 | { |
| 284 | /* decrement the module count when the debugger detaches */ |
| 285 | if (!kgdb_connected) |
| 286 | module_put(THIS_MODULE); |
Jason Wessel | 408a4be | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 287 | if (kgdboc_use_kms && dbg_restore_graphics) { |
| 288 | dbg_restore_graphics = 0; |
| 289 | con_debug_leave(); |
| 290 | } |
Dmitry Torokhov | 111c182 | 2010-11-03 11:04:05 -0700 | [diff] [blame] | 291 | kgdboc_restore_input(); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | static struct kgdb_io kgdboc_io_ops = { |
| 295 | .name = "kgdboc", |
| 296 | .read_char = kgdboc_get_char, |
| 297 | .write_char = kgdboc_put_char, |
| 298 | .pre_exception = kgdboc_pre_exp_handler, |
| 299 | .post_exception = kgdboc_post_exp_handler, |
| 300 | }; |
| 301 | |
Jason Wessel | 9731191 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 302 | #ifdef CONFIG_KGDB_SERIAL_CONSOLE |
Laura Abbott | 412091e | 2018-09-19 18:59:01 -0700 | [diff] [blame] | 303 | static int kgdboc_option_setup(char *opt) |
| 304 | { |
| 305 | if (!opt) { |
| 306 | pr_err("config string not provided\n"); |
| 307 | return -EINVAL; |
| 308 | } |
| 309 | |
| 310 | if (strlen(opt) >= MAX_CONFIG_LEN) { |
| 311 | pr_err("config string too long\n"); |
| 312 | return -ENOSPC; |
| 313 | } |
| 314 | strcpy(config, opt); |
| 315 | |
| 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | __setup("kgdboc=", kgdboc_option_setup); |
| 320 | |
| 321 | |
Jason Wessel | 9731191 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 322 | /* This is only available if kgdboc is a built in for early debugging */ |
Jason Wessel | 91b152a | 2010-08-23 09:20:14 -0500 | [diff] [blame] | 323 | static int __init kgdboc_early_init(char *opt) |
Jason Wessel | 9731191 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 324 | { |
| 325 | /* save the first character of the config string because the |
| 326 | * init routine can destroy it. |
| 327 | */ |
| 328 | char save_ch; |
| 329 | |
| 330 | kgdboc_option_setup(opt); |
| 331 | save_ch = config[0]; |
| 332 | init_kgdboc(); |
| 333 | config[0] = save_ch; |
| 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | early_param("ekgdboc", kgdboc_early_init); |
| 338 | #endif /* CONFIG_KGDB_SERIAL_CONSOLE */ |
| 339 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 340 | module_init(init_kgdboc); |
| 341 | module_exit(cleanup_kgdboc); |
| 342 | module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644); |
| 343 | MODULE_PARM_DESC(kgdboc, "<serial_device>[,baud]"); |
| 344 | MODULE_DESCRIPTION("KGDB Console TTY Driver"); |
| 345 | MODULE_LICENSE("GPL"); |