mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
c5bf68fe0c
Using scripts/coccinelle/api/stream_open.cocci added in10dce8af34
("fs: stream_open - opener for stream-like files so that read and write can run simultaneously without deadlock"), search and convert to stream_open all in-kernel nonseekable_open users for which read and write actually do not depend on ppos and where there is no other methods in file_operations which assume @offset access. I've verified each generated change manually - that it is correct to convert - and each other nonseekable_open instance left - that it is either not correct to convert there, or that it is not converted due to current stream_open.cocci limitations. The script also does not convert files that should be valid to convert, but that currently have .llseek = noop_llseek or generic_file_llseek for unknown reason despite file being opened with nonseekable_open (e.g. drivers/input/mousedev.c) Among cases converted 14 were potentially vulnerable to read vs write deadlock (see details in10dce8af34
): drivers/char/pcmcia/cm4000_cs.c:1685:7-23: ERROR: cm4000_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/gnss/core.c:45:1-17: ERROR: gnss_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/hid/uhid.c:635:1-17: ERROR: uhid_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/infiniband/core/user_mad.c:988:1-17: ERROR: umad_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/input/evdev.c:527:1-17: ERROR: evdev_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/input/misc/uinput.c:401:1-17: ERROR: uinput_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/isdn/capi/capi.c:963:8-24: ERROR: capi_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/leds/uleds.c:77:1-17: ERROR: uleds_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/media/rc/lirc_dev.c:198:1-17: ERROR: lirc_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/s390/char/fs3270.c:488:1-17: ERROR: fs3270_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/usb/misc/ldusb.c:310:1-17: ERROR: ld_usb_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. drivers/xen/evtchn.c:667:8-24: ERROR: evtchn_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. net/batman-adv/icmp_socket.c:80:1-17: ERROR: batadv_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. net/rfkill/core.c:1146:8-24: ERROR: rfkill_fops: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix. and the rest were just safe to convert to stream_open because their read and write do not use ppos at all and corresponding file_operations do not have methods that assume @offset file access(*): arch/powerpc/platforms/52xx/mpc52xx_gpt.c:631:8-24: WARNING: mpc52xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_ibox_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_ibox_stat_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_mbox_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_mbox_stat_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_wbox_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. arch/powerpc/platforms/cell/spufs/file.c:591:8-24: WARNING: spufs_wbox_stat_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. arch/um/drivers/harddog_kern.c:88:8-24: WARNING: harddog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. arch/x86/kernel/cpu/microcode/core.c:430:33-49: WARNING: microcode_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/ds1620.c:215:8-24: WARNING: ds1620_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/dtlk.c:301:1-17: WARNING: dtlk_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/ipmi/ipmi_watchdog.c:840:9-25: WARNING: ipmi_wdog_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/pcmcia/scr24x_cs.c:95:8-24: WARNING: scr24x_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/char/tb0219.c:246:9-25: WARNING: tb0219_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/firewire/nosy.c:306:8-24: WARNING: nosy_ops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/hwmon/fschmd.c:840:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/hwmon/w83793.c:1344:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/infiniband/core/ucma.c:1747:8-24: WARNING: ucma_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/infiniband/core/ucm.c:1178:8-24: WARNING: ucm_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/infiniband/core/uverbs_main.c:1086:8-24: WARNING: uverbs_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/input/joydev.c:282:1-17: WARNING: joydev_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/pci/switch/switchtec.c:393:1-17: WARNING: switchtec_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/platform/chrome/cros_ec_debugfs.c:135:8-24: WARNING: cros_ec_console_log_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/rtc/rtc-ds1374.c:470:9-25: WARNING: ds1374_wdt_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/rtc/rtc-m41t80.c:805:9-25: WARNING: wdt_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/s390/char/tape_char.c:293:2-18: WARNING: tape_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/s390/char/zcore.c:194:8-24: WARNING: zcore_reipl_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/s390/crypto/zcrypt_api.c:528:8-24: WARNING: zcrypt_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/spi/spidev.c:594:1-17: WARNING: spidev_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/staging/pi433/pi433_if.c:974:1-17: WARNING: pi433_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/acquirewdt.c:203:8-24: WARNING: acq_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/advantechwdt.c:202:8-24: WARNING: advwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/alim1535_wdt.c:252:8-24: WARNING: ali_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/alim7101_wdt.c:217:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ar7_wdt.c:166:8-24: WARNING: ar7_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/at91rm9200_wdt.c:113:8-24: WARNING: at91wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ath79_wdt.c:135:8-24: WARNING: ath79_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/bcm63xx_wdt.c:119:8-24: WARNING: bcm63xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/cpu5wdt.c:143:8-24: WARNING: cpu5wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/cpwd.c:397:8-24: WARNING: cpwd_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/eurotechwdt.c:319:8-24: WARNING: eurwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/f71808e_wdt.c:528:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/gef_wdt.c:232:8-24: WARNING: gef_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/geodewdt.c:95:8-24: WARNING: geodewdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ib700wdt.c:241:8-24: WARNING: ibwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ibmasr.c:326:8-24: WARNING: asr_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/indydog.c:80:8-24: WARNING: indydog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/intel_scu_watchdog.c:307:8-24: WARNING: intel_scu_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/iop_wdt.c:104:8-24: WARNING: iop_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/it8712f_wdt.c:330:8-24: WARNING: it8712f_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ixp4xx_wdt.c:68:8-24: WARNING: ixp4xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/ks8695_wdt.c:145:8-24: WARNING: ks8695wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/m54xx_wdt.c:88:8-24: WARNING: m54xx_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/machzwd.c:336:8-24: WARNING: zf_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/mixcomwd.c:153:8-24: WARNING: mixcomwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/mtx-1_wdt.c:121:8-24: WARNING: mtx1_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/mv64x60_wdt.c:136:8-24: WARNING: mv64x60_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/nuc900_wdt.c:134:8-24: WARNING: nuc900wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/nv_tco.c:164:8-24: WARNING: nv_tco_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pc87413_wdt.c:289:8-24: WARNING: pc87413_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd.c:698:8-24: WARNING: pcwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd.c:737:8-24: WARNING: pcwd_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_pci.c:581:8-24: WARNING: pcipcwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_pci.c:623:8-24: WARNING: pcipcwd_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_usb.c:488:8-24: WARNING: usb_pcwd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pcwd_usb.c:527:8-24: WARNING: usb_pcwd_temperature_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pika_wdt.c:121:8-24: WARNING: pikawdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/pnx833x_wdt.c:119:8-24: WARNING: pnx833x_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/rc32434_wdt.c:153:8-24: WARNING: rc32434_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/rdc321x_wdt.c:145:8-24: WARNING: rdc321x_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/riowd.c:79:1-17: WARNING: riowd_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sa1100_wdt.c:62:8-24: WARNING: sa1100dog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc60xxwdt.c:211:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc7240_wdt.c:139:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc8360.c:274:8-24: WARNING: sbc8360_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc_epx_c3.c:81:8-24: WARNING: epx_c3_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sbc_fitpc2_wdt.c:78:8-24: WARNING: fitpc2_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sb_wdog.c:108:1-17: WARNING: sbwdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sc1200wdt.c:181:8-24: WARNING: sc1200wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sc520_wdt.c:261:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/sch311x_wdt.c:319:8-24: WARNING: sch311x_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/scx200_wdt.c:105:8-24: WARNING: scx200_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/smsc37b787_wdt.c:369:8-24: WARNING: wb_smsc_wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/w83877f_wdt.c:227:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/w83977f_wdt.c:301:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wafer5823wdt.c:200:8-24: WARNING: wafwdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/watchdog_dev.c:828:8-24: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdrtas.c:379:8-24: WARNING: wdrtas_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdrtas.c:445:8-24: WARNING: wdrtas_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt285.c:104:1-17: WARNING: watchdog_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt977.c:276:8-24: WARNING: wdt977_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt.c:424:8-24: WARNING: wdt_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt.c:484:8-24: WARNING: wdt_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt_pci.c:464:8-24: WARNING: wdtpci_fops: .write() has stream semantic; safe to change nonseekable_open -> stream_open. drivers/watchdog/wdt_pci.c:527:8-24: WARNING: wdtpci_temp_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. net/batman-adv/log.c:105:1-17: WARNING: batadv_log_fops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. sound/core/control.c:57:7-23: WARNING: snd_ctl_f_ops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. sound/core/rawmidi.c:385:7-23: WARNING: snd_rawmidi_f_ops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. sound/core/seq/seq_clientmgr.c:310:7-23: WARNING: snd_seq_f_ops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. sound/core/timer.c:1428:7-23: WARNING: snd_timer_f_ops: .read() has stream semantic; safe to change nonseekable_open -> stream_open. One can also recheck/review the patch via generating it with explanation comments included via $ make coccicheck MODE=patch COCCI=scripts/coccinelle/api/stream_open.cocci SPFLAGS="-D explain" (*) This second group also contains cases with read/write deadlocks that stream_open.cocci don't yet detect, but which are still valid to convert to stream_open since ppos is not used. For example drivers/pci/switch/switchtec.c calls wait_for_completion_interruptible() in its .read, but stream_open.cocci currently detects only "wait_event*" as blocking. Cc: Michael Kerrisk <mtk.manpages@gmail.com> Cc: Yongzhi Pan <panyongzhi@gmail.com> Cc: Jonathan Corbet <corbet@lwn.net> Cc: David Vrabel <david.vrabel@citrix.com> Cc: Juergen Gross <jgross@suse.com> Cc: Miklos Szeredi <miklos@szeredi.hu> Cc: Tejun Heo <tj@kernel.org> Cc: Kirill Tkhai <ktkhai@virtuozzo.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Christoph Hellwig <hch@lst.de> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Julia Lawall <Julia.Lawall@lip6.fr> Cc: Nikolaus Rath <Nikolaus@rath.org> Cc: Han-Wen Nienhuys <hanwen@google.com> Cc: Anatolij Gustschin <agust@denx.de> Cc: Jeff Dike <jdike@addtoit.com> Cc: Richard Weinberger <richard@nod.at> Cc: Anton Ivanov <anton.ivanov@cambridgegreys.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "James R. Van Zandt" <jrv@vanzandt.mv.com> Cc: Corey Minyard <minyard@acm.org> Cc: Harald Welte <laforge@gnumonks.org> Acked-by: Lubomir Rintel <lkundrak@v3.sk> [scr24x_cs] Cc: Stefan Richter <stefanr@s5r6.in-berlin.de> Cc: Johan Hovold <johan@kernel.org> Cc: David Herrmann <dh.herrmann@googlemail.com> Cc: Jiri Kosina <jikos@kernel.org> Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com> Cc: Jean Delvare <jdelvare@suse.com> Acked-by: Guenter Roeck <linux@roeck-us.net> [watchdog/* hwmon/*] Cc: Rudolf Marek <r.marek@assembler.cz> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Karsten Keil <isdn@linux-pingi.de> Cc: Jacek Anaszewski <jacek.anaszewski@gmail.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: Mauro Carvalho Chehab <mchehab@kernel.org> Cc: Kurt Schwemmer <kurt.schwemmer@microsemi.com> Acked-by: Logan Gunthorpe <logang@deltatee.com> [drivers/pci/switch/switchtec] Acked-by: Bjorn Helgaas <bhelgaas@google.com> [drivers/pci/switch/switchtec] Cc: Benson Leung <bleung@chromium.org> Acked-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> [platform/chrome] Cc: Alessandro Zummo <a.zummo@towertech.it> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> [rtc/*] Cc: Mark Brown <broonie@kernel.org> Cc: Wim Van Sebroeck <wim@linux-watchdog.org> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: bcm-kernel-feedback-list@broadcom.com Cc: Wan ZongShun <mcuos.com@gmail.com> Cc: Zwane Mwaikambo <zwanem@gmail.com> Cc: Marek Lindner <mareklindner@neomailbox.ch> Cc: Simon Wunderlich <sw@simonwunderlich.de> Cc: Antonio Quartulli <a@unstable.cc> Cc: "David S. Miller" <davem@davemloft.net> Cc: Johannes Berg <johannes@sipsolutions.net> Cc: Jaroslav Kysela <perex@perex.cz> Cc: Takashi Iwai <tiwai@suse.com> Signed-off-by: Kirill Smelkov <kirr@nexedi.com>
1184 lines
29 KiB
C
1184 lines
29 KiB
C
/*
|
|
* watchdog_dev.c
|
|
*
|
|
* (c) Copyright 2008-2011 Alan Cox <alan@lxorguk.ukuu.org.uk>,
|
|
* All Rights Reserved.
|
|
*
|
|
* (c) Copyright 2008-2011 Wim Van Sebroeck <wim@iguana.be>.
|
|
*
|
|
*
|
|
* This source code is part of the generic code that can be used
|
|
* by all the watchdog timer drivers.
|
|
*
|
|
* This part of the generic code takes care of the following
|
|
* misc device: /dev/watchdog.
|
|
*
|
|
* Based on source code of the following authors:
|
|
* Matt Domsch <Matt_Domsch@dell.com>,
|
|
* Rob Radez <rob@osinvestor.com>,
|
|
* Rusty Lynch <rusty@linux.co.intel.com>
|
|
* Satyam Sharma <satyam@infradead.org>
|
|
* Randy Dunlap <randy.dunlap@oracle.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the License, or (at your option) any later version.
|
|
*
|
|
* Neither Alan Cox, CymruNet Ltd., Wim Van Sebroeck nor Iguana vzw.
|
|
* admit liability nor provide warranty for any of this software.
|
|
* This material is provided "AS-IS" and at no charge.
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/cdev.h> /* For character device */
|
|
#include <linux/errno.h> /* For the -ENODEV/... values */
|
|
#include <linux/fs.h> /* For file operations */
|
|
#include <linux/init.h> /* For __init/__exit/... */
|
|
#include <linux/hrtimer.h> /* For hrtimers */
|
|
#include <linux/kernel.h> /* For printk/panic/... */
|
|
#include <linux/kref.h> /* For data references */
|
|
#include <linux/kthread.h> /* For kthread_work */
|
|
#include <linux/miscdevice.h> /* For handling misc devices */
|
|
#include <linux/module.h> /* For module stuff/... */
|
|
#include <linux/mutex.h> /* For mutexes */
|
|
#include <linux/reboot.h> /* For reboot notifier */
|
|
#include <linux/slab.h> /* For memory functions */
|
|
#include <linux/types.h> /* For standard types (like size_t) */
|
|
#include <linux/watchdog.h> /* For watchdog specific items */
|
|
#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
|
|
|
|
#include <uapi/linux/sched/types.h> /* For struct sched_param */
|
|
|
|
#include "watchdog_core.h"
|
|
#include "watchdog_pretimeout.h"
|
|
|
|
/*
|
|
* struct watchdog_core_data - watchdog core internal data
|
|
* @kref: Reference count.
|
|
* @cdev: The watchdog's Character device.
|
|
* @wdd: Pointer to watchdog device.
|
|
* @lock: Lock for watchdog core.
|
|
* @status: Watchdog core internal status bits.
|
|
*/
|
|
struct watchdog_core_data {
|
|
struct kref kref;
|
|
struct cdev cdev;
|
|
struct watchdog_device *wdd;
|
|
struct mutex lock;
|
|
ktime_t last_keepalive;
|
|
ktime_t last_hw_keepalive;
|
|
struct hrtimer timer;
|
|
struct kthread_work work;
|
|
unsigned long status; /* Internal status bits */
|
|
#define _WDOG_DEV_OPEN 0 /* Opened ? */
|
|
#define _WDOG_ALLOW_RELEASE 1 /* Did we receive the magic char ? */
|
|
#define _WDOG_KEEPALIVE 2 /* Did we receive a keepalive ? */
|
|
};
|
|
|
|
/* the dev_t structure to store the dynamically allocated watchdog devices */
|
|
static dev_t watchdog_devt;
|
|
/* Reference to watchdog device behind /dev/watchdog */
|
|
static struct watchdog_core_data *old_wd_data;
|
|
|
|
static struct kthread_worker *watchdog_kworker;
|
|
|
|
static bool handle_boot_enabled =
|
|
IS_ENABLED(CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED);
|
|
|
|
static inline bool watchdog_need_worker(struct watchdog_device *wdd)
|
|
{
|
|
/* All variables in milli-seconds */
|
|
unsigned int hm = wdd->max_hw_heartbeat_ms;
|
|
unsigned int t = wdd->timeout * 1000;
|
|
|
|
/*
|
|
* A worker to generate heartbeat requests is needed if all of the
|
|
* following conditions are true.
|
|
* - Userspace activated the watchdog.
|
|
* - The driver provided a value for the maximum hardware timeout, and
|
|
* thus is aware that the framework supports generating heartbeat
|
|
* requests.
|
|
* - Userspace requests a longer timeout than the hardware can handle.
|
|
*
|
|
* Alternatively, if userspace has not opened the watchdog
|
|
* device, we take care of feeding the watchdog if it is
|
|
* running.
|
|
*/
|
|
return (hm && watchdog_active(wdd) && t > hm) ||
|
|
(t && !watchdog_active(wdd) && watchdog_hw_running(wdd));
|
|
}
|
|
|
|
static ktime_t watchdog_next_keepalive(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
unsigned int timeout_ms = wdd->timeout * 1000;
|
|
ktime_t keepalive_interval;
|
|
ktime_t last_heartbeat, latest_heartbeat;
|
|
ktime_t virt_timeout;
|
|
unsigned int hw_heartbeat_ms;
|
|
|
|
virt_timeout = ktime_add(wd_data->last_keepalive,
|
|
ms_to_ktime(timeout_ms));
|
|
hw_heartbeat_ms = min_not_zero(timeout_ms, wdd->max_hw_heartbeat_ms);
|
|
keepalive_interval = ms_to_ktime(hw_heartbeat_ms / 2);
|
|
|
|
if (!watchdog_active(wdd))
|
|
return keepalive_interval;
|
|
|
|
/*
|
|
* To ensure that the watchdog times out wdd->timeout seconds
|
|
* after the most recent ping from userspace, the last
|
|
* worker ping has to come in hw_heartbeat_ms before this timeout.
|
|
*/
|
|
last_heartbeat = ktime_sub(virt_timeout, ms_to_ktime(hw_heartbeat_ms));
|
|
latest_heartbeat = ktime_sub(last_heartbeat, ktime_get());
|
|
if (ktime_before(latest_heartbeat, keepalive_interval))
|
|
return latest_heartbeat;
|
|
return keepalive_interval;
|
|
}
|
|
|
|
static inline void watchdog_update_worker(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
|
|
if (watchdog_need_worker(wdd)) {
|
|
ktime_t t = watchdog_next_keepalive(wdd);
|
|
|
|
if (t > 0)
|
|
hrtimer_start(&wd_data->timer, t, HRTIMER_MODE_REL);
|
|
} else {
|
|
hrtimer_cancel(&wd_data->timer);
|
|
}
|
|
}
|
|
|
|
static int __watchdog_ping(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
ktime_t earliest_keepalive, now;
|
|
int err;
|
|
|
|
earliest_keepalive = ktime_add(wd_data->last_hw_keepalive,
|
|
ms_to_ktime(wdd->min_hw_heartbeat_ms));
|
|
now = ktime_get();
|
|
|
|
if (ktime_after(earliest_keepalive, now)) {
|
|
hrtimer_start(&wd_data->timer,
|
|
ktime_sub(earliest_keepalive, now),
|
|
HRTIMER_MODE_REL);
|
|
return 0;
|
|
}
|
|
|
|
wd_data->last_hw_keepalive = now;
|
|
|
|
if (wdd->ops->ping)
|
|
err = wdd->ops->ping(wdd); /* ping the watchdog */
|
|
else
|
|
err = wdd->ops->start(wdd); /* restart watchdog */
|
|
|
|
watchdog_update_worker(wdd);
|
|
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_ping: ping the watchdog.
|
|
* @wdd: the watchdog device to ping
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*
|
|
* If the watchdog has no own ping operation then it needs to be
|
|
* restarted via the start operation. This wrapper function does
|
|
* exactly that.
|
|
* We only ping when the watchdog device is running.
|
|
*/
|
|
|
|
static int watchdog_ping(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
|
|
if (!watchdog_active(wdd) && !watchdog_hw_running(wdd))
|
|
return 0;
|
|
|
|
set_bit(_WDOG_KEEPALIVE, &wd_data->status);
|
|
|
|
wd_data->last_keepalive = ktime_get();
|
|
return __watchdog_ping(wdd);
|
|
}
|
|
|
|
static bool watchdog_worker_should_ping(struct watchdog_core_data *wd_data)
|
|
{
|
|
struct watchdog_device *wdd = wd_data->wdd;
|
|
|
|
return wdd && (watchdog_active(wdd) || watchdog_hw_running(wdd));
|
|
}
|
|
|
|
static void watchdog_ping_work(struct kthread_work *work)
|
|
{
|
|
struct watchdog_core_data *wd_data;
|
|
|
|
wd_data = container_of(work, struct watchdog_core_data, work);
|
|
|
|
mutex_lock(&wd_data->lock);
|
|
if (watchdog_worker_should_ping(wd_data))
|
|
__watchdog_ping(wd_data->wdd);
|
|
mutex_unlock(&wd_data->lock);
|
|
}
|
|
|
|
static enum hrtimer_restart watchdog_timer_expired(struct hrtimer *timer)
|
|
{
|
|
struct watchdog_core_data *wd_data;
|
|
|
|
wd_data = container_of(timer, struct watchdog_core_data, timer);
|
|
|
|
kthread_queue_work(watchdog_kworker, &wd_data->work);
|
|
return HRTIMER_NORESTART;
|
|
}
|
|
|
|
/*
|
|
* watchdog_start: wrapper to start the watchdog.
|
|
* @wdd: the watchdog device to start
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*
|
|
* Start the watchdog if it is not active and mark it active.
|
|
* This function returns zero on success or a negative errno code for
|
|
* failure.
|
|
*/
|
|
|
|
static int watchdog_start(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
ktime_t started_at;
|
|
int err;
|
|
|
|
if (watchdog_active(wdd))
|
|
return 0;
|
|
|
|
set_bit(_WDOG_KEEPALIVE, &wd_data->status);
|
|
|
|
started_at = ktime_get();
|
|
if (watchdog_hw_running(wdd) && wdd->ops->ping)
|
|
err = wdd->ops->ping(wdd);
|
|
else
|
|
err = wdd->ops->start(wdd);
|
|
if (err == 0) {
|
|
set_bit(WDOG_ACTIVE, &wdd->status);
|
|
wd_data->last_keepalive = started_at;
|
|
watchdog_update_worker(wdd);
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_stop: wrapper to stop the watchdog.
|
|
* @wdd: the watchdog device to stop
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*
|
|
* Stop the watchdog if it is still active and unmark it active.
|
|
* This function returns zero on success or a negative errno code for
|
|
* failure.
|
|
* If the 'nowayout' feature was set, the watchdog cannot be stopped.
|
|
*/
|
|
|
|
static int watchdog_stop(struct watchdog_device *wdd)
|
|
{
|
|
int err = 0;
|
|
|
|
if (!watchdog_active(wdd))
|
|
return 0;
|
|
|
|
if (test_bit(WDOG_NO_WAY_OUT, &wdd->status)) {
|
|
pr_info("watchdog%d: nowayout prevents watchdog being stopped!\n",
|
|
wdd->id);
|
|
return -EBUSY;
|
|
}
|
|
|
|
if (wdd->ops->stop) {
|
|
clear_bit(WDOG_HW_RUNNING, &wdd->status);
|
|
err = wdd->ops->stop(wdd);
|
|
} else {
|
|
set_bit(WDOG_HW_RUNNING, &wdd->status);
|
|
}
|
|
|
|
if (err == 0) {
|
|
clear_bit(WDOG_ACTIVE, &wdd->status);
|
|
watchdog_update_worker(wdd);
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_get_status: wrapper to get the watchdog status
|
|
* @wdd: the watchdog device to get the status from
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*
|
|
* Get the watchdog's status flags.
|
|
*/
|
|
|
|
static unsigned int watchdog_get_status(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
unsigned int status;
|
|
|
|
if (wdd->ops->status)
|
|
status = wdd->ops->status(wdd);
|
|
else
|
|
status = wdd->bootstatus & (WDIOF_CARDRESET |
|
|
WDIOF_OVERHEAT |
|
|
WDIOF_FANFAULT |
|
|
WDIOF_EXTERN1 |
|
|
WDIOF_EXTERN2 |
|
|
WDIOF_POWERUNDER |
|
|
WDIOF_POWEROVER);
|
|
|
|
if (test_bit(_WDOG_ALLOW_RELEASE, &wd_data->status))
|
|
status |= WDIOF_MAGICCLOSE;
|
|
|
|
if (test_and_clear_bit(_WDOG_KEEPALIVE, &wd_data->status))
|
|
status |= WDIOF_KEEPALIVEPING;
|
|
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
* watchdog_set_timeout: set the watchdog timer timeout
|
|
* @wdd: the watchdog device to set the timeout for
|
|
* @timeout: timeout to set in seconds
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*/
|
|
|
|
static int watchdog_set_timeout(struct watchdog_device *wdd,
|
|
unsigned int timeout)
|
|
{
|
|
int err = 0;
|
|
|
|
if (!(wdd->info->options & WDIOF_SETTIMEOUT))
|
|
return -EOPNOTSUPP;
|
|
|
|
if (watchdog_timeout_invalid(wdd, timeout))
|
|
return -EINVAL;
|
|
|
|
if (wdd->ops->set_timeout) {
|
|
err = wdd->ops->set_timeout(wdd, timeout);
|
|
} else {
|
|
wdd->timeout = timeout;
|
|
/* Disable pretimeout if it doesn't fit the new timeout */
|
|
if (wdd->pretimeout >= wdd->timeout)
|
|
wdd->pretimeout = 0;
|
|
}
|
|
|
|
watchdog_update_worker(wdd);
|
|
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_set_pretimeout: set the watchdog timer pretimeout
|
|
* @wdd: the watchdog device to set the timeout for
|
|
* @timeout: pretimeout to set in seconds
|
|
*/
|
|
|
|
static int watchdog_set_pretimeout(struct watchdog_device *wdd,
|
|
unsigned int timeout)
|
|
{
|
|
int err = 0;
|
|
|
|
if (!(wdd->info->options & WDIOF_PRETIMEOUT))
|
|
return -EOPNOTSUPP;
|
|
|
|
if (watchdog_pretimeout_invalid(wdd, timeout))
|
|
return -EINVAL;
|
|
|
|
if (wdd->ops->set_pretimeout)
|
|
err = wdd->ops->set_pretimeout(wdd, timeout);
|
|
else
|
|
wdd->pretimeout = timeout;
|
|
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_get_timeleft: wrapper to get the time left before a reboot
|
|
* @wdd: the watchdog device to get the remaining time from
|
|
* @timeleft: the time that's left
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*
|
|
* Get the time before a watchdog will reboot (if not pinged).
|
|
*/
|
|
|
|
static int watchdog_get_timeleft(struct watchdog_device *wdd,
|
|
unsigned int *timeleft)
|
|
{
|
|
*timeleft = 0;
|
|
|
|
if (!wdd->ops->get_timeleft)
|
|
return -EOPNOTSUPP;
|
|
|
|
*timeleft = wdd->ops->get_timeleft(wdd);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_WATCHDOG_SYSFS
|
|
static ssize_t nowayout_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
return sprintf(buf, "%d\n", !!test_bit(WDOG_NO_WAY_OUT, &wdd->status));
|
|
}
|
|
static DEVICE_ATTR_RO(nowayout);
|
|
|
|
static ssize_t status_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
unsigned int status;
|
|
|
|
mutex_lock(&wd_data->lock);
|
|
status = watchdog_get_status(wdd);
|
|
mutex_unlock(&wd_data->lock);
|
|
|
|
return sprintf(buf, "0x%x\n", status);
|
|
}
|
|
static DEVICE_ATTR_RO(status);
|
|
|
|
static ssize_t bootstatus_show(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
return sprintf(buf, "%u\n", wdd->bootstatus);
|
|
}
|
|
static DEVICE_ATTR_RO(bootstatus);
|
|
|
|
static ssize_t timeleft_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
ssize_t status;
|
|
unsigned int val;
|
|
|
|
mutex_lock(&wd_data->lock);
|
|
status = watchdog_get_timeleft(wdd, &val);
|
|
mutex_unlock(&wd_data->lock);
|
|
if (!status)
|
|
status = sprintf(buf, "%u\n", val);
|
|
|
|
return status;
|
|
}
|
|
static DEVICE_ATTR_RO(timeleft);
|
|
|
|
static ssize_t timeout_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
return sprintf(buf, "%u\n", wdd->timeout);
|
|
}
|
|
static DEVICE_ATTR_RO(timeout);
|
|
|
|
static ssize_t pretimeout_show(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
return sprintf(buf, "%u\n", wdd->pretimeout);
|
|
}
|
|
static DEVICE_ATTR_RO(pretimeout);
|
|
|
|
static ssize_t identity_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
return sprintf(buf, "%s\n", wdd->info->identity);
|
|
}
|
|
static DEVICE_ATTR_RO(identity);
|
|
|
|
static ssize_t state_show(struct device *dev, struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
if (watchdog_active(wdd))
|
|
return sprintf(buf, "active\n");
|
|
|
|
return sprintf(buf, "inactive\n");
|
|
}
|
|
static DEVICE_ATTR_RO(state);
|
|
|
|
static ssize_t pretimeout_available_governors_show(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
return watchdog_pretimeout_available_governors_get(buf);
|
|
}
|
|
static DEVICE_ATTR_RO(pretimeout_available_governors);
|
|
|
|
static ssize_t pretimeout_governor_show(struct device *dev,
|
|
struct device_attribute *attr,
|
|
char *buf)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
|
|
return watchdog_pretimeout_governor_get(wdd, buf);
|
|
}
|
|
|
|
static ssize_t pretimeout_governor_store(struct device *dev,
|
|
struct device_attribute *attr,
|
|
const char *buf, size_t count)
|
|
{
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
int ret = watchdog_pretimeout_governor_set(wdd, buf);
|
|
|
|
if (!ret)
|
|
ret = count;
|
|
|
|
return ret;
|
|
}
|
|
static DEVICE_ATTR_RW(pretimeout_governor);
|
|
|
|
static umode_t wdt_is_visible(struct kobject *kobj, struct attribute *attr,
|
|
int n)
|
|
{
|
|
struct device *dev = container_of(kobj, struct device, kobj);
|
|
struct watchdog_device *wdd = dev_get_drvdata(dev);
|
|
umode_t mode = attr->mode;
|
|
|
|
if (attr == &dev_attr_timeleft.attr && !wdd->ops->get_timeleft)
|
|
mode = 0;
|
|
else if (attr == &dev_attr_pretimeout.attr &&
|
|
!(wdd->info->options & WDIOF_PRETIMEOUT))
|
|
mode = 0;
|
|
else if ((attr == &dev_attr_pretimeout_governor.attr ||
|
|
attr == &dev_attr_pretimeout_available_governors.attr) &&
|
|
(!(wdd->info->options & WDIOF_PRETIMEOUT) ||
|
|
!IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_GOV)))
|
|
mode = 0;
|
|
|
|
return mode;
|
|
}
|
|
static struct attribute *wdt_attrs[] = {
|
|
&dev_attr_state.attr,
|
|
&dev_attr_identity.attr,
|
|
&dev_attr_timeout.attr,
|
|
&dev_attr_pretimeout.attr,
|
|
&dev_attr_timeleft.attr,
|
|
&dev_attr_bootstatus.attr,
|
|
&dev_attr_status.attr,
|
|
&dev_attr_nowayout.attr,
|
|
&dev_attr_pretimeout_governor.attr,
|
|
&dev_attr_pretimeout_available_governors.attr,
|
|
NULL,
|
|
};
|
|
|
|
static const struct attribute_group wdt_group = {
|
|
.attrs = wdt_attrs,
|
|
.is_visible = wdt_is_visible,
|
|
};
|
|
__ATTRIBUTE_GROUPS(wdt);
|
|
#else
|
|
#define wdt_groups NULL
|
|
#endif
|
|
|
|
/*
|
|
* watchdog_ioctl_op: call the watchdog drivers ioctl op if defined
|
|
* @wdd: the watchdog device to do the ioctl on
|
|
* @cmd: watchdog command
|
|
* @arg: argument pointer
|
|
*
|
|
* The caller must hold wd_data->lock.
|
|
*/
|
|
|
|
static int watchdog_ioctl_op(struct watchdog_device *wdd, unsigned int cmd,
|
|
unsigned long arg)
|
|
{
|
|
if (!wdd->ops->ioctl)
|
|
return -ENOIOCTLCMD;
|
|
|
|
return wdd->ops->ioctl(wdd, cmd, arg);
|
|
}
|
|
|
|
/*
|
|
* watchdog_write: writes to the watchdog.
|
|
* @file: file from VFS
|
|
* @data: user address of data
|
|
* @len: length of data
|
|
* @ppos: pointer to the file offset
|
|
*
|
|
* A write to a watchdog device is defined as a keepalive ping.
|
|
* Writing the magic 'V' sequence allows the next close to turn
|
|
* off the watchdog (if 'nowayout' is not set).
|
|
*/
|
|
|
|
static ssize_t watchdog_write(struct file *file, const char __user *data,
|
|
size_t len, loff_t *ppos)
|
|
{
|
|
struct watchdog_core_data *wd_data = file->private_data;
|
|
struct watchdog_device *wdd;
|
|
int err;
|
|
size_t i;
|
|
char c;
|
|
|
|
if (len == 0)
|
|
return 0;
|
|
|
|
/*
|
|
* Note: just in case someone wrote the magic character
|
|
* five months ago...
|
|
*/
|
|
clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status);
|
|
|
|
/* scan to see whether or not we got the magic character */
|
|
for (i = 0; i != len; i++) {
|
|
if (get_user(c, data + i))
|
|
return -EFAULT;
|
|
if (c == 'V')
|
|
set_bit(_WDOG_ALLOW_RELEASE, &wd_data->status);
|
|
}
|
|
|
|
/* someone wrote to us, so we send the watchdog a keepalive ping */
|
|
|
|
err = -ENODEV;
|
|
mutex_lock(&wd_data->lock);
|
|
wdd = wd_data->wdd;
|
|
if (wdd)
|
|
err = watchdog_ping(wdd);
|
|
mutex_unlock(&wd_data->lock);
|
|
|
|
if (err < 0)
|
|
return err;
|
|
|
|
return len;
|
|
}
|
|
|
|
/*
|
|
* watchdog_ioctl: handle the different ioctl's for the watchdog device.
|
|
* @file: file handle to the device
|
|
* @cmd: watchdog command
|
|
* @arg: argument pointer
|
|
*
|
|
* The watchdog API defines a common set of functions for all watchdogs
|
|
* according to their available features.
|
|
*/
|
|
|
|
static long watchdog_ioctl(struct file *file, unsigned int cmd,
|
|
unsigned long arg)
|
|
{
|
|
struct watchdog_core_data *wd_data = file->private_data;
|
|
void __user *argp = (void __user *)arg;
|
|
struct watchdog_device *wdd;
|
|
int __user *p = argp;
|
|
unsigned int val;
|
|
int err;
|
|
|
|
mutex_lock(&wd_data->lock);
|
|
|
|
wdd = wd_data->wdd;
|
|
if (!wdd) {
|
|
err = -ENODEV;
|
|
goto out_ioctl;
|
|
}
|
|
|
|
err = watchdog_ioctl_op(wdd, cmd, arg);
|
|
if (err != -ENOIOCTLCMD)
|
|
goto out_ioctl;
|
|
|
|
switch (cmd) {
|
|
case WDIOC_GETSUPPORT:
|
|
err = copy_to_user(argp, wdd->info,
|
|
sizeof(struct watchdog_info)) ? -EFAULT : 0;
|
|
break;
|
|
case WDIOC_GETSTATUS:
|
|
val = watchdog_get_status(wdd);
|
|
err = put_user(val, p);
|
|
break;
|
|
case WDIOC_GETBOOTSTATUS:
|
|
err = put_user(wdd->bootstatus, p);
|
|
break;
|
|
case WDIOC_SETOPTIONS:
|
|
if (get_user(val, p)) {
|
|
err = -EFAULT;
|
|
break;
|
|
}
|
|
if (val & WDIOS_DISABLECARD) {
|
|
err = watchdog_stop(wdd);
|
|
if (err < 0)
|
|
break;
|
|
}
|
|
if (val & WDIOS_ENABLECARD)
|
|
err = watchdog_start(wdd);
|
|
break;
|
|
case WDIOC_KEEPALIVE:
|
|
if (!(wdd->info->options & WDIOF_KEEPALIVEPING)) {
|
|
err = -EOPNOTSUPP;
|
|
break;
|
|
}
|
|
err = watchdog_ping(wdd);
|
|
break;
|
|
case WDIOC_SETTIMEOUT:
|
|
if (get_user(val, p)) {
|
|
err = -EFAULT;
|
|
break;
|
|
}
|
|
err = watchdog_set_timeout(wdd, val);
|
|
if (err < 0)
|
|
break;
|
|
/* If the watchdog is active then we send a keepalive ping
|
|
* to make sure that the watchdog keep's running (and if
|
|
* possible that it takes the new timeout) */
|
|
err = watchdog_ping(wdd);
|
|
if (err < 0)
|
|
break;
|
|
/* fall through */
|
|
case WDIOC_GETTIMEOUT:
|
|
/* timeout == 0 means that we don't know the timeout */
|
|
if (wdd->timeout == 0) {
|
|
err = -EOPNOTSUPP;
|
|
break;
|
|
}
|
|
err = put_user(wdd->timeout, p);
|
|
break;
|
|
case WDIOC_GETTIMELEFT:
|
|
err = watchdog_get_timeleft(wdd, &val);
|
|
if (err < 0)
|
|
break;
|
|
err = put_user(val, p);
|
|
break;
|
|
case WDIOC_SETPRETIMEOUT:
|
|
if (get_user(val, p)) {
|
|
err = -EFAULT;
|
|
break;
|
|
}
|
|
err = watchdog_set_pretimeout(wdd, val);
|
|
break;
|
|
case WDIOC_GETPRETIMEOUT:
|
|
err = put_user(wdd->pretimeout, p);
|
|
break;
|
|
default:
|
|
err = -ENOTTY;
|
|
break;
|
|
}
|
|
|
|
out_ioctl:
|
|
mutex_unlock(&wd_data->lock);
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_open: open the /dev/watchdog* devices.
|
|
* @inode: inode of device
|
|
* @file: file handle to device
|
|
*
|
|
* When the /dev/watchdog* device gets opened, we start the watchdog.
|
|
* Watch out: the /dev/watchdog device is single open, so we make sure
|
|
* it can only be opened once.
|
|
*/
|
|
|
|
static int watchdog_open(struct inode *inode, struct file *file)
|
|
{
|
|
struct watchdog_core_data *wd_data;
|
|
struct watchdog_device *wdd;
|
|
bool hw_running;
|
|
int err;
|
|
|
|
/* Get the corresponding watchdog device */
|
|
if (imajor(inode) == MISC_MAJOR)
|
|
wd_data = old_wd_data;
|
|
else
|
|
wd_data = container_of(inode->i_cdev, struct watchdog_core_data,
|
|
cdev);
|
|
|
|
/* the watchdog is single open! */
|
|
if (test_and_set_bit(_WDOG_DEV_OPEN, &wd_data->status))
|
|
return -EBUSY;
|
|
|
|
wdd = wd_data->wdd;
|
|
|
|
/*
|
|
* If the /dev/watchdog device is open, we don't want the module
|
|
* to be unloaded.
|
|
*/
|
|
hw_running = watchdog_hw_running(wdd);
|
|
if (!hw_running && !try_module_get(wdd->ops->owner)) {
|
|
err = -EBUSY;
|
|
goto out_clear;
|
|
}
|
|
|
|
err = watchdog_start(wdd);
|
|
if (err < 0)
|
|
goto out_mod;
|
|
|
|
file->private_data = wd_data;
|
|
|
|
if (!hw_running)
|
|
kref_get(&wd_data->kref);
|
|
|
|
/* dev/watchdog is a virtual (and thus non-seekable) filesystem */
|
|
return stream_open(inode, file);
|
|
|
|
out_mod:
|
|
module_put(wd_data->wdd->ops->owner);
|
|
out_clear:
|
|
clear_bit(_WDOG_DEV_OPEN, &wd_data->status);
|
|
return err;
|
|
}
|
|
|
|
static void watchdog_core_data_release(struct kref *kref)
|
|
{
|
|
struct watchdog_core_data *wd_data;
|
|
|
|
wd_data = container_of(kref, struct watchdog_core_data, kref);
|
|
|
|
kfree(wd_data);
|
|
}
|
|
|
|
/*
|
|
* watchdog_release: release the watchdog device.
|
|
* @inode: inode of device
|
|
* @file: file handle to device
|
|
*
|
|
* This is the code for when /dev/watchdog gets closed. We will only
|
|
* stop the watchdog when we have received the magic char (and nowayout
|
|
* was not set), else the watchdog will keep running.
|
|
*/
|
|
|
|
static int watchdog_release(struct inode *inode, struct file *file)
|
|
{
|
|
struct watchdog_core_data *wd_data = file->private_data;
|
|
struct watchdog_device *wdd;
|
|
int err = -EBUSY;
|
|
bool running;
|
|
|
|
mutex_lock(&wd_data->lock);
|
|
|
|
wdd = wd_data->wdd;
|
|
if (!wdd)
|
|
goto done;
|
|
|
|
/*
|
|
* We only stop the watchdog if we received the magic character
|
|
* or if WDIOF_MAGICCLOSE is not set. If nowayout was set then
|
|
* watchdog_stop will fail.
|
|
*/
|
|
if (!test_bit(WDOG_ACTIVE, &wdd->status))
|
|
err = 0;
|
|
else if (test_and_clear_bit(_WDOG_ALLOW_RELEASE, &wd_data->status) ||
|
|
!(wdd->info->options & WDIOF_MAGICCLOSE))
|
|
err = watchdog_stop(wdd);
|
|
|
|
/* If the watchdog was not stopped, send a keepalive ping */
|
|
if (err < 0) {
|
|
pr_crit("watchdog%d: watchdog did not stop!\n", wdd->id);
|
|
watchdog_ping(wdd);
|
|
}
|
|
|
|
watchdog_update_worker(wdd);
|
|
|
|
/* make sure that /dev/watchdog can be re-opened */
|
|
clear_bit(_WDOG_DEV_OPEN, &wd_data->status);
|
|
|
|
done:
|
|
running = wdd && watchdog_hw_running(wdd);
|
|
mutex_unlock(&wd_data->lock);
|
|
/*
|
|
* Allow the owner module to be unloaded again unless the watchdog
|
|
* is still running. If the watchdog is still running, it can not
|
|
* be stopped, and its driver must not be unloaded.
|
|
*/
|
|
if (!running) {
|
|
module_put(wd_data->cdev.owner);
|
|
kref_put(&wd_data->kref, watchdog_core_data_release);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static const struct file_operations watchdog_fops = {
|
|
.owner = THIS_MODULE,
|
|
.write = watchdog_write,
|
|
.unlocked_ioctl = watchdog_ioctl,
|
|
.open = watchdog_open,
|
|
.release = watchdog_release,
|
|
};
|
|
|
|
static struct miscdevice watchdog_miscdev = {
|
|
.minor = WATCHDOG_MINOR,
|
|
.name = "watchdog",
|
|
.fops = &watchdog_fops,
|
|
};
|
|
|
|
/*
|
|
* watchdog_cdev_register: register watchdog character device
|
|
* @wdd: watchdog device
|
|
* @devno: character device number
|
|
*
|
|
* Register a watchdog character device including handling the legacy
|
|
* /dev/watchdog node. /dev/watchdog is actually a miscdevice and
|
|
* thus we set it up like that.
|
|
*/
|
|
|
|
static int watchdog_cdev_register(struct watchdog_device *wdd, dev_t devno)
|
|
{
|
|
struct watchdog_core_data *wd_data;
|
|
int err;
|
|
|
|
wd_data = kzalloc(sizeof(struct watchdog_core_data), GFP_KERNEL);
|
|
if (!wd_data)
|
|
return -ENOMEM;
|
|
kref_init(&wd_data->kref);
|
|
mutex_init(&wd_data->lock);
|
|
|
|
wd_data->wdd = wdd;
|
|
wdd->wd_data = wd_data;
|
|
|
|
if (IS_ERR_OR_NULL(watchdog_kworker))
|
|
return -ENODEV;
|
|
|
|
kthread_init_work(&wd_data->work, watchdog_ping_work);
|
|
hrtimer_init(&wd_data->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
wd_data->timer.function = watchdog_timer_expired;
|
|
|
|
if (wdd->id == 0) {
|
|
old_wd_data = wd_data;
|
|
watchdog_miscdev.parent = wdd->parent;
|
|
err = misc_register(&watchdog_miscdev);
|
|
if (err != 0) {
|
|
pr_err("%s: cannot register miscdev on minor=%d (err=%d).\n",
|
|
wdd->info->identity, WATCHDOG_MINOR, err);
|
|
if (err == -EBUSY)
|
|
pr_err("%s: a legacy watchdog module is probably present.\n",
|
|
wdd->info->identity);
|
|
old_wd_data = NULL;
|
|
kfree(wd_data);
|
|
return err;
|
|
}
|
|
}
|
|
|
|
/* Fill in the data structures */
|
|
cdev_init(&wd_data->cdev, &watchdog_fops);
|
|
wd_data->cdev.owner = wdd->ops->owner;
|
|
|
|
/* Add the device */
|
|
err = cdev_add(&wd_data->cdev, devno, 1);
|
|
if (err) {
|
|
pr_err("watchdog%d unable to add device %d:%d\n",
|
|
wdd->id, MAJOR(watchdog_devt), wdd->id);
|
|
if (wdd->id == 0) {
|
|
misc_deregister(&watchdog_miscdev);
|
|
old_wd_data = NULL;
|
|
kref_put(&wd_data->kref, watchdog_core_data_release);
|
|
}
|
|
return err;
|
|
}
|
|
|
|
/* Record time of most recent heartbeat as 'just before now'. */
|
|
wd_data->last_hw_keepalive = ktime_sub(ktime_get(), 1);
|
|
|
|
/*
|
|
* If the watchdog is running, prevent its driver from being unloaded,
|
|
* and schedule an immediate ping.
|
|
*/
|
|
if (watchdog_hw_running(wdd)) {
|
|
__module_get(wdd->ops->owner);
|
|
kref_get(&wd_data->kref);
|
|
if (handle_boot_enabled)
|
|
hrtimer_start(&wd_data->timer, 0, HRTIMER_MODE_REL);
|
|
else
|
|
pr_info("watchdog%d running and kernel based pre-userspace handler disabled\n",
|
|
wdd->id);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* watchdog_cdev_unregister: unregister watchdog character device
|
|
* @watchdog: watchdog device
|
|
*
|
|
* Unregister watchdog character device and if needed the legacy
|
|
* /dev/watchdog device.
|
|
*/
|
|
|
|
static void watchdog_cdev_unregister(struct watchdog_device *wdd)
|
|
{
|
|
struct watchdog_core_data *wd_data = wdd->wd_data;
|
|
|
|
cdev_del(&wd_data->cdev);
|
|
if (wdd->id == 0) {
|
|
misc_deregister(&watchdog_miscdev);
|
|
old_wd_data = NULL;
|
|
}
|
|
|
|
if (watchdog_active(wdd) &&
|
|
test_bit(WDOG_STOP_ON_UNREGISTER, &wdd->status)) {
|
|
watchdog_stop(wdd);
|
|
}
|
|
|
|
mutex_lock(&wd_data->lock);
|
|
wd_data->wdd = NULL;
|
|
wdd->wd_data = NULL;
|
|
mutex_unlock(&wd_data->lock);
|
|
|
|
hrtimer_cancel(&wd_data->timer);
|
|
kthread_cancel_work_sync(&wd_data->work);
|
|
|
|
kref_put(&wd_data->kref, watchdog_core_data_release);
|
|
}
|
|
|
|
static struct class watchdog_class = {
|
|
.name = "watchdog",
|
|
.owner = THIS_MODULE,
|
|
.dev_groups = wdt_groups,
|
|
};
|
|
|
|
static int watchdog_reboot_notifier(struct notifier_block *nb,
|
|
unsigned long code, void *data)
|
|
{
|
|
struct watchdog_device *wdd;
|
|
|
|
wdd = container_of(nb, struct watchdog_device, reboot_nb);
|
|
if (code == SYS_DOWN || code == SYS_HALT) {
|
|
if (watchdog_active(wdd)) {
|
|
int ret;
|
|
|
|
ret = wdd->ops->stop(wdd);
|
|
if (ret)
|
|
return NOTIFY_BAD;
|
|
}
|
|
}
|
|
|
|
return NOTIFY_DONE;
|
|
}
|
|
|
|
/*
|
|
* watchdog_dev_register: register a watchdog device
|
|
* @wdd: watchdog device
|
|
*
|
|
* Register a watchdog device including handling the legacy
|
|
* /dev/watchdog node. /dev/watchdog is actually a miscdevice and
|
|
* thus we set it up like that.
|
|
*/
|
|
|
|
int watchdog_dev_register(struct watchdog_device *wdd)
|
|
{
|
|
struct device *dev;
|
|
dev_t devno;
|
|
int ret;
|
|
|
|
devno = MKDEV(MAJOR(watchdog_devt), wdd->id);
|
|
|
|
ret = watchdog_cdev_register(wdd, devno);
|
|
if (ret)
|
|
return ret;
|
|
|
|
dev = device_create_with_groups(&watchdog_class, wdd->parent,
|
|
devno, wdd, wdd->groups,
|
|
"watchdog%d", wdd->id);
|
|
if (IS_ERR(dev)) {
|
|
watchdog_cdev_unregister(wdd);
|
|
return PTR_ERR(dev);
|
|
}
|
|
|
|
ret = watchdog_register_pretimeout(wdd);
|
|
if (ret) {
|
|
device_destroy(&watchdog_class, devno);
|
|
watchdog_cdev_unregister(wdd);
|
|
return ret;
|
|
}
|
|
|
|
if (test_bit(WDOG_STOP_ON_REBOOT, &wdd->status)) {
|
|
wdd->reboot_nb.notifier_call = watchdog_reboot_notifier;
|
|
|
|
ret = devm_register_reboot_notifier(dev, &wdd->reboot_nb);
|
|
if (ret) {
|
|
pr_err("watchdog%d: Cannot register reboot notifier (%d)\n",
|
|
wdd->id, ret);
|
|
watchdog_dev_unregister(wdd);
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* watchdog_dev_unregister: unregister a watchdog device
|
|
* @watchdog: watchdog device
|
|
*
|
|
* Unregister watchdog device and if needed the legacy
|
|
* /dev/watchdog device.
|
|
*/
|
|
|
|
void watchdog_dev_unregister(struct watchdog_device *wdd)
|
|
{
|
|
watchdog_unregister_pretimeout(wdd);
|
|
device_destroy(&watchdog_class, wdd->wd_data->cdev.dev);
|
|
watchdog_cdev_unregister(wdd);
|
|
}
|
|
|
|
/*
|
|
* watchdog_dev_init: init dev part of watchdog core
|
|
*
|
|
* Allocate a range of chardev nodes to use for watchdog devices
|
|
*/
|
|
|
|
int __init watchdog_dev_init(void)
|
|
{
|
|
int err;
|
|
struct sched_param param = {.sched_priority = MAX_RT_PRIO - 1,};
|
|
|
|
watchdog_kworker = kthread_create_worker(0, "watchdogd");
|
|
if (IS_ERR(watchdog_kworker)) {
|
|
pr_err("Failed to create watchdog kworker\n");
|
|
return PTR_ERR(watchdog_kworker);
|
|
}
|
|
sched_setscheduler(watchdog_kworker->task, SCHED_FIFO, ¶m);
|
|
|
|
err = class_register(&watchdog_class);
|
|
if (err < 0) {
|
|
pr_err("couldn't register class\n");
|
|
goto err_register;
|
|
}
|
|
|
|
err = alloc_chrdev_region(&watchdog_devt, 0, MAX_DOGS, "watchdog");
|
|
if (err < 0) {
|
|
pr_err("watchdog: unable to allocate char dev region\n");
|
|
goto err_alloc;
|
|
}
|
|
|
|
return 0;
|
|
|
|
err_alloc:
|
|
class_unregister(&watchdog_class);
|
|
err_register:
|
|
kthread_destroy_worker(watchdog_kworker);
|
|
return err;
|
|
}
|
|
|
|
/*
|
|
* watchdog_dev_exit: exit dev part of watchdog core
|
|
*
|
|
* Release the range of chardev nodes used for watchdog devices
|
|
*/
|
|
|
|
void __exit watchdog_dev_exit(void)
|
|
{
|
|
unregister_chrdev_region(watchdog_devt, MAX_DOGS);
|
|
class_unregister(&watchdog_class);
|
|
kthread_destroy_worker(watchdog_kworker);
|
|
}
|
|
|
|
module_param(handle_boot_enabled, bool, 0444);
|
|
MODULE_PARM_DESC(handle_boot_enabled,
|
|
"Watchdog core auto-updates boot enabled watchdogs before userspace takes over (default="
|
|
__MODULE_STRING(IS_ENABLED(CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED)) ")");
|