From: John Crispin Date: Fri, 8 Mar 2013 22:47:41 +0000 (+0100) Subject: add watchdog support X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=9bd712e309421f75363f4a356f4c1ab2c93f8f87 add watchdog support --- diff --git a/watchdog.c b/watchdog.c new file mode 100644 index 0000000..98961d3 --- /dev/null +++ b/watchdog.c @@ -0,0 +1,103 @@ +/* + * Copyright (C) 2013 Felix Fietkau + * Copyright (C) 2013 John Crispin + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 2.1 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include + +#include +#include +#include +#include + +#include + +#include + +#include "procd.h" +#include "watchdog.h" + +#define WDT_PATH "/dev/watchdog" + +static struct uloop_timeout wdt_timeout; +static int wdt_fd = -1; +static int wdt_frequency = 5; + +static void watchdog_timeout_cb(struct uloop_timeout *t) +{ + DEBUG(2, "Ping\n"); + if (write(wdt_fd, "X", 1) < 0) + perror("WDT failed to write\n"); + uloop_timeout_set(t, wdt_frequency * 1000); +} + +int watchdog_timeout(int timeout) +{ + if (wdt_fd < 0) + return 0; + + if (timeout) { + DEBUG(2, "Set watchdog timeout: %ds\n", timeout); + ioctl(wdt_fd, WDIOC_SETTIMEOUT, &timeout); + } + ioctl(wdt_fd, WDIOC_GETTIMEOUT, &timeout); + + return timeout; +} + +int watchdog_frequency(int frequency) +{ + if (wdt_fd < 0) + return 0; + + if (frequency) { + DEBUG(2, "Set watchdog frequency: %ds\n", frequency); + wdt_frequency = frequency; + } + + return wdt_frequency; +} + +char* watchdog_fd(void) +{ + static char fd_buf[3]; + + if (wdt_fd < 0) + return NULL; + snprintf(fd_buf, sizeof(fd_buf), "%d", wdt_fd); + + return fd_buf; +} + +void watchdog_init(void) +{ + char *env = getenv("WDTFD"); + + wdt_timeout.cb = watchdog_timeout_cb; + if (env) { + LOG("- watchdog -\n"); + DEBUG(1, "Watchdog handover: fd=%s\n", env); + wdt_fd = atoi(env); + fcntl(wdt_fd, F_SETFD, fcntl(wdt_fd, F_GETFD) | FD_CLOEXEC); + unsetenv("WDTFD"); + } else { + wdt_fd = open("/dev/watchdog", O_WRONLY); + if (getpid() != 1) + fcntl(wdt_fd, F_SETFD, fcntl(wdt_fd, F_GETFD) | FD_CLOEXEC); + } + if (wdt_fd < 0) + return; + watchdog_timeout(30); + watchdog_timeout_cb(&wdt_timeout); + + DEBUG(2, "Opened watchdog with timeout %ds\n", watchdog_timeout(0)); +} diff --git a/watchdog.h b/watchdog.h new file mode 100644 index 0000000..92702fd --- /dev/null +++ b/watchdog.h @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2013 Felix Fietkau + * Copyright (C) 2013 John Crispin + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 2.1 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef __PROCD_WATCHDOG_H +#define __PROCD_WATCHDOG_H + +void watchdog_init(void); +char* watchdog_fd(void); +int watchdog_timeout(int timeout); +int watchdog_frequency(int frequency); + +#endif