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