summaryrefslogtreecommitdiffstats
path: root/common/recipes-core/healthd
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-core/healthd')
-rw-r--r--common/recipes-core/healthd/files/Makefile26
-rw-r--r--common/recipes-core/healthd/files/healthd.c77
-rw-r--r--common/recipes-core/healthd/files/setup-healthd.sh34
-rw-r--r--common/recipes-core/healthd/healthd_0.1.bb42
4 files changed, 179 insertions, 0 deletions
diff --git a/common/recipes-core/healthd/files/Makefile b/common/recipes-core/healthd/files/Makefile
new file mode 100644
index 0000000..13c0f66
--- /dev/null
+++ b/common/recipes-core/healthd/files/Makefile
@@ -0,0 +1,26 @@
+# Copyright 2015-present Facebook. All Rights Reserved.
+#
+# This program file 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; version 2 of the License.
+#
+# 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.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program in a file named COPYING; if not, write to the
+# Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301 USA
+
+all: healthd
+
+healthd: healthd.c
+ $(CC) $(CFLAGS) -pthread -lm -std=c99 -o $@ $^ $(LDFLAGS)
+
+.PHONY: clean
+
+clean:
+ rm -rf *.o healthd
diff --git a/common/recipes-core/healthd/files/healthd.c b/common/recipes-core/healthd/files/healthd.c
new file mode 100644
index 0000000..f02a363
--- /dev/null
+++ b/common/recipes-core/healthd/files/healthd.c
@@ -0,0 +1,77 @@
+/*
+ * healthd
+ *
+ * Copyright 2015-present Facebook. All Rights Reserved.
+ *
+ * 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.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <syslog.h>
+#include <errno.h>
+#include <unistd.h>
+#include <stdint.h>
+#include <string.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <sys/file.h>
+#include <openbmc/pal.h>
+
+static void
+initilize_all_kv() {
+ pal_set_def_key_value();
+}
+
+static void
+check_all_daemon_health() {
+ while(1) {
+
+ /*
+ * TODO: Check if all the daemons are running fine
+ * TODO: Move the HB led control to this daemon
+ * TODO: Move the watchdog timer to this daemon
+ */
+ sleep(10);
+ }
+}
+
+int
+main(int argc, void **argv) {
+ int dev, rc, pid_file;
+
+ if (argc > 1) {
+ exit(1);
+ }
+
+ pid_file = open("/var/run/healthd.pid", O_CREAT | O_RDWR, 0666);
+ rc = flock(pid_file, LOCK_EX | LOCK_NB);
+ if(rc) {
+ if(EWOULDBLOCK == errno) {
+ printf("Another healthd instance is running...\n");
+ exit(-1);
+ }
+ } else {
+
+ daemon(0,1);
+ openlog("healthd", LOG_CONS, LOG_DAEMON);
+ syslog(LOG_INFO, "healthd: daemon started");
+ }
+
+ initilize_all_kv();
+ check_all_daemon_health();
+ return 0;
+}
+
diff --git a/common/recipes-core/healthd/files/setup-healthd.sh b/common/recipes-core/healthd/files/setup-healthd.sh
new file mode 100644
index 0000000..b64be65
--- /dev/null
+++ b/common/recipes-core/healthd/files/setup-healthd.sh
@@ -0,0 +1,34 @@
+#!/bin/sh
+#
+# Copyright 2015-present Facebook. All Rights Reserved.
+#
+# This program file 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; version 2 of the License.
+#
+# 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.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program in a file named COPYING; if not, write to the
+# Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301 USA
+#
+
+### BEGIN INIT INFO
+# Provides: setup-healthd
+# Required-Start:
+# Required-Stop:
+# Default-Start: S
+# Default-Stop:
+# Short-Description: Setup sensor monitoring
+### END INIT INFO
+
+echo -n "Setup healthd for BMC "
+
+/usr/local/bin/healthd
+
+echo "done."
diff --git a/common/recipes-core/healthd/healthd_0.1.bb b/common/recipes-core/healthd/healthd_0.1.bb
new file mode 100644
index 0000000..0c4b2e9
--- /dev/null
+++ b/common/recipes-core/healthd/healthd_0.1.bb
@@ -0,0 +1,42 @@
+# Copyright 2015-present Facebook. All Rights Reserved.
+SUMMARY = "Health Monitoring Daemon"
+DESCRIPTION = "Daemon for BMC Health monitoring"
+SECTION = "base"
+PR = "r1"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://healthd.c;beginline=4;endline=16;md5=b395943ba8a0717a83e62ca123a8d238"
+
+SRC_URI = "file://Makefile \
+ file://healthd.c \
+ file://setup-healthd.sh \
+ "
+S = "${WORKDIR}"
+
+LDFLAGS =+ " -lpal "
+
+DEPENDS =+ " libpal "
+
+binfiles = "healthd"
+
+pkgdir = "healthd"
+
+do_install() {
+ dst="${D}/usr/local/fbpackages/${pkgdir}"
+ bin="${D}/usr/local/bin"
+ install -d $dst
+ install -d $bin
+ install -m 755 healthd ${dst}/healthd
+ ln -snf ../fbpackages/${pkgdir}/healthd ${bin}/healthd
+
+ install -d ${D}${sysconfdir}/init.d
+ install -d ${D}${sysconfdir}/rcS.d
+ install -m 755 setup-healthd.sh ${D}${sysconfdir}/init.d/setup-healthd.sh
+ update-rc.d -r ${D} setup-healthd.sh start 91 5 .
+}
+
+FBPACKAGEDIR = "${prefix}/local/fbpackages"
+
+FILES_${PN} = "${FBPACKAGEDIR}/healthd ${prefix}/local/bin ${sysconfdir} "
+
+INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
+INHIBIT_PACKAGE_STRIP = "1"
OpenPOWER on IntegriCloud