blob: 21c3ffdc8a09d415093297b39d811dad56305c93 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
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
35#include <linux/cdev.h> /* For character device */
36#include <linux/errno.h> /* For the -ENODEV/... values */
37#include <linux/fs.h> /* For file operations */
38#include <linux/init.h> /* For __init/__exit/... */
39#include <linux/jiffies.h> /* For timeout functions */
40#include <linux/kernel.h> /* For printk/panic/... */
41#include <linux/miscdevice.h> /* For handling misc devices */
42#include <linux/module.h> /* For module stuff/... */
43#include <linux/mutex.h> /* For mutexes */
44#include <linux/slab.h> /* For memory functions */
45#include <linux/types.h> /* For standard types (like size_t) */
46#include <linux/watchdog.h> /* For watchdog specific items */
47#include <linux/workqueue.h> /* For workqueue */
48#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
49
50#include "watchdog_core.h"
51#include "watchdog_pretimeout.h"
52
53/*
54 * struct watchdog_core_data - watchdog core internal data
55 * @dev: The watchdog's internal device
56 * @cdev: The watchdog's Character device.
57 * @wdd: Pointer to watchdog device.
58 * @lock: Lock for watchdog core.
59 * @status: Watchdog core internal status bits.
60 */
61struct watchdog_core_data {
62 struct device dev;
63 struct cdev cdev;
64 struct watchdog_device *wdd;
65 struct mutex lock;
66 unsigned long last_keepalive;
67 unsigned long last_hw_keepalive;
68 struct delayed_work work;
69 unsigned long status; /* Internal status bits */
70#define _WDOG_DEV_OPEN 0 /* Opened ? */
71#define _WDOG_ALLOW_RELEASE 1 /* Did we receive the magic char ? */
72#define _WDOG_KEEPALIVE 2 /* Did we receive a keepalive ? */
73};
74
75/* the dev_t structure to store the dynamically allocated watchdog devices */
76static dev_t watchdog_devt;
77/* Reference to watchdog device behind /dev/watchdog */
78static struct watchdog_core_data *old_wd_data;
79
80static struct workqueue_struct *watchdog_wq;
81
82static bool handle_boot_enabled =
83 IS_ENABLED(CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED);
84
85static inline bool watchdog_need_worker(struct watchdog_device *wdd)
86{
87 /* All variables in milli-seconds */
88 unsigned int hm = wdd->max_hw_heartbeat_ms;
89 unsigned int t = wdd->timeout * 1000;
90
91 /*
92 * A worker to generate heartbeat requests is needed if all of the
93 * following conditions are true.
94 * - Userspace activated the watchdog.
95 * - The driver provided a value for the maximum hardware timeout, and
96 * thus is aware that the framework supports generating heartbeat
97 * requests.
98 * - Userspace requests a longer timeout than the hardware can handle.
99 *
100 * Alternatively, if userspace has not opened the watchdog
101 * device, we take care of feeding the watchdog if it is
102 * running.
103 */
104 return (hm && watchdog_active(wdd) && t > hm) ||
105 (t && !watchdog_active(wdd) && watchdog_hw_running(wdd));
106}
107
108static long watchdog_next_keepalive(struct watchdog_device *wdd)
109{
110 struct watchdog_core_data *wd_data = wdd->wd_data;
111 unsigned int timeout_ms = wdd->timeout * 1000;
112 unsigned long keepalive_interval;
113 unsigned long last_heartbeat;
114 unsigned long virt_timeout;
115 unsigned int hw_heartbeat_ms;
116
117 virt_timeout = wd_data->last_keepalive + msecs_to_jiffies(timeout_ms);
118 hw_heartbeat_ms = min_not_zero(timeout_ms, wdd->max_hw_heartbeat_ms);
119 keepalive_interval = msecs_to_jiffies(hw_heartbeat_ms / 2);
120
121 if (!watchdog_active(wdd))
122 return keepalive_interval;
123
124 /*
125 * To ensure that the watchdog times out wdd->timeout seconds
126 * after the most recent ping from userspace, the last
127 * worker ping has to come in hw_heartbeat_ms before this timeout.
128 */
129 last_heartbeat = virt_timeout - msecs_to_jiffies(hw_heartbeat_ms);
130 return min_t(long, last_heartbeat - jiffies, keepalive_interval);
131}
132
133static inline void watchdog_update_worker(struct watchdog_device *wdd)
134{
135 struct watchdog_core_data *wd_data = wdd->wd_data;
136
137 if (watchdog_need_worker(wdd)) {
138 long t = watchdog_next_keepalive(wdd);
139
140 if (t > 0)
141 mod_delayed_work(watchdog_wq, &wd_data->work, t);
142 } else {
143 cancel_delayed_work(&wd_data->work);
144 }
145}
146
147static int __watchdog_ping(struct watchdog_device *wdd)
148{
149 struct watchdog_core_data *wd_data = wdd->wd_data;
150 unsigned long earliest_keepalive = wd_data->last_hw_keepalive +
151 msecs_to_jiffies(wdd->min_hw_heartbeat_ms);
152 int err;
153
154 if (time_is_after_jiffies(earliest_keepalive)) {
155 mod_delayed_work(watchdog_wq, &wd_data->work,
156 earliest_keepalive - jiffies);
157 return 0;
158 }
159
160 wd_data->last_hw_keepalive = jiffies;
161
162 if (wdd->ops->ping)
163 err = wdd->ops->ping(wdd); /* ping the watchdog */
164 else
165 err = wdd->ops->start(wdd); /* restart watchdog */
166
167 watchdog_update_worker(wdd);
168
169 return err;
170}
171
172/*
173 * watchdog_ping: ping the watchdog.
174 * @wdd: the watchdog device to ping
175 *
176 * The caller must hold wd_data->lock.
177 *
178 * If the watchdog has no own ping operation then it needs to be
179 * restarted via the start operation. This wrapper function does
180 * exactly that.
181 * We only ping when the watchdog device is running.
182 */
183
184static int watchdog_ping(struct watchdog_device *wdd)
185{
186 struct watchdog_core_data *wd_data = wdd->wd_data;
187
188 if (!watchdog_active(wdd) && !watchdog_hw_running(wdd))
189 return 0;
190
191 set_bit(_WDOG_KEEPALIVE, &wd_data->status);
192
193 wd_data->last_keepalive = jiffies;
194 return __watchdog_ping(wdd);
195}
196
197static bool watchdog_worker_should_ping(struct watchdog_core_data *wd_data)
198{
199 struct watchdog_device *wdd = wd_data->wdd;
200
201 return wdd && (watchdog_active(wdd) || watchdog_hw_running(wdd));
202}
203
204static void watchdog_ping_work(struct work_struct *work)
205{
206 struct watchdog_core_data *wd_data;
207
208 wd_data = container_of(to_delayed_work(work), struct watchdog_core_data,
209 work);
210
211 mutex_lock(&wd_data->lock);
212 if (watchdog_worker_should_ping(wd_data))
213 __watchdog_ping(wd_data->wdd);
214 mutex_unlock(&wd_data->lock);
215}
216
217/*
218 * watchdog_start: wrapper to start the watchdog.
219 * @wdd: the watchdog device to start
220 *
221 * The caller must hold wd_data->lock.
222 *
223 * Start the watchdog if it is not active and mark it active.
224 * This function returns zero on success or a negative errno code for
225 * failure.
226 */
227
228static int watchdog_start(struct watchdog_device *wdd)
229{
230 struct watchdog_core_data *wd_data = wdd->wd_data;
231 unsigned long started_at;
232 int err;
233
234 if (watchdog_active(wdd))
235 return 0;
236
237 set_bit(_WDOG_KEEPALIVE, &wd_data->status);
238
239 started_at = jiffies;
240 if (watchdog_hw_running(wdd) && wdd->ops->ping)
241 err = wdd->ops->ping(wdd);
242 else
243 err = wdd->ops->start(wdd);
244 if (err == 0) {
245 set_bit(WDOG_ACTIVE, &wdd->status);
246 wd_data->last_keepalive = started_at;
247 wd_data->last_hw_keepalive = started_at;
248 watchdog_update_worker(wdd);
249 }
250
251 return err;
252}
253
254/*
255 * watchdog_stop: wrapper to stop the watchdog.
256 * @wdd: the watchdog device to stop
257 *
258 * The caller must hold wd_data->lock.
259 *
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.
263 * If the 'nowayout' feature was set, the watchdog cannot be stopped.
264 */
265
266static int watchdog_stop(struct watchdog_device *wdd)
267{
268 int err = 0;
269
270 if (!watchdog_active(wdd))
271 return 0;
272
273 if (test_bit(WDOG_NO_WAY_OUT, &wdd->status)) {
274 pr_info("watchdog%d: nowayout prevents watchdog being stopped!\n",
275 wdd->id);
276 return -EBUSY;
277 }
278
279 if (wdd->ops->stop) {
280 clear_bit(WDOG_HW_RUNNING, &wdd->status);
281 err = wdd->ops->stop(wdd);
282 } else {
283 set_bit(WDOG_HW_RUNNING, &wdd->status);
284 }
285
286 if (err == 0) {
287 clear_bit(WDOG_ACTIVE, &wdd->status);
288 watchdog_update_worker(wdd);
289 }
290
291 return err;
292}
293
294/*
295 * watchdog_get_status: wrapper to get the watchdog status
296 * @wdd: the watchdog device to get the status from
297 *
298 * The caller must hold wd_data->lock.
299 *
300 * Get the watchdog's status flags.
301 */
302
303static unsigned int watchdog_get_status(struct watchdog_device *wdd)
304{
305 struct watchdog_core_data *wd_data = wdd->wd_data;
306 unsigned int status;
307
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;
326}
327
328/*
329 * watchdog_set_timeout: set the watchdog timer timeout
330 * @wdd: the watchdog device to set the timeout for
331 * @timeout: timeout to set in seconds
332 *
333 * The caller must hold wd_data->lock.
334 */
335
336static int watchdog_set_timeout(struct watchdog_device *wdd,
337 unsigned int timeout)
338{
339 int err = 0;
340
341 if (!(wdd->info->options & WDIOF_SETTIMEOUT))
342 return -EOPNOTSUPP;
343
344 if (watchdog_timeout_invalid(wdd, timeout))
345 return -EINVAL;
346
347 if (wdd->ops->set_timeout) {
348 err = wdd->ops->set_timeout(wdd, timeout);
349 } else {
350 wdd->timeout = timeout;
351 /* Disable pretimeout if it doesn't fit the new timeout */
352 if (wdd->pretimeout >= wdd->timeout)
353 wdd->pretimeout = 0;
354 }
355
356 watchdog_update_worker(wdd);
357
358 return err;
359}
360
361/*
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
367static 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/*
387 * watchdog_get_timeleft: wrapper to get the time left before a reboot
388 * @wdd: the watchdog device to get the remaining time from
389 * @timeleft: the time that's left
390 *
391 * The caller must hold wd_data->lock.
392 *
393 * Get the time before a watchdog will reboot (if not pinged).
394 */
395
396static int watchdog_get_timeleft(struct watchdog_device *wdd,
397 unsigned int *timeleft)
398{
399 *timeleft = 0;
400
401 if (!wdd->ops->get_timeleft)
402 return -EOPNOTSUPP;
403
404 *timeleft = wdd->ops->get_timeleft(wdd);
405
406 return 0;
407}
408
409#ifdef CONFIG_WATCHDOG_SYSFS
410static 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}
417static DEVICE_ATTR_RO(nowayout);
418
419static ssize_t status_show(struct device *dev, struct device_attribute *attr,
420 char *buf)
421{
422 struct watchdog_device *wdd = dev_get_drvdata(dev);
423 struct watchdog_core_data *wd_data = wdd->wd_data;
424 unsigned int status;
425
426 mutex_lock(&wd_data->lock);
427 status = watchdog_get_status(wdd);
428 mutex_unlock(&wd_data->lock);
429
430 return sprintf(buf, "0x%x\n", status);
431}
432static DEVICE_ATTR_RO(status);
433
434static 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}
441static DEVICE_ATTR_RO(bootstatus);
442
443static ssize_t timeleft_show(struct device *dev, struct device_attribute *attr,
444 char *buf)
445{
446 struct watchdog_device *wdd = dev_get_drvdata(dev);
447 struct watchdog_core_data *wd_data = wdd->wd_data;
448 ssize_t status;
449 unsigned int val;
450
451 mutex_lock(&wd_data->lock);
452 status = watchdog_get_timeleft(wdd, &val);
453 mutex_unlock(&wd_data->lock);
454 if (!status)
455 status = sprintf(buf, "%u\n", val);
456
457 return status;
458}
459static DEVICE_ATTR_RO(timeleft);
460
461static 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}
468static DEVICE_ATTR_RO(timeout);
469
470static 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}
477static DEVICE_ATTR_RO(pretimeout);
478
479static 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}
486static DEVICE_ATTR_RO(identity);
487
488static 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}
498static DEVICE_ATTR_RO(state);
499
500static 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}
505static DEVICE_ATTR_RO(pretimeout_available_governors);
506
507static 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}
515
516static 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}
528static DEVICE_ATTR_RW(pretimeout_governor);
529
530static 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
537 if (attr == &dev_attr_timeleft.attr && !wdd->ops->get_timeleft)
538 mode = 0;
539 else if (attr == &dev_attr_pretimeout.attr &&
540 !(wdd->info->options & WDIOF_PRETIMEOUT))
541 mode = 0;
542 else if ((attr == &dev_attr_pretimeout_governor.attr ||
543 attr == &dev_attr_pretimeout_available_governors.attr) &&
544 (!(wdd->info->options & WDIOF_PRETIMEOUT) ||
545 !IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_GOV)))
546 mode = 0;
547
548 return mode;
549}
550static struct attribute *wdt_attrs[] = {
551 &dev_attr_state.attr,
552 &dev_attr_identity.attr,
553 &dev_attr_timeout.attr,
554 &dev_attr_pretimeout.attr,
555 &dev_attr_timeleft.attr,
556 &dev_attr_bootstatus.attr,
557 &dev_attr_status.attr,
558 &dev_attr_nowayout.attr,
559 &dev_attr_pretimeout_governor.attr,
560 &dev_attr_pretimeout_available_governors.attr,
561 NULL,
562};
563
564static 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
573/*
574 * watchdog_ioctl_op: call the watchdog drivers ioctl op if defined
575 * @wdd: the watchdog device to do the ioctl on
576 * @cmd: watchdog command
577 * @arg: argument pointer
578 *
579 * The caller must hold wd_data->lock.
580 */
581
582static int watchdog_ioctl_op(struct watchdog_device *wdd, unsigned int cmd,
583 unsigned long arg)
584{
585 if (!wdd->ops->ioctl)
586 return -ENOIOCTLCMD;
587
588 return wdd->ops->ioctl(wdd, cmd, arg);
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.
599 * Writing the magic 'V' sequence allows the next close to turn
600 * off the watchdog (if 'nowayout' is not set).
601 */
602
603static ssize_t watchdog_write(struct file *file, const char __user *data,
604 size_t len, loff_t *ppos)
605{
606 struct watchdog_core_data *wd_data = file->private_data;
607 struct watchdog_device *wdd;
608 int err;
609 size_t i;
610 char c;
611
612 if (len == 0)
613 return 0;
614
615 /*
616 * Note: just in case someone wrote the magic character
617 * five months ago...
618 */
619 clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status);
620
621 /* scan to see whether or not we got the magic character */
622 for (i = 0; i != len; i++) {
623 if (get_user(c, data + i))
624 return -EFAULT;
625 if (c == 'V')
626 set_bit(_WDOG_ALLOW_RELEASE, &wd_data->status);
627 }
628
629 /* someone wrote to us, so we send the watchdog a keepalive ping */
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
638 if (err < 0)
639 return err;
640
641 return len;
642}
643
644/*
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
654static long watchdog_ioctl(struct file *file, unsigned int cmd,
655 unsigned long arg)
656{
657 struct watchdog_core_data *wd_data = file->private_data;
658 void __user *argp = (void __user *)arg;
659 struct watchdog_device *wdd;
660 int __user *p = argp;
661 unsigned int val;
662 int err;
663
664 mutex_lock(&wd_data->lock);
665
666 wdd = wd_data->wdd;
667 if (!wdd) {
668 err = -ENODEV;
669 goto out_ioctl;
670 }
671
672 err = watchdog_ioctl_op(wdd, cmd, arg);
673 if (err != -ENOIOCTLCMD)
674 goto out_ioctl;
675
676 switch (cmd) {
677 case WDIOC_GETSUPPORT:
678 err = copy_to_user(argp, wdd->info,
679 sizeof(struct watchdog_info)) ? -EFAULT : 0;
680 break;
681 case WDIOC_GETSTATUS:
682 val = watchdog_get_status(wdd);
683 err = put_user(val, p);
684 break;
685 case WDIOC_GETBOOTSTATUS:
686 err = put_user(wdd->bootstatus, p);
687 break;
688 case WDIOC_SETOPTIONS:
689 if (get_user(val, p)) {
690 err = -EFAULT;
691 break;
692 }
693 if (val & WDIOS_DISABLECARD) {
694 err = watchdog_stop(wdd);
695 if (err < 0)
696 break;
697 }
698 if (val & WDIOS_ENABLECARD)
699 err = watchdog_start(wdd);
700 break;
701 case WDIOC_KEEPALIVE:
702 if (!(wdd->info->options & WDIOF_KEEPALIVEPING)) {
703 err = -EOPNOTSUPP;
704 break;
705 }
706 err = watchdog_ping(wdd);
707 break;
708 case WDIOC_SETTIMEOUT:
709 if (get_user(val, p)) {
710 err = -EFAULT;
711 break;
712 }
713 err = watchdog_set_timeout(wdd, val);
714 if (err < 0)
715 break;
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) */
719 err = watchdog_ping(wdd);
720 if (err < 0)
721 break;
722 /* Fall */
723 case WDIOC_GETTIMEOUT:
724 /* timeout == 0 means that we don't know the timeout */
725 if (wdd->timeout == 0) {
726 err = -EOPNOTSUPP;
727 break;
728 }
729 err = put_user(wdd->timeout, p);
730 break;
731 case WDIOC_GETTIMELEFT:
732 err = watchdog_get_timeleft(wdd, &val);
733 if (err < 0)
734 break;
735 err = put_user(val, p);
736 break;
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;
747 default:
748 err = -ENOTTY;
749 break;
750 }
751
752out_ioctl:
753 mutex_unlock(&wd_data->lock);
754 return err;
755}
756
757/*
758 * watchdog_open: open the /dev/watchdog* devices.
759 * @inode: inode of device
760 * @file: file handle to device
761 *
762 * When the /dev/watchdog* device gets opened, we start the watchdog.
763 * Watch out: the /dev/watchdog device is single open, so we make sure
764 * it can only be opened once.
765 */
766
767static int watchdog_open(struct inode *inode, struct file *file)
768{
769 struct watchdog_core_data *wd_data;
770 struct watchdog_device *wdd;
771 bool hw_running;
772 int err;
773
774 /* Get the corresponding watchdog device */
775 if (imajor(inode) == MISC_MAJOR)
776 wd_data = old_wd_data;
777 else
778 wd_data = container_of(inode->i_cdev, struct watchdog_core_data,
779 cdev);
780
781 /* the watchdog is single open! */
782 if (test_and_set_bit(_WDOG_DEV_OPEN, &wd_data->status))
783 return -EBUSY;
784
785 wdd = wd_data->wdd;
786
787 /*
788 * If the /dev/watchdog device is open, we don't want the module
789 * to be unloaded.
790 */
791 hw_running = watchdog_hw_running(wdd);
792 if (!hw_running && !try_module_get(wdd->ops->owner)) {
793 err = -EBUSY;
794 goto out_clear;
795 }
796
797 err = watchdog_start(wdd);
798 if (err < 0)
799 goto out_mod;
800
801 file->private_data = wd_data;
802
803 if (!hw_running)
804 get_device(&wd_data->dev);
805
806 /* dev/watchdog is a virtual (and thus non-seekable) filesystem */
807 return nonseekable_open(inode, file);
808
809out_mod:
810 module_put(wd_data->wdd->ops->owner);
811out_clear:
812 clear_bit(_WDOG_DEV_OPEN, &wd_data->status);
813 return err;
814}
815
816static void watchdog_core_data_release(struct device *dev)
817{
818 struct watchdog_core_data *wd_data;
819
820 wd_data = container_of(dev, struct watchdog_core_data, dev);
821
822 kfree(wd_data);
823}
824
825/*
826 * watchdog_release: release the watchdog device.
827 * @inode: inode of device
828 * @file: file handle to device
829 *
830 * This is the code for when /dev/watchdog gets closed. We will only
831 * stop the watchdog when we have received the magic char (and nowayout
832 * was not set), else the watchdog will keep running.
833 */
834
835static int watchdog_release(struct inode *inode, struct file *file)
836{
837 struct watchdog_core_data *wd_data = file->private_data;
838 struct watchdog_device *wdd;
839 int err = -EBUSY;
840 bool running;
841
842 mutex_lock(&wd_data->lock);
843
844 wdd = wd_data->wdd;
845 if (!wdd)
846 goto done;
847
848 /*
849 * We only stop the watchdog if we received the magic character
850 * or if WDIOF_MAGICCLOSE is not set. If nowayout was set then
851 * watchdog_stop will fail.
852 */
853 if (!test_bit(WDOG_ACTIVE, &wdd->status))
854 err = 0;
855 else if (test_and_clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status) ||
856 !(wdd->info->options & WDIOF_MAGICCLOSE))
857 err = watchdog_stop(wdd);
858
859 /* If the watchdog was not stopped, send a keepalive ping */
860 if (err < 0) {
861 pr_crit("watchdog%d: watchdog did not stop!\n", wdd->id);
862 watchdog_ping(wdd);
863 }
864
865 watchdog_update_worker(wdd);
866
867 /* make sure that /dev/watchdog can be re-opened */
868 clear_bit(_WDOG_DEV_OPEN, &wd_data->status);
869
870done:
871 running = wdd && watchdog_hw_running(wdd);
872 mutex_unlock(&wd_data->lock);
873 /*
874 * Allow the owner module to be unloaded again unless the watchdog
875 * is still running. If the watchdog is still running, it can not
876 * be stopped, and its driver must not be unloaded.
877 */
878 if (!running) {
879 module_put(wd_data->cdev.owner);
880 put_device(&wd_data->dev);
881 }
882 return 0;
883}
884
885static const struct file_operations watchdog_fops = {
886 .owner = THIS_MODULE,
887 .write = watchdog_write,
888 .unlocked_ioctl = watchdog_ioctl,
889 .open = watchdog_open,
890 .release = watchdog_release,
891};
892
893static struct miscdevice watchdog_miscdev = {
894 .minor = WATCHDOG_MINOR,
895 .name = "watchdog",
896 .fops = &watchdog_fops,
897};
898
899static struct class watchdog_class = {
900 .name = "watchdog",
901 .owner = THIS_MODULE,
902 .dev_groups = wdt_groups,
903};
904
905/*
906 * watchdog_cdev_register: register watchdog character device
907 * @wdd: watchdog device
908 *
909 * Register a watchdog character device including handling the legacy
910 * /dev/watchdog node. /dev/watchdog is actually a miscdevice and
911 * thus we set it up like that.
912 */
913
914static int watchdog_cdev_register(struct watchdog_device *wdd)
915{
916 struct watchdog_core_data *wd_data;
917 int err;
918
919 wd_data = kzalloc(sizeof(struct watchdog_core_data), GFP_KERNEL);
920 if (!wd_data)
921 return -ENOMEM;
922 mutex_init(&wd_data->lock);
923
924 wd_data->wdd = wdd;
925 wdd->wd_data = wd_data;
926
927 if (!watchdog_wq)
928 return -ENODEV;
929
930 INIT_DELAYED_WORK(&wd_data->work, watchdog_ping_work);
931
932 if (wdd->id == 0) {
933 old_wd_data = wd_data;
934 watchdog_miscdev.parent = wdd->parent;
935 err = misc_register(&watchdog_miscdev);
936 if (err != 0) {
937 pr_err("%s: cannot register miscdev on minor=%d (err=%d).\n",
938 wdd->info->identity, WATCHDOG_MINOR, err);
939 if (err == -EBUSY)
940 pr_err("%s: a legacy watchdog module is probably present.\n",
941 wdd->info->identity);
942 old_wd_data = NULL;
943 kfree(wd_data);
944 return err;
945 }
946 }
947
948 device_initialize(&wd_data->dev);
949 wd_data->dev.devt = MKDEV(MAJOR(watchdog_devt), wdd->id);
950 wd_data->dev.class = &watchdog_class;
951 wd_data->dev.parent = wdd->parent;
952 wd_data->dev.groups = wdd->groups;
953 wd_data->dev.release = watchdog_core_data_release;
954 dev_set_drvdata(&wd_data->dev, wdd);
955 dev_set_name(&wd_data->dev, "watchdog%d", wdd->id);
956
957 /* Fill in the data structures */
958 cdev_init(&wd_data->cdev, &watchdog_fops);
959
960 /* Add the device */
961 err = cdev_device_add(&wd_data->cdev, &wd_data->dev);
962 if (err) {
963 pr_err("watchdog%d unable to add device %d:%d\n",
964 wdd->id, MAJOR(watchdog_devt), wdd->id);
965 if (wdd->id == 0) {
966 misc_deregister(&watchdog_miscdev);
967 old_wd_data = NULL;
968 put_device(&wd_data->dev);
969 }
970 return err;
971 }
972
973 wd_data->cdev.owner = wdd->ops->owner;
974
975 /* Record time of most recent heartbeat as 'just before now'. */
976 wd_data->last_hw_keepalive = jiffies - 1;
977
978 /*
979 * If the watchdog is running, prevent its driver from being unloaded,
980 * and schedule an immediate ping.
981 */
982 if (watchdog_hw_running(wdd)) {
983 __module_get(wdd->ops->owner);
984 get_device(&wd_data->dev);
985 if (handle_boot_enabled)
986 queue_delayed_work(watchdog_wq, &wd_data->work, 0);
987 else
988 pr_info("watchdog%d running and kernel based pre-userspace handler disabled\n",
989 wdd->id);
990 }
991
992 return 0;
993}
994
995/*
996 * watchdog_cdev_unregister: unregister watchdog character device
997 * @watchdog: watchdog device
998 *
999 * Unregister watchdog character device and if needed the legacy
1000 * /dev/watchdog device.
1001 */
1002
1003static void watchdog_cdev_unregister(struct watchdog_device *wdd)
1004{
1005 struct watchdog_core_data *wd_data = wdd->wd_data;
1006
1007 cdev_device_del(&wd_data->cdev, &wd_data->dev);
1008 if (wdd->id == 0) {
1009 misc_deregister(&watchdog_miscdev);
1010 old_wd_data = NULL;
1011 }
1012
1013 mutex_lock(&wd_data->lock);
1014 wd_data->wdd = NULL;
1015 wdd->wd_data = NULL;
1016 mutex_unlock(&wd_data->lock);
1017
1018 if (watchdog_active(wdd) &&
1019 test_bit(WDOG_STOP_ON_UNREGISTER, &wdd->status)) {
1020 watchdog_stop(wdd);
1021 }
1022
1023 cancel_delayed_work_sync(&wd_data->work);
1024
1025 put_device(&wd_data->dev);
1026}
1027
1028/*
1029 * watchdog_dev_register: register a watchdog device
1030 * @wdd: watchdog device
1031 *
1032 * Register a watchdog device including handling the legacy
1033 * /dev/watchdog node. /dev/watchdog is actually a miscdevice and
1034 * thus we set it up like that.
1035 */
1036
1037int watchdog_dev_register(struct watchdog_device *wdd)
1038{
1039 int ret;
1040
1041 ret = watchdog_cdev_register(wdd);
1042 if (ret)
1043 return ret;
1044
1045 ret = watchdog_register_pretimeout(wdd);
1046 if (ret) {
1047 watchdog_cdev_unregister(wdd);
1048 }
1049
1050 return ret;
1051}
1052
1053/*
1054 * watchdog_dev_unregister: unregister a watchdog device
1055 * @watchdog: watchdog device
1056 *
1057 * Unregister watchdog device and if needed the legacy
1058 * /dev/watchdog device.
1059 */
1060
1061void watchdog_dev_unregister(struct watchdog_device *wdd)
1062{
1063 watchdog_unregister_pretimeout(wdd);
1064 watchdog_cdev_unregister(wdd);
1065}
1066
1067/*
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
1073int __init watchdog_dev_init(void)
1074{
1075 int err;
1076
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
1084 err = class_register(&watchdog_class);
1085 if (err < 0) {
1086 pr_err("couldn't register class\n");
1087 goto err_register;
1088 }
1089
1090 err = alloc_chrdev_region(&watchdog_devt, 0, MAX_DOGS, "watchdog");
1091 if (err < 0) {
1092 pr_err("watchdog: unable to allocate char dev region\n");
1093 goto err_alloc;
1094 }
1095
1096 return 0;
1097
1098err_alloc:
1099 class_unregister(&watchdog_class);
1100err_register:
1101 destroy_workqueue(watchdog_wq);
1102 return err;
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
1111void __exit watchdog_dev_exit(void)
1112{
1113 unregister_chrdev_region(watchdog_devt, MAX_DOGS);
1114 class_unregister(&watchdog_class);
1115 destroy_workqueue(watchdog_wq);
1116}
1117
1118module_param(handle_boot_enabled, bool, 0444);
1119MODULE_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)) ")");