⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 watchdog-api.txt

📁 linux 内核源代码
💻 TXT
字号:
Last reviewed: 10/05/2007The Linux Watchdog driver API.Copyright 2002 Christer Weingel <wingel@nano-system.com>Some parts of this document are copied verbatim from the sbc60xxwdtdriver which is (c) Copyright 2000 Jakob Oestergaard <jakob@ostenfeld.dk>This document describes the state of the Linux 2.4.18 kernel.Introduction:A Watchdog Timer (WDT) is a hardware circuit that can reset thecomputer system in case of a software fault.  You probably knew thatalready.Usually a userspace daemon will notify the kernel watchdog driver via the/dev/watchdog special device file that userspace is still alive, atregular intervals.  When such a notification occurs, the driver willusually tell the hardware watchdog that everything is in order, andthat the watchdog should wait for yet another little while to resetthe system.  If userspace fails (RAM error, kernel bug, whatever), thenotifications cease to occur, and the hardware watchdog will reset thesystem (causing a reboot) after the timeout occurs.The Linux watchdog API is a rather ad-hoc construction and differentdrivers implement different, and sometimes incompatible, parts of it.This file is an attempt to document the existing usage and allowfuture driver writers to use it as a reference.The simplest API:All drivers support the basic mode of operation, where the watchdogactivates as soon as /dev/watchdog is opened and will reboot unlessthe watchdog is pinged within a certain time, this time is called thetimeout or margin.  The simplest way to ping the watchdog is to writesome data to the device.  So a very simple watchdog daemon would looklike this source file:  see Documentation/watchdog/src/watchdog-simple.cA more advanced driver could for example check that a HTTP server isstill responding before doing the write call to ping the watchdog.When the device is closed, the watchdog is disabled, unless the "MagicClose" feature is supported (see below).  This is not always such agood idea, since if there is a bug in the watchdog daemon and itcrashes the system will not reboot.  Because of this, some of thedrivers support the configuration option "Disable watchdog shutdown onclose", CONFIG_WATCHDOG_NOWAYOUT.  If it is set to Y when compilingthe kernel, there is no way of disabling the watchdog once it has beenstarted.  So, if the watchdog daemon crashes, the system will rebootafter the timeout has passed. Watchdog devices also usually supportthe nowayout module parameter so that this option can be controlled atruntime.Magic Close feature:If a driver supports "Magic Close", the driver will not disable thewatchdog unless a specific magic character 'V' has been sent to/dev/watchdog just before closing the file.  If the userspace daemoncloses the file without sending this special character, the driverwill assume that the daemon (and userspace in general) died, and willstop pinging the watchdog without disabling it first.  This will thencause a reboot if the watchdog is not re-opened in sufficient time.The ioctl API:All conforming drivers also support an ioctl API.Pinging the watchdog using an ioctl:All drivers that have an ioctl interface support at least one ioctl,KEEPALIVE.  This ioctl does exactly the same thing as a write to thewatchdog device, so the main loop in the above program could bereplaced with:	while (1) {		ioctl(fd, WDIOC_KEEPALIVE, 0);		sleep(10);	}the argument to the ioctl is ignored.Setting and getting the timeout:For some drivers it is possible to modify the watchdog timeout on thefly with the SETTIMEOUT ioctl, those drivers have the WDIOF_SETTIMEOUTflag set in their option field.  The argument is an integerrepresenting the timeout in seconds.  The driver returns the realtimeout used in the same variable, and this timeout might differ fromthe requested one due to limitation of the hardware.    int timeout = 45;    ioctl(fd, WDIOC_SETTIMEOUT, &timeout);    printf("The timeout was set to %d seconds\n", timeout);This example might actually print "The timeout was set to 60 seconds"if the device has a granularity of minutes for its timeout.Starting with the Linux 2.4.18 kernel, it is possible to query thecurrent timeout using the GETTIMEOUT ioctl.    ioctl(fd, WDIOC_GETTIMEOUT, &timeout);    printf("The timeout was is %d seconds\n", timeout);Pretimeouts:Some watchdog timers can be set to have a trigger go off before theactual time they will reset the system.  This can be done with an NMI,interrupt, or other mechanism.  This allows Linux to record usefulinformation (like panic information and kernel coredumps) before itresets.    pretimeout = 10;    ioctl(fd, WDIOC_SETPRETIMEOUT, &pretimeout);Note that the pretimeout is the number of seconds before the timewhen the timeout will go off.  It is not the number of seconds untilthe pretimeout.  So, for instance, if you set the timeout to 60 secondsand the pretimeout to 10 seconds, the pretimout will go of in 50seconds.  Setting a pretimeout to zero disables it.There is also a get function for getting the pretimeout:    ioctl(fd, WDIOC_GETPRETIMEOUT, &timeout);    printf("The pretimeout was is %d seconds\n", timeout);Not all watchdog drivers will support a pretimeout.Get the number of seconds before reboot:Some watchdog drivers have the ability to report the remaining timebefore the system will reboot. The WDIOC_GETTIMELEFT is the ioctlthat returns the number of seconds before reboot.    ioctl(fd, WDIOC_GETTIMELEFT, &timeleft);    printf("The timeout was is %d seconds\n", timeleft);Environmental monitoring:All watchdog drivers are required return more information about the system,some do temperature, fan and power level monitoring, some can tell youthe reason for the last reboot of the system.  The GETSUPPORT ioctl isavailable to ask what the device can do:	struct watchdog_info ident;	ioctl(fd, WDIOC_GETSUPPORT, &ident);the fields returned in the ident struct are:        identity		a string identifying the watchdog driver	firmware_version	the firmware version of the card if available	options			a flags describing what the device supportsthe options field can have the following bits set, and describes whatkind of information that the GET_STATUS and GET_BOOT_STATUS ioctls canreturn.   [FIXME -- Is this correct?]	WDIOF_OVERHEAT		Reset due to CPU overheatThe machine was last rebooted by the watchdog because the thermal limit wasexceeded	WDIOF_FANFAULT		Fan failedA system fan monitored by the watchdog card has failed	WDIOF_EXTERN1		External relay 1External monitoring relay/source 1 was triggered. Controllers intended forreal world applications include external monitoring pins that will triggera reset.	WDIOF_EXTERN2		External relay 2External monitoring relay/source 2 was triggered	WDIOF_POWERUNDER	Power bad/power faultThe machine is showing an undervoltage status	WDIOF_CARDRESET		Card previously reset the CPUThe last reboot was caused by the watchdog card	WDIOF_POWEROVER		Power over voltageThe machine is showing an overvoltage status. Note that if one level isunder and one over both bits will be set - this may seem odd but makessense.	WDIOF_KEEPALIVEPING	Keep alive ping replyThe watchdog saw a keepalive ping since it was last queried.	WDIOF_SETTIMEOUT	Can set/get the timeoutThe watchdog can do pretimeouts.	WDIOF_PRETIMEOUT	Pretimeout (in seconds), get/setFor those drivers that return any bits set in the option field, theGETSTATUS and GETBOOTSTATUS ioctls can be used to ask for the currentstatus, and the status at the last reboot, respectively.      int flags;    ioctl(fd, WDIOC_GETSTATUS, &flags);    or    ioctl(fd, WDIOC_GETBOOTSTATUS, &flags);Note that not all devices support these two calls, and some onlysupport the GETBOOTSTATUS call.Some drivers can measure the temperature using the GETTEMP ioctl.  Thereturned value is the temperature in degrees fahrenheit.    int temperature;    ioctl(fd, WDIOC_GETTEMP, &temperature);Finally the SETOPTIONS ioctl can be used to control some aspects ofthe cards operation; right now the pcwd driver is the only onesupporting this ioctl.    int options = 0;    ioctl(fd, WDIOC_SETOPTIONS, options);The following options are available:	WDIOS_DISABLECARD	Turn off the watchdog timer	WDIOS_ENABLECARD	Turn on the watchdog timer	WDIOS_TEMPPANIC		Kernel panic on temperature trip[FIXME -- better explanations]

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -