Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 1 | /* |
| 2 | * watchdog_dev.c |
| 3 | * |
| 4 | * (c) Copyright 2008-2011 Alan Cox <alan@lxorguk.ukuu.org.uk>, |
| 5 | * All Rights Reserved. |
| 6 | * |
| 7 | * (c) Copyright 2008-2011 Wim Van Sebroeck <wim@iguana.be>. |
| 8 | * |
| 9 | * |
| 10 | * This source code is part of the generic code that can be used |
| 11 | * by all the watchdog timer drivers. |
| 12 | * |
| 13 | * This part of the generic code takes care of the following |
| 14 | * misc device: /dev/watchdog. |
| 15 | * |
| 16 | * Based on source code of the following authors: |
| 17 | * Matt Domsch <Matt_Domsch@dell.com>, |
| 18 | * Rob Radez <rob@osinvestor.com>, |
| 19 | * Rusty Lynch <rusty@linux.co.intel.com> |
| 20 | * Satyam Sharma <satyam@infradead.org> |
| 21 | * Randy Dunlap <randy.dunlap@oracle.com> |
| 22 | * |
| 23 | * This program is free software; you can redistribute it and/or |
| 24 | * modify it under the terms of the GNU General Public License |
| 25 | * as published by the Free Software Foundation; either version |
| 26 | * 2 of the License, or (at your option) any later version. |
| 27 | * |
| 28 | * Neither Alan Cox, CymruNet Ltd., Wim Van Sebroeck nor Iguana vzw. |
| 29 | * admit liability nor provide warranty for any of this software. |
| 30 | * This material is provided "AS-IS" and at no charge. |
| 31 | */ |
| 32 | |
| 33 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 34 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 35 | #include <linux/cdev.h> /* For character device */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 36 | #include <linux/errno.h> /* For the -ENODEV/... values */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 37 | #include <linux/fs.h> /* For file operations */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 38 | #include <linux/init.h> /* For __init/__exit/... */ |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 39 | #include <linux/jiffies.h> /* For timeout functions */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 40 | #include <linux/kernel.h> /* For printk/panic/... */ |
| 41 | #include <linux/kref.h> /* For data references */ |
| 42 | #include <linux/miscdevice.h> /* For handling misc devices */ |
| 43 | #include <linux/module.h> /* For module stuff/... */ |
| 44 | #include <linux/mutex.h> /* For mutexes */ |
| 45 | #include <linux/slab.h> /* For memory functions */ |
| 46 | #include <linux/types.h> /* For standard types (like size_t) */ |
| 47 | #include <linux/watchdog.h> /* For watchdog specific items */ |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 48 | #include <linux/workqueue.h> /* For workqueue */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 49 | #include <linux/uaccess.h> /* For copy_to_user/put_user/... */ |
| 50 | |
Wim Van Sebroeck | 6cfb5aa | 2012-05-21 15:31:06 +0200 | [diff] [blame] | 51 | #include "watchdog_core.h" |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 52 | #include "watchdog_pretimeout.h" |
H Hartley Sweeten | 09a46e7 | 2012-04-20 13:28:24 -0700 | [diff] [blame] | 53 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 54 | /* |
| 55 | * struct watchdog_core_data - watchdog core internal data |
| 56 | * @kref: Reference count. |
| 57 | * @cdev: The watchdog's Character device. |
| 58 | * @wdd: Pointer to watchdog device. |
| 59 | * @lock: Lock for watchdog core. |
| 60 | * @status: Watchdog core internal status bits. |
| 61 | */ |
| 62 | struct watchdog_core_data { |
| 63 | struct kref kref; |
| 64 | struct cdev cdev; |
| 65 | struct watchdog_device *wdd; |
| 66 | struct mutex lock; |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 67 | unsigned long last_keepalive; |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 68 | unsigned long last_hw_keepalive; |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 69 | struct delayed_work work; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 70 | unsigned long status; /* Internal status bits */ |
| 71 | #define _WDOG_DEV_OPEN 0 /* Opened ? */ |
| 72 | #define _WDOG_ALLOW_RELEASE 1 /* Did we receive the magic char ? */ |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 73 | #define _WDOG_KEEPALIVE 2 /* Did we receive a keepalive ? */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 74 | }; |
| 75 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 76 | /* the dev_t structure to store the dynamically allocated watchdog devices */ |
| 77 | static dev_t watchdog_devt; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 78 | /* Reference to watchdog device behind /dev/watchdog */ |
| 79 | static struct watchdog_core_data *old_wd_data; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 80 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 81 | static struct workqueue_struct *watchdog_wq; |
| 82 | |
Sebastian Reichel | 2501b01 | 2017-05-12 14:05:32 +0200 | [diff] [blame] | 83 | static bool handle_boot_enabled = |
| 84 | IS_ENABLED(CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED); |
| 85 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 86 | static inline bool watchdog_need_worker(struct watchdog_device *wdd) |
| 87 | { |
| 88 | /* All variables in milli-seconds */ |
| 89 | unsigned int hm = wdd->max_hw_heartbeat_ms; |
| 90 | unsigned int t = wdd->timeout * 1000; |
| 91 | |
| 92 | /* |
| 93 | * A worker to generate heartbeat requests is needed if all of the |
| 94 | * following conditions are true. |
| 95 | * - Userspace activated the watchdog. |
| 96 | * - The driver provided a value for the maximum hardware timeout, and |
| 97 | * thus is aware that the framework supports generating heartbeat |
| 98 | * requests. |
| 99 | * - Userspace requests a longer timeout than the hardware can handle. |
Rasmus Villemoes | 3fbfe92 | 2016-07-14 11:16:26 +0200 | [diff] [blame] | 100 | * |
| 101 | * Alternatively, if userspace has not opened the watchdog |
| 102 | * device, we take care of feeding the watchdog if it is |
| 103 | * running. |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 104 | */ |
Rasmus Villemoes | 3fbfe92 | 2016-07-14 11:16:26 +0200 | [diff] [blame] | 105 | return (hm && watchdog_active(wdd) && t > hm) || |
| 106 | (t && !watchdog_active(wdd) && watchdog_hw_running(wdd)); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static long watchdog_next_keepalive(struct watchdog_device *wdd) |
| 110 | { |
| 111 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 112 | unsigned int timeout_ms = wdd->timeout * 1000; |
| 113 | unsigned long keepalive_interval; |
| 114 | unsigned long last_heartbeat; |
| 115 | unsigned long virt_timeout; |
| 116 | unsigned int hw_heartbeat_ms; |
| 117 | |
| 118 | virt_timeout = wd_data->last_keepalive + msecs_to_jiffies(timeout_ms); |
Rasmus Villemoes | 3fbfe92 | 2016-07-14 11:16:26 +0200 | [diff] [blame] | 119 | hw_heartbeat_ms = min_not_zero(timeout_ms, wdd->max_hw_heartbeat_ms); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 120 | keepalive_interval = msecs_to_jiffies(hw_heartbeat_ms / 2); |
| 121 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 122 | if (!watchdog_active(wdd)) |
| 123 | return keepalive_interval; |
| 124 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 125 | /* |
| 126 | * To ensure that the watchdog times out wdd->timeout seconds |
| 127 | * after the most recent ping from userspace, the last |
| 128 | * worker ping has to come in hw_heartbeat_ms before this timeout. |
| 129 | */ |
| 130 | last_heartbeat = virt_timeout - msecs_to_jiffies(hw_heartbeat_ms); |
| 131 | return min_t(long, last_heartbeat - jiffies, keepalive_interval); |
| 132 | } |
| 133 | |
| 134 | static inline void watchdog_update_worker(struct watchdog_device *wdd) |
| 135 | { |
| 136 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 137 | |
| 138 | if (watchdog_need_worker(wdd)) { |
| 139 | long t = watchdog_next_keepalive(wdd); |
| 140 | |
| 141 | if (t > 0) |
| 142 | mod_delayed_work(watchdog_wq, &wd_data->work, t); |
| 143 | } else { |
| 144 | cancel_delayed_work(&wd_data->work); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | static int __watchdog_ping(struct watchdog_device *wdd) |
| 149 | { |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 150 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 151 | unsigned long earliest_keepalive = wd_data->last_hw_keepalive + |
| 152 | msecs_to_jiffies(wdd->min_hw_heartbeat_ms); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 153 | int err; |
| 154 | |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 155 | if (time_is_after_jiffies(earliest_keepalive)) { |
| 156 | mod_delayed_work(watchdog_wq, &wd_data->work, |
| 157 | earliest_keepalive - jiffies); |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | wd_data->last_hw_keepalive = jiffies; |
| 162 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 163 | if (wdd->ops->ping) |
| 164 | err = wdd->ops->ping(wdd); /* ping the watchdog */ |
| 165 | else |
| 166 | err = wdd->ops->start(wdd); /* restart watchdog */ |
| 167 | |
| 168 | watchdog_update_worker(wdd); |
| 169 | |
| 170 | return err; |
| 171 | } |
| 172 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 173 | /* |
| 174 | * watchdog_ping: ping the watchdog. |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 175 | * @wdd: the watchdog device to ping |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 176 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 177 | * The caller must hold wd_data->lock. |
| 178 | * |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 179 | * If the watchdog has no own ping operation then it needs to be |
| 180 | * restarted via the start operation. This wrapper function does |
| 181 | * exactly that. |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 182 | * We only ping when the watchdog device is running. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 183 | */ |
| 184 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 185 | static int watchdog_ping(struct watchdog_device *wdd) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 186 | { |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 187 | struct watchdog_core_data *wd_data = wdd->wd_data; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 188 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 189 | if (!watchdog_active(wdd) && !watchdog_hw_running(wdd)) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 190 | return 0; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 191 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 192 | set_bit(_WDOG_KEEPALIVE, &wd_data->status); |
| 193 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 194 | wd_data->last_keepalive = jiffies; |
| 195 | return __watchdog_ping(wdd); |
| 196 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 197 | |
Rasmus Villemoes | c013b65 | 2017-05-30 10:56:45 +0200 | [diff] [blame] | 198 | static bool watchdog_worker_should_ping(struct watchdog_core_data *wd_data) |
| 199 | { |
| 200 | struct watchdog_device *wdd = wd_data->wdd; |
| 201 | |
| 202 | return wdd && (watchdog_active(wdd) || watchdog_hw_running(wdd)); |
| 203 | } |
| 204 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 205 | static void watchdog_ping_work(struct work_struct *work) |
| 206 | { |
| 207 | struct watchdog_core_data *wd_data; |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 208 | |
| 209 | wd_data = container_of(to_delayed_work(work), struct watchdog_core_data, |
| 210 | work); |
| 211 | |
| 212 | mutex_lock(&wd_data->lock); |
Rasmus Villemoes | c013b65 | 2017-05-30 10:56:45 +0200 | [diff] [blame] | 213 | if (watchdog_worker_should_ping(wd_data)) |
| 214 | __watchdog_ping(wd_data->wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 215 | mutex_unlock(&wd_data->lock); |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | /* |
| 219 | * watchdog_start: wrapper to start the watchdog. |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 220 | * @wdd: the watchdog device to start |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 221 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 222 | * The caller must hold wd_data->lock. |
| 223 | * |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 224 | * Start the watchdog if it is not active and mark it active. |
| 225 | * This function returns zero on success or a negative errno code for |
| 226 | * failure. |
| 227 | */ |
| 228 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 229 | static int watchdog_start(struct watchdog_device *wdd) |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 230 | { |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 231 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 232 | unsigned long started_at; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 233 | int err; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 234 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 235 | if (watchdog_active(wdd)) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 236 | return 0; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 237 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 238 | set_bit(_WDOG_KEEPALIVE, &wd_data->status); |
| 239 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 240 | started_at = jiffies; |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 241 | if (watchdog_hw_running(wdd) && wdd->ops->ping) |
| 242 | err = wdd->ops->ping(wdd); |
| 243 | else |
| 244 | err = wdd->ops->start(wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 245 | if (err == 0) { |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 246 | set_bit(WDOG_ACTIVE, &wdd->status); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 247 | wd_data->last_keepalive = started_at; |
| 248 | watchdog_update_worker(wdd); |
| 249 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 250 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 251 | return err; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | /* |
| 255 | * watchdog_stop: wrapper to stop the watchdog. |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 256 | * @wdd: the watchdog device to stop |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 257 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 258 | * The caller must hold wd_data->lock. |
| 259 | * |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 260 | * Stop the watchdog if it is still active and unmark it active. |
| 261 | * This function returns zero on success or a negative errno code for |
| 262 | * failure. |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 263 | * If the 'nowayout' feature was set, the watchdog cannot be stopped. |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 264 | */ |
| 265 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 266 | static int watchdog_stop(struct watchdog_device *wdd) |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 267 | { |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 268 | int err = 0; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 269 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 270 | if (!watchdog_active(wdd)) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 271 | return 0; |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 272 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 273 | if (test_bit(WDOG_NO_WAY_OUT, &wdd->status)) { |
Guenter Roeck | 0254e95 | 2016-01-03 15:11:58 -0800 | [diff] [blame] | 274 | pr_info("watchdog%d: nowayout prevents watchdog being stopped!\n", |
| 275 | wdd->id); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 276 | return -EBUSY; |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 277 | } |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 278 | |
Guenter Roeck | 3c10bbd | 2016-07-21 14:21:56 -0700 | [diff] [blame] | 279 | if (wdd->ops->stop) { |
| 280 | clear_bit(WDOG_HW_RUNNING, &wdd->status); |
Guenter Roeck | d0684c8 | 2016-02-28 13:12:17 -0800 | [diff] [blame] | 281 | err = wdd->ops->stop(wdd); |
Guenter Roeck | 3c10bbd | 2016-07-21 14:21:56 -0700 | [diff] [blame] | 282 | } else { |
Guenter Roeck | d0684c8 | 2016-02-28 13:12:17 -0800 | [diff] [blame] | 283 | set_bit(WDOG_HW_RUNNING, &wdd->status); |
Guenter Roeck | 3c10bbd | 2016-07-21 14:21:56 -0700 | [diff] [blame] | 284 | } |
Guenter Roeck | d0684c8 | 2016-02-28 13:12:17 -0800 | [diff] [blame] | 285 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 286 | if (err == 0) { |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 287 | clear_bit(WDOG_ACTIVE, &wdd->status); |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 288 | watchdog_update_worker(wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 289 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 290 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 291 | return err; |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * watchdog_get_status: wrapper to get the watchdog status |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 296 | * @wdd: the watchdog device to get the status from |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 297 | * |
| 298 | * The caller must hold wd_data->lock. |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 299 | * |
| 300 | * Get the watchdog's status flags. |
| 301 | */ |
| 302 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 303 | static unsigned int watchdog_get_status(struct watchdog_device *wdd) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 304 | { |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 305 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 306 | unsigned int status; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 307 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 308 | if (wdd->ops->status) |
| 309 | status = wdd->ops->status(wdd); |
| 310 | else |
| 311 | status = wdd->bootstatus & (WDIOF_CARDRESET | |
| 312 | WDIOF_OVERHEAT | |
| 313 | WDIOF_FANFAULT | |
| 314 | WDIOF_EXTERN1 | |
| 315 | WDIOF_EXTERN2 | |
| 316 | WDIOF_POWERUNDER | |
| 317 | WDIOF_POWEROVER); |
| 318 | |
| 319 | if (test_bit(_WDOG_ALLOW_RELEASE, &wd_data->status)) |
| 320 | status |= WDIOF_MAGICCLOSE; |
| 321 | |
| 322 | if (test_and_clear_bit(_WDOG_KEEPALIVE, &wd_data->status)) |
| 323 | status |= WDIOF_KEEPALIVEPING; |
| 324 | |
| 325 | return status; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | /* |
| 329 | * watchdog_set_timeout: set the watchdog timer timeout |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 330 | * @wdd: the watchdog device to set the timeout for |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 331 | * @timeout: timeout to set in seconds |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 332 | * |
| 333 | * The caller must hold wd_data->lock. |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 334 | */ |
| 335 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 336 | static int watchdog_set_timeout(struct watchdog_device *wdd, |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 337 | unsigned int timeout) |
| 338 | { |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 339 | int err = 0; |
| 340 | |
| 341 | if (!(wdd->info->options & WDIOF_SETTIMEOUT)) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 342 | return -EOPNOTSUPP; |
| 343 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 344 | if (watchdog_timeout_invalid(wdd, timeout)) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 345 | return -EINVAL; |
| 346 | |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 347 | if (wdd->ops->set_timeout) { |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 348 | err = wdd->ops->set_timeout(wdd, timeout); |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 349 | } else { |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 350 | wdd->timeout = timeout; |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 351 | /* Disable pretimeout if it doesn't fit the new timeout */ |
| 352 | if (wdd->pretimeout >= wdd->timeout) |
| 353 | wdd->pretimeout = 0; |
| 354 | } |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 355 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 356 | watchdog_update_worker(wdd); |
| 357 | |
Guenter Roeck | fb32e9b | 2016-02-28 13:12:14 -0800 | [diff] [blame] | 358 | return err; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /* |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 362 | * watchdog_set_pretimeout: set the watchdog timer pretimeout |
| 363 | * @wdd: the watchdog device to set the timeout for |
| 364 | * @timeout: pretimeout to set in seconds |
| 365 | */ |
| 366 | |
| 367 | static int watchdog_set_pretimeout(struct watchdog_device *wdd, |
| 368 | unsigned int timeout) |
| 369 | { |
| 370 | int err = 0; |
| 371 | |
| 372 | if (!(wdd->info->options & WDIOF_PRETIMEOUT)) |
| 373 | return -EOPNOTSUPP; |
| 374 | |
| 375 | if (watchdog_pretimeout_invalid(wdd, timeout)) |
| 376 | return -EINVAL; |
| 377 | |
| 378 | if (wdd->ops->set_pretimeout) |
| 379 | err = wdd->ops->set_pretimeout(wdd, timeout); |
| 380 | else |
| 381 | wdd->pretimeout = timeout; |
| 382 | |
| 383 | return err; |
| 384 | } |
| 385 | |
| 386 | /* |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 387 | * watchdog_get_timeleft: wrapper to get the time left before a reboot |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 388 | * @wdd: the watchdog device to get the remaining time from |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 389 | * @timeleft: the time that's left |
| 390 | * |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 391 | * The caller must hold wd_data->lock. |
| 392 | * |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 393 | * Get the time before a watchdog will reboot (if not pinged). |
| 394 | */ |
| 395 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 396 | static int watchdog_get_timeleft(struct watchdog_device *wdd, |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 397 | unsigned int *timeleft) |
| 398 | { |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 399 | *timeleft = 0; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 400 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 401 | if (!wdd->ops->get_timeleft) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 402 | return -EOPNOTSUPP; |
| 403 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 404 | *timeleft = wdd->ops->get_timeleft(wdd); |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 405 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 406 | return 0; |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 407 | } |
| 408 | |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 409 | #ifdef CONFIG_WATCHDOG_SYSFS |
| 410 | static ssize_t nowayout_show(struct device *dev, struct device_attribute *attr, |
| 411 | char *buf) |
| 412 | { |
| 413 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 414 | |
| 415 | return sprintf(buf, "%d\n", !!test_bit(WDOG_NO_WAY_OUT, &wdd->status)); |
| 416 | } |
| 417 | static DEVICE_ATTR_RO(nowayout); |
| 418 | |
| 419 | static ssize_t status_show(struct device *dev, struct device_attribute *attr, |
| 420 | char *buf) |
| 421 | { |
| 422 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 423 | struct watchdog_core_data *wd_data = wdd->wd_data; |
| 424 | unsigned int status; |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 425 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 426 | mutex_lock(&wd_data->lock); |
| 427 | status = watchdog_get_status(wdd); |
| 428 | mutex_unlock(&wd_data->lock); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 429 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 430 | return sprintf(buf, "0x%x\n", status); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 431 | } |
| 432 | static DEVICE_ATTR_RO(status); |
| 433 | |
| 434 | static ssize_t bootstatus_show(struct device *dev, |
| 435 | struct device_attribute *attr, char *buf) |
| 436 | { |
| 437 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 438 | |
| 439 | return sprintf(buf, "%u\n", wdd->bootstatus); |
| 440 | } |
| 441 | static DEVICE_ATTR_RO(bootstatus); |
| 442 | |
| 443 | static ssize_t timeleft_show(struct device *dev, struct device_attribute *attr, |
| 444 | char *buf) |
| 445 | { |
| 446 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 447 | struct watchdog_core_data *wd_data = wdd->wd_data; |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 448 | ssize_t status; |
| 449 | unsigned int val; |
| 450 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 451 | mutex_lock(&wd_data->lock); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 452 | status = watchdog_get_timeleft(wdd, &val); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 453 | mutex_unlock(&wd_data->lock); |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 454 | if (!status) |
| 455 | status = sprintf(buf, "%u\n", val); |
| 456 | |
| 457 | return status; |
| 458 | } |
| 459 | static DEVICE_ATTR_RO(timeleft); |
| 460 | |
| 461 | static ssize_t timeout_show(struct device *dev, struct device_attribute *attr, |
| 462 | char *buf) |
| 463 | { |
| 464 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 465 | |
| 466 | return sprintf(buf, "%u\n", wdd->timeout); |
| 467 | } |
| 468 | static DEVICE_ATTR_RO(timeout); |
| 469 | |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 470 | static ssize_t pretimeout_show(struct device *dev, |
| 471 | struct device_attribute *attr, char *buf) |
| 472 | { |
| 473 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 474 | |
| 475 | return sprintf(buf, "%u\n", wdd->pretimeout); |
| 476 | } |
| 477 | static DEVICE_ATTR_RO(pretimeout); |
| 478 | |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 479 | static ssize_t identity_show(struct device *dev, struct device_attribute *attr, |
| 480 | char *buf) |
| 481 | { |
| 482 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 483 | |
| 484 | return sprintf(buf, "%s\n", wdd->info->identity); |
| 485 | } |
| 486 | static DEVICE_ATTR_RO(identity); |
| 487 | |
| 488 | static ssize_t state_show(struct device *dev, struct device_attribute *attr, |
| 489 | char *buf) |
| 490 | { |
| 491 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 492 | |
| 493 | if (watchdog_active(wdd)) |
| 494 | return sprintf(buf, "active\n"); |
| 495 | |
| 496 | return sprintf(buf, "inactive\n"); |
| 497 | } |
| 498 | static DEVICE_ATTR_RO(state); |
| 499 | |
Vladimir Zapolskiy | 89873a7 | 2016-10-07 15:39:57 +0300 | [diff] [blame] | 500 | static ssize_t pretimeout_available_governors_show(struct device *dev, |
| 501 | struct device_attribute *attr, char *buf) |
| 502 | { |
| 503 | return watchdog_pretimeout_available_governors_get(buf); |
| 504 | } |
| 505 | static DEVICE_ATTR_RO(pretimeout_available_governors); |
| 506 | |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 507 | static ssize_t pretimeout_governor_show(struct device *dev, |
| 508 | struct device_attribute *attr, |
| 509 | char *buf) |
| 510 | { |
| 511 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 512 | |
| 513 | return watchdog_pretimeout_governor_get(wdd, buf); |
| 514 | } |
Vladimir Zapolskiy | 53f96ce | 2016-10-07 15:37:00 +0300 | [diff] [blame] | 515 | |
| 516 | static ssize_t pretimeout_governor_store(struct device *dev, |
| 517 | struct device_attribute *attr, |
| 518 | const char *buf, size_t count) |
| 519 | { |
| 520 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 521 | int ret = watchdog_pretimeout_governor_set(wdd, buf); |
| 522 | |
| 523 | if (!ret) |
| 524 | ret = count; |
| 525 | |
| 526 | return ret; |
| 527 | } |
| 528 | static DEVICE_ATTR_RW(pretimeout_governor); |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 529 | |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 530 | static umode_t wdt_is_visible(struct kobject *kobj, struct attribute *attr, |
| 531 | int n) |
| 532 | { |
| 533 | struct device *dev = container_of(kobj, struct device, kobj); |
| 534 | struct watchdog_device *wdd = dev_get_drvdata(dev); |
| 535 | umode_t mode = attr->mode; |
| 536 | |
Guenter Roeck | 90b826f | 2016-07-17 15:04:11 -0700 | [diff] [blame] | 537 | if (attr == &dev_attr_timeleft.attr && !wdd->ops->get_timeleft) |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 538 | mode = 0; |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 539 | else if (attr == &dev_attr_pretimeout.attr && |
| 540 | !(wdd->info->options & WDIOF_PRETIMEOUT)) |
| 541 | mode = 0; |
Vladimir Zapolskiy | 89873a7 | 2016-10-07 15:39:57 +0300 | [diff] [blame] | 542 | else if ((attr == &dev_attr_pretimeout_governor.attr || |
| 543 | attr == &dev_attr_pretimeout_available_governors.attr) && |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 544 | (!(wdd->info->options & WDIOF_PRETIMEOUT) || |
| 545 | !IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_GOV))) |
| 546 | mode = 0; |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 547 | |
| 548 | return mode; |
| 549 | } |
| 550 | static struct attribute *wdt_attrs[] = { |
| 551 | &dev_attr_state.attr, |
| 552 | &dev_attr_identity.attr, |
| 553 | &dev_attr_timeout.attr, |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 554 | &dev_attr_pretimeout.attr, |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 555 | &dev_attr_timeleft.attr, |
| 556 | &dev_attr_bootstatus.attr, |
| 557 | &dev_attr_status.attr, |
| 558 | &dev_attr_nowayout.attr, |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 559 | &dev_attr_pretimeout_governor.attr, |
Vladimir Zapolskiy | 89873a7 | 2016-10-07 15:39:57 +0300 | [diff] [blame] | 560 | &dev_attr_pretimeout_available_governors.attr, |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 561 | NULL, |
| 562 | }; |
| 563 | |
| 564 | static const struct attribute_group wdt_group = { |
| 565 | .attrs = wdt_attrs, |
| 566 | .is_visible = wdt_is_visible, |
| 567 | }; |
| 568 | __ATTRIBUTE_GROUPS(wdt); |
| 569 | #else |
| 570 | #define wdt_groups NULL |
| 571 | #endif |
| 572 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 573 | /* |
| 574 | * watchdog_ioctl_op: call the watchdog drivers ioctl op if defined |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 575 | * @wdd: the watchdog device to do the ioctl on |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 576 | * @cmd: watchdog command |
| 577 | * @arg: argument pointer |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 578 | * |
| 579 | * The caller must hold wd_data->lock. |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 580 | */ |
| 581 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 582 | static int watchdog_ioctl_op(struct watchdog_device *wdd, unsigned int cmd, |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 583 | unsigned long arg) |
| 584 | { |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 585 | if (!wdd->ops->ioctl) |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 586 | return -ENOIOCTLCMD; |
| 587 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 588 | return wdd->ops->ioctl(wdd, cmd, arg); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | /* |
| 592 | * watchdog_write: writes to the watchdog. |
| 593 | * @file: file from VFS |
| 594 | * @data: user address of data |
| 595 | * @len: length of data |
| 596 | * @ppos: pointer to the file offset |
| 597 | * |
| 598 | * A write to a watchdog device is defined as a keepalive ping. |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 599 | * Writing the magic 'V' sequence allows the next close to turn |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 600 | * off the watchdog (if 'nowayout' is not set). |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 601 | */ |
| 602 | |
| 603 | static ssize_t watchdog_write(struct file *file, const char __user *data, |
| 604 | size_t len, loff_t *ppos) |
| 605 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 606 | struct watchdog_core_data *wd_data = file->private_data; |
| 607 | struct watchdog_device *wdd; |
| 608 | int err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 609 | size_t i; |
| 610 | char c; |
| 611 | |
| 612 | if (len == 0) |
| 613 | return 0; |
| 614 | |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 615 | /* |
| 616 | * Note: just in case someone wrote the magic character |
| 617 | * five months ago... |
| 618 | */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 619 | clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status); |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 620 | |
| 621 | /* scan to see whether or not we got the magic character */ |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 622 | for (i = 0; i != len; i++) { |
| 623 | if (get_user(c, data + i)) |
| 624 | return -EFAULT; |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 625 | if (c == 'V') |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 626 | set_bit(_WDOG_ALLOW_RELEASE, &wd_data->status); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | /* someone wrote to us, so we send the watchdog a keepalive ping */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 630 | |
| 631 | err = -ENODEV; |
| 632 | mutex_lock(&wd_data->lock); |
| 633 | wdd = wd_data->wdd; |
| 634 | if (wdd) |
| 635 | err = watchdog_ping(wdd); |
| 636 | mutex_unlock(&wd_data->lock); |
| 637 | |
Alexander Usyskin | 5ef7966 | 2015-10-26 14:07:58 +0200 | [diff] [blame] | 638 | if (err < 0) |
| 639 | return err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 640 | |
| 641 | return len; |
| 642 | } |
| 643 | |
| 644 | /* |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 645 | * watchdog_ioctl: handle the different ioctl's for the watchdog device. |
| 646 | * @file: file handle to the device |
| 647 | * @cmd: watchdog command |
| 648 | * @arg: argument pointer |
| 649 | * |
| 650 | * The watchdog API defines a common set of functions for all watchdogs |
| 651 | * according to their available features. |
| 652 | */ |
| 653 | |
| 654 | static long watchdog_ioctl(struct file *file, unsigned int cmd, |
| 655 | unsigned long arg) |
| 656 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 657 | struct watchdog_core_data *wd_data = file->private_data; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 658 | void __user *argp = (void __user *)arg; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 659 | struct watchdog_device *wdd; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 660 | int __user *p = argp; |
| 661 | unsigned int val; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 662 | int err; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 663 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 664 | mutex_lock(&wd_data->lock); |
| 665 | |
| 666 | wdd = wd_data->wdd; |
| 667 | if (!wdd) { |
| 668 | err = -ENODEV; |
| 669 | goto out_ioctl; |
| 670 | } |
| 671 | |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 672 | err = watchdog_ioctl_op(wdd, cmd, arg); |
| 673 | if (err != -ENOIOCTLCMD) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 674 | goto out_ioctl; |
Wim Van Sebroeck | 78d88fc | 2011-07-22 18:59:49 +0000 | [diff] [blame] | 675 | |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 676 | switch (cmd) { |
| 677 | case WDIOC_GETSUPPORT: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 678 | err = copy_to_user(argp, wdd->info, |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 679 | sizeof(struct watchdog_info)) ? -EFAULT : 0; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 680 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 681 | case WDIOC_GETSTATUS: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 682 | val = watchdog_get_status(wdd); |
| 683 | err = put_user(val, p); |
| 684 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 685 | case WDIOC_GETBOOTSTATUS: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 686 | err = put_user(wdd->bootstatus, p); |
| 687 | break; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 688 | case WDIOC_SETOPTIONS: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 689 | if (get_user(val, p)) { |
| 690 | err = -EFAULT; |
| 691 | break; |
| 692 | } |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 693 | if (val & WDIOS_DISABLECARD) { |
| 694 | err = watchdog_stop(wdd); |
| 695 | if (err < 0) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 696 | break; |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 697 | } |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 698 | if (val & WDIOS_ENABLECARD) |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 699 | err = watchdog_start(wdd); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 700 | break; |
Wim Van Sebroeck | c2dc00e | 2011-07-22 18:57:23 +0000 | [diff] [blame] | 701 | case WDIOC_KEEPALIVE: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 702 | if (!(wdd->info->options & WDIOF_KEEPALIVEPING)) { |
| 703 | err = -EOPNOTSUPP; |
| 704 | break; |
| 705 | } |
| 706 | err = watchdog_ping(wdd); |
| 707 | break; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 708 | case WDIOC_SETTIMEOUT: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 709 | if (get_user(val, p)) { |
| 710 | err = -EFAULT; |
| 711 | break; |
| 712 | } |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 713 | err = watchdog_set_timeout(wdd, val); |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 714 | if (err < 0) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 715 | break; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 716 | /* If the watchdog is active then we send a keepalive ping |
| 717 | * to make sure that the watchdog keep's running (and if |
| 718 | * possible that it takes the new timeout) */ |
Alexander Usyskin | 5ef7966 | 2015-10-26 14:07:58 +0200 | [diff] [blame] | 719 | err = watchdog_ping(wdd); |
| 720 | if (err < 0) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 721 | break; |
Wim Van Sebroeck | 014d694 | 2011-07-22 18:58:21 +0000 | [diff] [blame] | 722 | /* Fall */ |
| 723 | case WDIOC_GETTIMEOUT: |
| 724 | /* timeout == 0 means that we don't know the timeout */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 725 | if (wdd->timeout == 0) { |
| 726 | err = -EOPNOTSUPP; |
| 727 | break; |
| 728 | } |
| 729 | err = put_user(wdd->timeout, p); |
| 730 | break; |
Viresh Kumar | fd7b673 | 2012-03-16 09:14:00 +0100 | [diff] [blame] | 731 | case WDIOC_GETTIMELEFT: |
Hans de Goede | 7a87982 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 732 | err = watchdog_get_timeleft(wdd, &val); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 733 | if (err < 0) |
| 734 | break; |
| 735 | err = put_user(val, p); |
| 736 | break; |
Wolfram Sang | df044e0 | 2016-08-31 14:52:41 +0300 | [diff] [blame] | 737 | case WDIOC_SETPRETIMEOUT: |
| 738 | if (get_user(val, p)) { |
| 739 | err = -EFAULT; |
| 740 | break; |
| 741 | } |
| 742 | err = watchdog_set_pretimeout(wdd, val); |
| 743 | break; |
| 744 | case WDIOC_GETPRETIMEOUT: |
| 745 | err = put_user(wdd->pretimeout, p); |
| 746 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 747 | default: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 748 | err = -ENOTTY; |
| 749 | break; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 750 | } |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 751 | |
| 752 | out_ioctl: |
| 753 | mutex_unlock(&wd_data->lock); |
| 754 | return err; |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | /* |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 758 | * watchdog_open: open the /dev/watchdog* devices. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 759 | * @inode: inode of device |
| 760 | * @file: file handle to device |
| 761 | * |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 762 | * When the /dev/watchdog* device gets opened, we start the watchdog. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 763 | * Watch out: the /dev/watchdog device is single open, so we make sure |
| 764 | * it can only be opened once. |
| 765 | */ |
| 766 | |
| 767 | static int watchdog_open(struct inode *inode, struct file *file) |
| 768 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 769 | struct watchdog_core_data *wd_data; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 770 | struct watchdog_device *wdd; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 771 | int err; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 772 | |
| 773 | /* Get the corresponding watchdog device */ |
| 774 | if (imajor(inode) == MISC_MAJOR) |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 775 | wd_data = old_wd_data; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 776 | else |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 777 | wd_data = container_of(inode->i_cdev, struct watchdog_core_data, |
| 778 | cdev); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 779 | |
| 780 | /* the watchdog is single open! */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 781 | if (test_and_set_bit(_WDOG_DEV_OPEN, &wd_data->status)) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 782 | return -EBUSY; |
| 783 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 784 | wdd = wd_data->wdd; |
| 785 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 786 | /* |
| 787 | * If the /dev/watchdog device is open, we don't want the module |
| 788 | * to be unloaded. |
| 789 | */ |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 790 | if (!watchdog_hw_running(wdd) && !try_module_get(wdd->ops->owner)) { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 791 | err = -EBUSY; |
| 792 | goto out_clear; |
| 793 | } |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 794 | |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 795 | err = watchdog_start(wdd); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 796 | if (err < 0) |
| 797 | goto out_mod; |
| 798 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 799 | file->private_data = wd_data; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 800 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 801 | if (!watchdog_hw_running(wdd)) |
| 802 | kref_get(&wd_data->kref); |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 803 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 804 | /* dev/watchdog is a virtual (and thus non-seekable) filesystem */ |
| 805 | return nonseekable_open(inode, file); |
| 806 | |
| 807 | out_mod: |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 808 | module_put(wd_data->wdd->ops->owner); |
| 809 | out_clear: |
| 810 | clear_bit(_WDOG_DEV_OPEN, &wd_data->status); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 811 | return err; |
| 812 | } |
| 813 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 814 | static void watchdog_core_data_release(struct kref *kref) |
| 815 | { |
| 816 | struct watchdog_core_data *wd_data; |
| 817 | |
| 818 | wd_data = container_of(kref, struct watchdog_core_data, kref); |
| 819 | |
| 820 | kfree(wd_data); |
| 821 | } |
| 822 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 823 | /* |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 824 | * watchdog_release: release the watchdog device. |
| 825 | * @inode: inode of device |
| 826 | * @file: file handle to device |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 827 | * |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 828 | * This is the code for when /dev/watchdog gets closed. We will only |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 829 | * stop the watchdog when we have received the magic char (and nowayout |
| 830 | * was not set), else the watchdog will keep running. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 831 | */ |
| 832 | |
| 833 | static int watchdog_release(struct inode *inode, struct file *file) |
| 834 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 835 | struct watchdog_core_data *wd_data = file->private_data; |
| 836 | struct watchdog_device *wdd; |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 837 | int err = -EBUSY; |
Guenter Roeck | d1ed3ba | 2016-03-08 18:46:13 -0800 | [diff] [blame] | 838 | bool running; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 839 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 840 | mutex_lock(&wd_data->lock); |
| 841 | |
| 842 | wdd = wd_data->wdd; |
| 843 | if (!wdd) |
| 844 | goto done; |
| 845 | |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 846 | /* |
| 847 | * We only stop the watchdog if we received the magic character |
Wim Van Sebroeck | 7e192b9 | 2011-07-22 18:59:17 +0000 | [diff] [blame] | 848 | * or if WDIOF_MAGICCLOSE is not set. If nowayout was set then |
| 849 | * watchdog_stop will fail. |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 850 | */ |
Hector Palacios | fcf9567 | 2013-04-08 17:06:32 +0200 | [diff] [blame] | 851 | if (!test_bit(WDOG_ACTIVE, &wdd->status)) |
| 852 | err = 0; |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 853 | else if (test_and_clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status) || |
Hector Palacios | fcf9567 | 2013-04-08 17:06:32 +0200 | [diff] [blame] | 854 | !(wdd->info->options & WDIOF_MAGICCLOSE)) |
Wim Van Sebroeck | 017cf08 | 2011-07-22 18:58:54 +0000 | [diff] [blame] | 855 | err = watchdog_stop(wdd); |
| 856 | |
| 857 | /* If the watchdog was not stopped, send a keepalive ping */ |
Wim Van Sebroeck | 234445b | 2011-07-22 18:57:55 +0000 | [diff] [blame] | 858 | if (err < 0) { |
Guenter Roeck | 0254e95 | 2016-01-03 15:11:58 -0800 | [diff] [blame] | 859 | pr_crit("watchdog%d: watchdog did not stop!\n", wdd->id); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 860 | watchdog_ping(wdd); |
| 861 | } |
| 862 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 863 | watchdog_update_worker(wdd); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 864 | |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 865 | /* make sure that /dev/watchdog can be re-opened */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 866 | clear_bit(_WDOG_DEV_OPEN, &wd_data->status); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 867 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 868 | done: |
Guenter Roeck | d1ed3ba | 2016-03-08 18:46:13 -0800 | [diff] [blame] | 869 | running = wdd && watchdog_hw_running(wdd); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 870 | mutex_unlock(&wd_data->lock); |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 871 | /* |
| 872 | * Allow the owner module to be unloaded again unless the watchdog |
| 873 | * is still running. If the watchdog is still running, it can not |
| 874 | * be stopped, and its driver must not be unloaded. |
| 875 | */ |
Guenter Roeck | d1ed3ba | 2016-03-08 18:46:13 -0800 | [diff] [blame] | 876 | if (!running) { |
| 877 | module_put(wd_data->cdev.owner); |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 878 | kref_put(&wd_data->kref, watchdog_core_data_release); |
| 879 | } |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 880 | return 0; |
| 881 | } |
| 882 | |
| 883 | static const struct file_operations watchdog_fops = { |
| 884 | .owner = THIS_MODULE, |
| 885 | .write = watchdog_write, |
Wim Van Sebroeck | 2fa0356 | 2011-07-22 18:56:38 +0000 | [diff] [blame] | 886 | .unlocked_ioctl = watchdog_ioctl, |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 887 | .open = watchdog_open, |
| 888 | .release = watchdog_release, |
| 889 | }; |
| 890 | |
| 891 | static struct miscdevice watchdog_miscdev = { |
| 892 | .minor = WATCHDOG_MINOR, |
| 893 | .name = "watchdog", |
| 894 | .fops = &watchdog_fops, |
| 895 | }; |
| 896 | |
| 897 | /* |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 898 | * watchdog_cdev_register: register watchdog character device |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 899 | * @wdd: watchdog device |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 900 | * @devno: character device number |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 901 | * |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 902 | * Register a watchdog character device including handling the legacy |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 903 | * /dev/watchdog node. /dev/watchdog is actually a miscdevice and |
| 904 | * thus we set it up like that. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 905 | */ |
| 906 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 907 | static int watchdog_cdev_register(struct watchdog_device *wdd, dev_t devno) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 908 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 909 | struct watchdog_core_data *wd_data; |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 910 | int err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 911 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 912 | wd_data = kzalloc(sizeof(struct watchdog_core_data), GFP_KERNEL); |
| 913 | if (!wd_data) |
| 914 | return -ENOMEM; |
| 915 | kref_init(&wd_data->kref); |
| 916 | mutex_init(&wd_data->lock); |
| 917 | |
| 918 | wd_data->wdd = wdd; |
| 919 | wdd->wd_data = wd_data; |
| 920 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 921 | if (!watchdog_wq) |
| 922 | return -ENODEV; |
| 923 | |
| 924 | INIT_DELAYED_WORK(&wd_data->work, watchdog_ping_work); |
| 925 | |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 926 | if (wdd->id == 0) { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 927 | old_wd_data = wd_data; |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 928 | watchdog_miscdev.parent = wdd->parent; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 929 | err = misc_register(&watchdog_miscdev); |
| 930 | if (err != 0) { |
| 931 | pr_err("%s: cannot register miscdev on minor=%d (err=%d).\n", |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 932 | wdd->info->identity, WATCHDOG_MINOR, err); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 933 | if (err == -EBUSY) |
| 934 | pr_err("%s: a legacy watchdog module is probably present.\n", |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 935 | wdd->info->identity); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 936 | old_wd_data = NULL; |
| 937 | kfree(wd_data); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 938 | return err; |
| 939 | } |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 940 | } |
| 941 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 942 | /* Fill in the data structures */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 943 | cdev_init(&wd_data->cdev, &watchdog_fops); |
| 944 | wd_data->cdev.owner = wdd->ops->owner; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 945 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 946 | /* Add the device */ |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 947 | err = cdev_add(&wd_data->cdev, devno, 1); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 948 | if (err) { |
| 949 | pr_err("watchdog%d unable to add device %d:%d\n", |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 950 | wdd->id, MAJOR(watchdog_devt), wdd->id); |
| 951 | if (wdd->id == 0) { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 952 | misc_deregister(&watchdog_miscdev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 953 | old_wd_data = NULL; |
| 954 | kref_put(&wd_data->kref, watchdog_core_data_release); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 955 | } |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 956 | return err; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 957 | } |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 958 | |
Guenter Roeck | 15013ad | 2016-02-28 13:12:18 -0800 | [diff] [blame] | 959 | /* Record time of most recent heartbeat as 'just before now'. */ |
| 960 | wd_data->last_hw_keepalive = jiffies - 1; |
| 961 | |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 962 | /* |
| 963 | * If the watchdog is running, prevent its driver from being unloaded, |
| 964 | * and schedule an immediate ping. |
| 965 | */ |
| 966 | if (watchdog_hw_running(wdd)) { |
Sebastian Reichel | 2501b01 | 2017-05-12 14:05:32 +0200 | [diff] [blame] | 967 | if (handle_boot_enabled) { |
| 968 | __module_get(wdd->ops->owner); |
| 969 | kref_get(&wd_data->kref); |
| 970 | queue_delayed_work(watchdog_wq, &wd_data->work, 0); |
| 971 | } else { |
| 972 | pr_info("watchdog%d running and kernel based pre-userspace handler disabled\n", |
| 973 | wdd->id); |
| 974 | } |
Guenter Roeck | ee14288 | 2016-02-28 13:12:16 -0800 | [diff] [blame] | 975 | } |
| 976 | |
| 977 | return 0; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | /* |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 981 | * watchdog_cdev_unregister: unregister watchdog character device |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 982 | * @watchdog: watchdog device |
| 983 | * |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 984 | * Unregister watchdog character device and if needed the legacy |
| 985 | * /dev/watchdog device. |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 986 | */ |
| 987 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 988 | static void watchdog_cdev_unregister(struct watchdog_device *wdd) |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 989 | { |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 990 | struct watchdog_core_data *wd_data = wdd->wd_data; |
Hans de Goede | e907df3 | 2012-05-22 11:40:26 +0200 | [diff] [blame] | 991 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 992 | cdev_del(&wd_data->cdev); |
Guenter Roeck | bc794ac | 2015-09-29 01:27:25 -0700 | [diff] [blame] | 993 | if (wdd->id == 0) { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 994 | misc_deregister(&watchdog_miscdev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 995 | old_wd_data = NULL; |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 996 | } |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 997 | |
| 998 | mutex_lock(&wd_data->lock); |
| 999 | wd_data->wdd = NULL; |
| 1000 | wdd->wd_data = NULL; |
| 1001 | mutex_unlock(&wd_data->lock); |
| 1002 | |
Guenter Roeck | bb292ac | 2017-01-25 14:21:10 -0800 | [diff] [blame] | 1003 | if (watchdog_active(wdd) && |
| 1004 | test_bit(WDOG_STOP_ON_UNREGISTER, &wdd->status)) { |
| 1005 | watchdog_stop(wdd); |
| 1006 | } |
| 1007 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 1008 | cancel_delayed_work_sync(&wd_data->work); |
| 1009 | |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 1010 | kref_put(&wd_data->kref, watchdog_core_data_release); |
Wim Van Sebroeck | 4331604 | 2011-07-22 18:55:18 +0000 | [diff] [blame] | 1011 | } |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1012 | |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1013 | static struct class watchdog_class = { |
| 1014 | .name = "watchdog", |
| 1015 | .owner = THIS_MODULE, |
Pratyush Anand | 33b7112 | 2015-12-17 17:53:59 +0530 | [diff] [blame] | 1016 | .dev_groups = wdt_groups, |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1017 | }; |
| 1018 | |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1019 | /* |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1020 | * watchdog_dev_register: register a watchdog device |
| 1021 | * @wdd: watchdog device |
| 1022 | * |
| 1023 | * Register a watchdog device including handling the legacy |
| 1024 | * /dev/watchdog node. /dev/watchdog is actually a miscdevice and |
| 1025 | * thus we set it up like that. |
| 1026 | */ |
| 1027 | |
| 1028 | int watchdog_dev_register(struct watchdog_device *wdd) |
| 1029 | { |
| 1030 | struct device *dev; |
| 1031 | dev_t devno; |
| 1032 | int ret; |
| 1033 | |
| 1034 | devno = MKDEV(MAJOR(watchdog_devt), wdd->id); |
| 1035 | |
| 1036 | ret = watchdog_cdev_register(wdd, devno); |
| 1037 | if (ret) |
| 1038 | return ret; |
| 1039 | |
Guenter Roeck | faa5847 | 2016-01-03 15:11:56 -0800 | [diff] [blame] | 1040 | dev = device_create_with_groups(&watchdog_class, wdd->parent, |
| 1041 | devno, wdd, wdd->groups, |
| 1042 | "watchdog%d", wdd->id); |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1043 | if (IS_ERR(dev)) { |
| 1044 | watchdog_cdev_unregister(wdd); |
| 1045 | return PTR_ERR(dev); |
| 1046 | } |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1047 | |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 1048 | ret = watchdog_register_pretimeout(wdd); |
| 1049 | if (ret) { |
| 1050 | device_destroy(&watchdog_class, devno); |
| 1051 | watchdog_cdev_unregister(wdd); |
| 1052 | } |
| 1053 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1054 | return ret; |
| 1055 | } |
| 1056 | |
| 1057 | /* |
| 1058 | * watchdog_dev_unregister: unregister a watchdog device |
| 1059 | * @watchdog: watchdog device |
| 1060 | * |
| 1061 | * Unregister watchdog device and if needed the legacy |
| 1062 | * /dev/watchdog device. |
| 1063 | */ |
| 1064 | |
| 1065 | void watchdog_dev_unregister(struct watchdog_device *wdd) |
| 1066 | { |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 1067 | watchdog_unregister_pretimeout(wdd); |
Guenter Roeck | 0254e95 | 2016-01-03 15:11:58 -0800 | [diff] [blame] | 1068 | device_destroy(&watchdog_class, wdd->wd_data->cdev.dev); |
Guenter Roeck | b4ffb19 | 2015-12-25 16:01:42 -0800 | [diff] [blame] | 1069 | watchdog_cdev_unregister(wdd); |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1070 | } |
| 1071 | |
| 1072 | /* |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1073 | * watchdog_dev_init: init dev part of watchdog core |
| 1074 | * |
| 1075 | * Allocate a range of chardev nodes to use for watchdog devices |
| 1076 | */ |
| 1077 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1078 | int __init watchdog_dev_init(void) |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1079 | { |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1080 | int err; |
| 1081 | |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 1082 | watchdog_wq = alloc_workqueue("watchdogd", |
| 1083 | WQ_HIGHPRI | WQ_MEM_RECLAIM, 0); |
| 1084 | if (!watchdog_wq) { |
| 1085 | pr_err("Failed to create watchdog workqueue\n"); |
| 1086 | return -ENOMEM; |
| 1087 | } |
| 1088 | |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1089 | err = class_register(&watchdog_class); |
| 1090 | if (err < 0) { |
| 1091 | pr_err("couldn't register class\n"); |
Wei Yongjun | 138913c | 2016-07-19 11:22:34 +0000 | [diff] [blame] | 1092 | goto err_register; |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | err = alloc_chrdev_region(&watchdog_devt, 0, MAX_DOGS, "watchdog"); |
| 1096 | if (err < 0) { |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1097 | pr_err("watchdog: unable to allocate char dev region\n"); |
Wei Yongjun | 138913c | 2016-07-19 11:22:34 +0000 | [diff] [blame] | 1098 | goto err_alloc; |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1099 | } |
| 1100 | |
Guenter Roeck | 32ecc63 | 2015-12-25 16:01:40 -0800 | [diff] [blame] | 1101 | return 0; |
Wei Yongjun | 138913c | 2016-07-19 11:22:34 +0000 | [diff] [blame] | 1102 | |
| 1103 | err_alloc: |
| 1104 | class_unregister(&watchdog_class); |
| 1105 | err_register: |
| 1106 | destroy_workqueue(watchdog_wq); |
| 1107 | return err; |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1108 | } |
| 1109 | |
| 1110 | /* |
| 1111 | * watchdog_dev_exit: exit dev part of watchdog core |
| 1112 | * |
| 1113 | * Release the range of chardev nodes used for watchdog devices |
| 1114 | */ |
| 1115 | |
| 1116 | void __exit watchdog_dev_exit(void) |
| 1117 | { |
| 1118 | unregister_chrdev_region(watchdog_devt, MAX_DOGS); |
Pratyush Anand | 906d7a5 | 2015-12-17 17:53:58 +0530 | [diff] [blame] | 1119 | class_unregister(&watchdog_class); |
Guenter Roeck | 664a392 | 2016-02-28 13:12:15 -0800 | [diff] [blame] | 1120 | destroy_workqueue(watchdog_wq); |
Alan Cox | 45f5fed | 2012-05-10 21:48:59 +0200 | [diff] [blame] | 1121 | } |
Sebastian Reichel | 2501b01 | 2017-05-12 14:05:32 +0200 | [diff] [blame] | 1122 | |
| 1123 | module_param(handle_boot_enabled, bool, 0444); |
| 1124 | MODULE_PARM_DESC(handle_boot_enabled, |
| 1125 | "Watchdog core auto-updates boot enabled watchdogs before userspace takes over (default=" |
| 1126 | __MODULE_STRING(IS_ENABLED(CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED)) ")"); |