All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v9 0/3] ndctl, monitor: add ndctl monitor daemon
@ 2018-06-29  2:30 QI Fuli
  2018-06-29  2:30 ` [PATCH v9 1/3] ndctl, monitor: add ndctl monitor QI Fuli
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: QI Fuli @ 2018-06-29  2:30 UTC (permalink / raw)
  To: linux-nvdimm

This is the v9 patch for ndctl monitor, a tiny daemon to monitor
the smart events of nvdimm DIMMs. Since NVDIMM does not have a
feature like mirroring, if it breaks down, the data will be
impossible to restore. Ndctl monitor daemon will catch the smart
events notify from firmware and outputs notification to logfile,
therefore users can replace NVDIMM before it is completely broken.

Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
---
Change log since v8:
 - Adding ndctl_cmd_smart_get_event_flags() api
 - Adding monitor_filter_arg to the union in util_filter_ctx
 - Removing is_dir()
 - Replacing malloc + vsprintf with vasprintf() in log_file() and log_syslog()
 - Adding parse_monitor_event()
 - Refactoring util_dimm_event_filter()
 - Adding event_flags to monitor
 - Refactoring dimm_event_to_json()
 - Adding check_dimm_supported_threshold_alarms()
 - Fixing fail token

Change log since v7:
 - Replacing logreport() with log_file() and log_syslog()
 - Refactoring read_config_file()
 - Replacing set_confile() with parse_config()
 - Fixing the ndctl/ndct.conf file

Change log since v6:
 - Changing License to GPL-2.0
 - Adding event object to output notification
 - Adding [--dimm-event] option to filter notification by event type
 - Rewriting read_config_file()
 - Replacing monitor_dimm_event() with monitor_event()
 - Renaming some variables

Change log since v5:
 - Fixing systemd unit file cannot be installed bug
 - Adding license to ./util/abspath.c

Change log since v4:
 - Adding OPTION_FILENAME to make sure filename is correct
 - Adding configuration file
 - Adding [--config-file] option to override the default configuration
 - Making some options support multiple space-seperated arguments
 - Making systemctl enable ndctl-monitor.service command work
 - Making systemctl restart ndctl-monitor.service command work
 - Making the directory of systemd unit file to be configurable
 - Changing log_file() and log_syslog() to logreport()
 - Changing date format in notification to nanoseconds since epoch
 - Changing select() to epoll()
 - Adding filter_bus() and filter_region()

Change log since v3:
 - Removing create-monitor, show-monitor, list-monitor, destroy-monitor
 - Adding [--daemon] option to run ndctl monitor as a daemon 
 - Using systemd to manage ndctl monitor daemon
 - Replacing filter_monitor_dimm() with filter_dimm()

Change log since v2:
 - Changing the interface of daemon to the ndctl command line
 - Changing the name of daemon form "nvdimmd" to "monitor"
 - Removing the config file, unit_file, nvdimmd dir
 - Removing nvdimmd_test program
 - Adding ndctl/monitor.c

Change log since v1:
 - Adding a config file(/etc/nvdimmd/nvdimmd.conf)
 - Using struct log_ctx instead of syslog()
    - Using log_syslog() to save the notify messages to syslog
    - Using log_file() to save the notify messages to special file
 - Adding LOG_NOTICE level to log_priority
 - Using automake instead of Makefile
 - Adding a new util file(nvdimmd/util.c) including helper functions
   needed for nvdimm daemon
 - Adding nvdimmd_test program

QI Fuli (3):
  ndctl, monitor: add ndctl monitor
  ndctl, monitor: add main ndctl monitor configuration file
  ndctl, monitor: add the unit file of systemd for ndctl-monitor service

 autogen.sh                  |   3 +-
 builtin.h                   |   1 +
 configure.ac                |  22 ++
 ndctl/Makefile.am           |  12 +-
 ndctl/lib/libndctl.sym      |   1 +
 ndctl/lib/smart.c           |  17 +
 ndctl/libndctl.h            |   6 +
 ndctl/monitor.c             | 646 ++++++++++++++++++++++++++++++++++++
 ndctl/monitor.conf          |  41 +++
 ndctl/ndctl-monitor.service |   7 +
 ndctl/ndctl.c               |   1 +
 util/filter.h               |   9 +
 12 files changed, 764 insertions(+), 2 deletions(-)
 create mode 100644 ndctl/monitor.c
 create mode 100644 ndctl/monitor.conf
 create mode 100644 ndctl/ndctl-monitor.service

-- 
2.18.0


_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-06-29  2:30 [PATCH v9 0/3] ndctl, monitor: add ndctl monitor daemon QI Fuli
@ 2018-06-29  2:30 ` QI Fuli
  2018-07-07 20:05   ` Dan Williams
  2018-06-29  2:30 ` [PATCH v9 2/3] ndctl, monitor: add main ndctl monitor configuration file QI Fuli
  2018-06-29  2:30 ` [PATCH v9 3/3] ndctl, monitor: add the unit file of systemd for ndctl-monitor service QI Fuli
  2 siblings, 1 reply; 10+ messages in thread
From: QI Fuli @ 2018-06-29  2:30 UTC (permalink / raw)
  To: linux-nvdimm

Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
When a smart event fires, monitor will output the notifications which
include dimm health status and evnet informations to syslog or a
logfile by setting [--logfile] option. The notifications follow json
format and can be consumed by log collectors like Fluentd.

The objects to monitor can be selected by setting [--dimm] [--region]
[--namespace] [--bus] options and the event type can be filtered by
setting [--dimm-event] option. These options support multiple
space-separated arguments.

Ndctl monitor can be forked as a daemon by using [--daemon] option,
such as:
   # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log

Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
---
 builtin.h              |   1 +
 ndctl/Makefile.am      |   3 +-
 ndctl/lib/libndctl.sym |   1 +
 ndctl/lib/smart.c      |  17 ++
 ndctl/libndctl.h       |   6 +
 ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
 ndctl/ndctl.c          |   1 +
 util/filter.h          |   9 +
 8 files changed, 568 insertions(+), 1 deletion(-)
 create mode 100644 ndctl/monitor.c

diff --git a/builtin.h b/builtin.h
index d3cc723..675a6ce 100644
--- a/builtin.h
+++ b/builtin.h
@@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char **argv, void *ctx);
 int cmd_wait_scrub(int argc, const char **argv, void *ctx);
 int cmd_start_scrub(int argc, const char **argv, void *ctx);
 int cmd_list(int argc, const char **argv, void *ctx);
+int cmd_monitor(int argc, const char **argv, void *ctx);
 #ifdef ENABLE_TEST
 int cmd_test(int argc, const char **argv, void *ctx);
 #endif
diff --git a/ndctl/Makefile.am b/ndctl/Makefile.am
index d22a379..7dbf223 100644
--- a/ndctl/Makefile.am
+++ b/ndctl/Makefile.am
@@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
 		util/json-smart.c \
 		util/json-firmware.c \
 		inject-error.c \
-		inject-smart.c
+		inject-smart.c \
+		monitor.c
 
 if ENABLE_DESTRUCTIVE
 ndctl_SOURCES += ../test/blk_namespaces.c \
diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym
index e939993..f64df56 100644
--- a/ndctl/lib/libndctl.sym
+++ b/ndctl/lib/libndctl.sym
@@ -366,4 +366,5 @@ global:
 	ndctl_namespace_inject_error2;
 	ndctl_namespace_uninject_error2;
 	ndctl_cmd_ars_stat_get_flag_overflow;
+	ndctl_cmd_smart_get_event_flags;
 } LIBNDCTL_15;
diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c
index 0455252..90a65d0 100644
--- a/ndctl/lib/smart.c
+++ b/ndctl/lib/smart.c
@@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int ndctl_cmd_smart_threshold_get_temperature(
 
 smart_cmd_op(smart_threshold_get_supported_alarms, unsigned int, 0);
 
+NDCTL_EXPORT unsigned int ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd)
+{
+	unsigned int alarm_flags, event_flags = 0;
+
+	alarm_flags = ndctl_cmd_smart_get_alarm_flags(cmd);
+	if (alarm_flags & ND_SMART_SPARE_TRIP)
+		event_flags |= ND_EVENT_SPARES_REMAINING;
+	if (alarm_flags & ND_SMART_MTEMP_TRIP)
+		event_flags |= ND_EVENT_MEDIA_TEMPERATURE;
+	if (alarm_flags & ND_SMART_CTEMP_TRIP)
+		event_flags |= ND_EVENT_CTRL_TEMPERATURE;
+	if (ndctl_cmd_smart_get_shutdown_state(cmd))
+		event_flags |= ND_EVENT_UNCLEAN_SHUTDOWN;
+
+	return event_flags;
+}
+
 #define smart_cmd_set_op(op) \
 NDCTL_EXPORT int ndctl_cmd_##op(struct ndctl_cmd *cmd, unsigned int val) \
 { \
diff --git a/ndctl/libndctl.h b/ndctl/libndctl.h
index 9270bae..50f057a 100644
--- a/ndctl/libndctl.h
+++ b/ndctl/libndctl.h
@@ -240,6 +240,11 @@ int ndctl_cmd_ars_stat_get_flag_overflow(struct ndctl_cmd *ars_stat);
 #define ND_SMART_NON_CRITICAL_HEALTH	(1 << 0)
 #define ND_SMART_CRITICAL_HEALTH	(1 << 1)
 #define ND_SMART_FATAL_HEALTH		(1 << 2)
+#define ND_EVENT_SPARES_REMAINING	(1 << 0)
+#define ND_EVENT_MEDIA_TEMPERATURE	(1 << 1)
+#define ND_EVENT_CTRL_TEMPERATURE	(1 << 2)
+#define ND_EVENT_HEALTH_STATE	(1 << 3)
+#define ND_EVENT_UNCLEAN_SHUTDOWN	(1 << 4)
 
 struct ndctl_cmd *ndctl_dimm_cmd_new_smart(struct ndctl_dimm *dimm);
 unsigned int ndctl_cmd_smart_get_flags(struct ndctl_cmd *cmd);
@@ -253,6 +258,7 @@ unsigned int ndctl_cmd_smart_get_life_used(struct ndctl_cmd *cmd);
 unsigned int ndctl_cmd_smart_get_shutdown_state(struct ndctl_cmd *cmd);
 unsigned int ndctl_cmd_smart_get_shutdown_count(struct ndctl_cmd *cmd);
 unsigned int ndctl_cmd_smart_get_vendor_size(struct ndctl_cmd *cmd);
+unsigned int ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd);
 unsigned char *ndctl_cmd_smart_get_vendor_data(struct ndctl_cmd *cmd);
 struct ndctl_cmd *ndctl_dimm_cmd_new_smart_threshold(struct ndctl_dimm *dimm);
 unsigned int ndctl_cmd_smart_threshold_get_alarm_control(struct ndctl_cmd *cmd);
diff --git a/ndctl/monitor.c b/ndctl/monitor.c
new file mode 100644
index 0000000..c7b9f6a
--- /dev/null
+++ b/ndctl/monitor.c
@@ -0,0 +1,531 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/* Copyright(c) 2018, FUJITSU LIMITED. All rights reserved. */
+
+#include <stdio.h>
+#include <json-c/json.h>
+#include <libgen.h>
+#include <dirent.h>
+#include <util/log.h>
+#include <util/json.h>
+#include <util/filter.h>
+#include <util/util.h>
+#include <util/parse-options.h>
+#include <util/strbuf.h>
+#include <ndctl/lib/private.h>
+#include <ndctl/libndctl.h>
+#include <sys/epoll.h>
+#define BUF_SIZE 2048
+
+
+static struct monitor {
+	const char *logfile;
+	const char *dimm_event;
+	bool daemon;
+	unsigned int event_flags;
+} monitor;
+
+struct monitor_dimm {
+	struct ndctl_dimm *dimm;
+	int health_eventfd;
+	unsigned int health;
+	unsigned int event_flags;
+	struct list_node list;
+};
+
+struct util_filter_params param;
+
+static int did_fail;
+
+#define fail(fmt, ...) \
+do { \
+	did_fail = 1; \
+	dbg(ctx, "ndctl-%s:%s:%d: " fmt, \
+			VERSION, __func__, __LINE__, ##__VA_ARGS__); \
+} while (0)
+
+static void log_syslog(struct ndctl_ctx *ctx, int priority, const char *file,
+		int line, const char *fn, const char *format, va_list args)
+{
+	char *buf;
+
+	if (vasprintf(&buf, format, args) < 0) {
+		fail("vasprintf error\n");
+		return;
+	}
+	syslog(priority, "%s\n", buf);
+
+	free(buf);
+	return;
+}
+
+static void log_file(struct ndctl_ctx *ctx, int priority, const char *file,
+		int line, const char *fn, const char *format, va_list args)
+{
+	FILE *f;
+	char *buf;
+
+	if (vasprintf(&buf, format, args) < 0) {
+		fail("vasprintf error\n");
+		return;
+	}
+
+	f = fopen(monitor.logfile, "a+");
+	if (!f) {
+		ndctl_set_log_fn(ctx, log_syslog);
+		fail("open logfile %s failed\n%s", monitor.logfile, buf);
+		goto end;
+	}
+	fprintf(f, "%s\n", buf);
+	fclose(f);
+end:
+	free(buf);
+	return;
+}
+
+static struct json_object *dimm_event_to_json(struct monitor_dimm *mdimm)
+{
+	struct json_object *jevent, *jobj;
+	bool spares_flag, media_temp_flag, ctrl_temp_flag,
+			health_state_flag, unclean_shutdown_flag;
+	struct ndctl_ctx *ctx = ndctl_dimm_get_ctx(mdimm->dimm);
+
+	jevent = json_object_new_object();
+	if (!jevent) {
+		fail("\n");
+		return NULL;
+	}
+
+	if (monitor.event_flags & ND_EVENT_SPARES_REMAINING) {
+		spares_flag = !!(mdimm->event_flags
+				& ND_EVENT_SPARES_REMAINING);
+		jobj = json_object_new_boolean(spares_flag);
+		if (jobj)
+			json_object_object_add(jevent,
+				"dimm-spares-remaining", jobj);
+	}
+
+	if (monitor.event_flags & ND_EVENT_MEDIA_TEMPERATURE) {
+		media_temp_flag = !!(mdimm->event_flags
+				& ND_EVENT_MEDIA_TEMPERATURE);
+		jobj = json_object_new_boolean(media_temp_flag);
+		if (jobj)
+			json_object_object_add(jevent,
+				"dimm-media-temperature", jobj);
+	}
+
+	if (monitor.event_flags & ND_EVENT_CTRL_TEMPERATURE) {
+		ctrl_temp_flag = !!(mdimm->event_flags
+				& ND_EVENT_CTRL_TEMPERATURE);
+		jobj = json_object_new_boolean(ctrl_temp_flag);
+		if (jobj)
+			json_object_object_add(jevent,
+				"dimm-controller-temperature", jobj);
+	}
+
+	if (monitor.event_flags & ND_EVENT_HEALTH_STATE) {
+		health_state_flag = !!(mdimm->event_flags
+				& ND_EVENT_HEALTH_STATE);
+		jobj = json_object_new_boolean(health_state_flag);
+		if (jobj)
+			json_object_object_add(jevent,
+				"dimm-health-state", jobj);
+	}
+
+	if (monitor.event_flags & ND_EVENT_UNCLEAN_SHUTDOWN) {
+		unclean_shutdown_flag = !!(mdimm->event_flags
+				& ND_EVENT_UNCLEAN_SHUTDOWN);
+		jobj = json_object_new_boolean(unclean_shutdown_flag);
+		if (jobj)
+			json_object_object_add(jevent,
+				"dimm-unclean-shutdown", jobj);
+	}
+
+	return jevent;
+}
+
+static int notify_dimm_event(struct monitor_dimm *mdimm)
+{
+	struct json_object *jmsg, *jdimm, *jobj;
+	struct timespec ts;
+	char timestamp[32];
+	struct ndctl_ctx *ctx = ndctl_dimm_get_ctx(mdimm->dimm);
+
+	jmsg = json_object_new_object();
+	if (!jmsg) {
+		fail("\n");
+		return -1;
+	}
+
+	clock_gettime(CLOCK_REALTIME, &ts);
+	sprintf(timestamp, "%10ld.%09ld", ts.tv_sec, ts.tv_nsec);
+	jobj = json_object_new_string(timestamp);
+	if (!jobj) {
+		fail("\n");
+		return -1;
+	}
+	json_object_object_add(jmsg, "timestamp", jobj);
+
+	jobj = json_object_new_int(getpid());
+	if (!jobj) {
+		fail("\n");
+		return -1;
+	}
+	json_object_object_add(jmsg, "pid", jobj);
+
+	jobj = dimm_event_to_json(mdimm);
+	if (!jobj) {
+		fail("\n");
+		return -1;
+	}
+	json_object_object_add(jmsg, "event", jobj);
+
+	jdimm = util_dimm_to_json(mdimm->dimm, 0);
+	if (!jdimm) {
+		fail("\n");
+		return -1;
+	}
+	json_object_object_add(jmsg, "dimm", jdimm);
+
+	jobj = util_dimm_health_to_json(mdimm->dimm);
+	if (!jobj) {
+		fail("\n");
+		return -1;
+	}
+	json_object_object_add(jdimm, "health", jobj);
+
+	notice(ctx, "%s",
+		json_object_to_json_string_ext(jmsg, JSON_C_TO_STRING_PLAIN));
+
+	free(jobj);
+	free(jdimm);
+	free(jmsg);
+	return 0;
+}
+
+static struct monitor_dimm *util_dimm_event_filter(struct monitor_dimm *mdimm,
+		unsigned int event_flags)
+{
+	struct ndctl_cmd *cmd = NULL;
+	const char *name = ndctl_dimm_get_devname(mdimm->dimm);
+	struct ndctl_ctx *ctx = ndctl_dimm_get_ctx(mdimm->dimm);
+
+	cmd = ndctl_dimm_cmd_new_smart(mdimm->dimm);
+	if (!cmd) {
+		err(ctx, "%s: no smart command support\n", name);
+		goto out;
+	}
+	if (ndctl_cmd_submit(cmd)) {
+		err(ctx, "%s: smart command failed\n", name);
+		goto out;
+	}
+	mdimm->event_flags = ndctl_cmd_smart_get_event_flags(cmd);
+	if (mdimm->health != ndctl_cmd_smart_get_health(cmd))
+		mdimm->event_flags |= ND_EVENT_HEALTH_STATE;
+
+	if (mdimm->event_flags & event_flags) {
+		ndctl_cmd_unref(cmd);
+		return mdimm;
+	}
+out:
+	ndctl_cmd_unref(cmd);
+	return NULL;
+}
+
+static int check_dimm_supported_threshold_alarms(struct ndctl_dimm *dimm)
+{
+	unsigned int alarm;
+	int rc = -EOPNOTSUPP;
+	struct ndctl_cmd *st_cmd = NULL, *sst_cmd = NULL;
+	const char *name = ndctl_dimm_get_devname(dimm);
+	struct ndctl_ctx *ctx = ndctl_dimm_get_ctx(dimm);
+
+	st_cmd = ndctl_dimm_cmd_new_smart_threshold(dimm);
+	if (!st_cmd) {
+		err(ctx, "%s: no smart threshold command support\n", name);
+		goto out;
+	}
+	if (ndctl_cmd_submit(st_cmd)) {
+		err(ctx, "%s: smart threshold command failed\n", name);
+		goto out;
+	}
+
+	sst_cmd = ndctl_dimm_cmd_new_smart_set_threshold(st_cmd);
+	if (!sst_cmd) {
+		err(ctx, "%s: no smart set threshold command support\n", name);
+		goto out;
+	}
+
+	alarm = ndctl_cmd_smart_threshold_get_alarm_control(st_cmd);
+	if (monitor.event_flags & ND_EVENT_SPARES_REMAINING)
+		alarm |= ND_SMART_SPARE_TRIP;
+	if (monitor.event_flags & ND_EVENT_MEDIA_TEMPERATURE)
+		alarm |= ND_SMART_TEMP_TRIP;
+	if (monitor.event_flags & ND_EVENT_CTRL_TEMPERATURE)
+		alarm |= ND_SMART_CTEMP_TRIP;
+	ndctl_cmd_smart_threshold_set_alarm_control(sst_cmd, alarm);
+
+	rc = ndctl_cmd_submit(sst_cmd);
+	if (rc) {
+		err(ctx, "%s: smart set threshold command failed\n", name);
+		goto out;
+	}
+
+out:
+	ndctl_cmd_unref(sst_cmd);
+	ndctl_cmd_unref(st_cmd);
+	return rc;
+}
+
+static bool filter_region(struct ndctl_region *region,
+		struct util_filter_ctx *fctx)
+{
+	return true;
+}
+
+static void filter_dimm(struct ndctl_dimm *dimm, struct util_filter_ctx *fctx)
+{
+	struct ndctl_cmd *cmd = NULL;
+	struct monitor_dimm *mdimm;
+	struct monitor_filter_arg *mfa = fctx->monitor;
+	struct ndctl_ctx *ctx = ndctl_dimm_get_ctx(dimm);
+	const char *name = ndctl_dimm_get_devname(dimm);
+
+	if (!ndctl_dimm_is_cmd_supported(dimm, ND_CMD_SMART)) {
+		err(ctx, "%s: no smart support\n", name);
+		return;
+	}
+	if (!ndctl_dimm_is_cmd_supported(dimm, ND_CMD_SMART_THRESHOLD)) {
+		err(ctx, "%s: no smart threshold support\n", name);
+		return;
+	}
+
+	mdimm = calloc(1, sizeof(struct monitor_dimm));
+	if (!mdimm) {
+		err(ctx, "%s: calloc for monitor dimm failed\n", name);
+		return;
+	}
+
+	cmd = ndctl_dimm_cmd_new_smart(dimm);
+	if (!cmd) {
+		err(ctx, "%s: no smart command support\n", name);
+		goto out;
+	}
+	if (ndctl_cmd_submit(cmd)) {
+		err(ctx, "%s: smart command failed\n", name);
+		goto out;
+	}
+	if (!(ndctl_cmd_smart_get_flags(cmd) & ND_SMART_ALARM_VALID)) {
+		err(ctx, "%s: smart alarm invalid\n", name);
+		goto out;
+	}
+
+	if (check_dimm_supported_threshold_alarms(dimm)) {
+		err(ctx, "%s: check supported threshold alarms failed\n", name);
+		goto out;
+	}
+
+	mdimm->dimm = dimm;
+	mdimm->health_eventfd = ndctl_dimm_get_health_eventfd(dimm);
+	mdimm->health = ndctl_cmd_smart_get_health(cmd);
+	mdimm->event_flags = ndctl_cmd_smart_get_event_flags(cmd);
+
+	if (mdimm->event_flags
+			&& util_dimm_event_filter(mdimm, monitor.event_flags)) {
+		if (notify_dimm_event(mdimm)) {
+			err(ctx, "%s: notify dimm event failed\n", name);
+			goto out;
+		}
+	}
+
+	list_add_tail(&mfa->dimms, &mdimm->list);
+	if (mdimm->health_eventfd > mfa->maxfd_dimm)
+		mfa->maxfd_dimm = mdimm->health_eventfd;
+	mfa->num_dimm++;
+	ndctl_cmd_unref(cmd);
+	return;
+out:
+	ndctl_cmd_unref(cmd);
+	free(mdimm);
+	return;
+}
+
+static bool filter_bus(struct ndctl_bus *bus, struct util_filter_ctx *fctx)
+{
+	return true;
+}
+
+static int monitor_event(struct ndctl_ctx *ctx,
+		struct monitor_filter_arg *mfa)
+{
+	struct epoll_event ev, *events;
+	int nfds, epollfd, i, rc;
+	struct monitor_dimm *mdimm;
+	char buf;
+
+	events = calloc(mfa->num_dimm, sizeof(struct epoll_event));
+	if (!events) {
+		err(ctx, "malloc for events error\n");
+		return 1;
+	}
+	epollfd = epoll_create1(0);
+	if (epollfd == -1) {
+		err(ctx, "epoll_create1 error\n");
+		return 1;
+	}
+	list_for_each(&mfa->dimms, mdimm, list) {
+		memset(&ev, 0, sizeof(ev));
+		rc = pread(mdimm->health_eventfd, &buf, sizeof(buf), 0);
+		if (rc < 0) {
+			err(ctx, "pread error\n");
+			return 1;
+		}
+		ev.data.ptr = mdimm;
+		if (epoll_ctl(epollfd, EPOLL_CTL_ADD,
+				mdimm->health_eventfd, &ev) != 0) {
+			err(ctx, "epoll_ctl error\n");
+			return 1;
+		}
+	}
+
+	while (1) {
+		did_fail = 0;
+		nfds = epoll_wait(epollfd, events, mfa->num_dimm, -1);
+		if (nfds <= 0) {
+			err(ctx, "epoll_wait error\n");
+			return 1;
+		}
+		for (i = 0; i < nfds; i++) {
+			mdimm = events[i].data.ptr;
+			if (util_dimm_event_filter(mdimm, monitor.event_flags)) {
+				if (notify_dimm_event(mdimm))
+					fail("%s: notify dimm event failed\n",
+						ndctl_dimm_get_devname(mdimm->dimm));
+			}
+			rc = pread(mdimm->health_eventfd, &buf, sizeof(buf), 0);
+			if (rc < 0)
+				fail("pread error\n");
+		}
+		if (did_fail)
+			return 1;
+	}
+	return 0;
+}
+
+static int parse_monitor_event(struct monitor *_monitor)
+{
+	char *dimm_event, *save;
+	const char *event;
+
+	if (!_monitor->dimm_event)
+		goto dimm_event_all;
+	dimm_event = strdup(_monitor->dimm_event);
+	if (!dimm_event)
+		return 1;
+
+	for (event = strtok_r(dimm_event, " ", &save); event;
+			event = strtok_r(NULL, " ", &save)) {
+		if (strcmp(event, "all") == 0) {
+			free(dimm_event);
+			goto dimm_event_all;
+		}
+		if (strcmp(event, "dimm-spares-remaining") == 0)
+			_monitor->event_flags |= ND_EVENT_SPARES_REMAINING;
+		if (strcmp(event, "dimm-media-temperature") == 0)
+			_monitor->event_flags |= ND_EVENT_MEDIA_TEMPERATURE;
+		if (strcmp(event, "dimm-controller-temperature") == 0)
+			_monitor->event_flags |= ND_EVENT_CTRL_TEMPERATURE;
+		if (strcmp(event, "dimm-health-state") == 0)
+			_monitor->event_flags |= ND_EVENT_HEALTH_STATE;
+		if (strcmp(event, "dimm-unclean-shutdown") == 0)
+			_monitor->event_flags |= ND_EVENT_UNCLEAN_SHUTDOWN;
+	}
+
+	free(dimm_event);
+	return 0;
+
+dimm_event_all:
+	_monitor->event_flags = ND_EVENT_SPARES_REMAINING
+			| ND_EVENT_MEDIA_TEMPERATURE
+			| ND_EVENT_CTRL_TEMPERATURE
+			| ND_EVENT_HEALTH_STATE
+			| ND_EVENT_UNCLEAN_SHUTDOWN;
+	return 0;
+}
+
+int cmd_monitor(int argc, const char **argv, void *ctx)
+{
+	const struct option options[] = {
+		OPT_STRING('b', "bus", &param.bus, "bus-id", "filter by bus"),
+		OPT_STRING('r', "region", &param.region, "region-id",
+				"filter by region"),
+		OPT_STRING('d', "dimm", &param.dimm, "dimm-id",
+				"filter by dimm"),
+		OPT_STRING('n', "namespace", &param.namespace,
+				"namespace-id", "filter by namespace id"),
+		OPT_FILENAME('l', "logfile", &monitor.logfile, "file | syslog",
+				"where to output the monitor's notification"),
+		OPT_BOOLEAN('f', "daemon", &monitor.daemon,
+				"run ndctl monitor as a daemon"),
+		OPT_STRING('D', "dimm-event", &monitor.dimm_event,
+			"dimm-spares-remaining | dimm-media-temperature | dimm-controller-temperature | dimm-health-state | dimm-unclean-shutdown",
+			"filter by DIMM event type"),
+		OPT_END(),
+	};
+	const char * const u[] = {
+		"ndctl monitor [<options>]",
+		NULL
+	};
+	const char *prefix = "./";
+	struct util_filter_ctx fctx = { 0 };
+	struct monitor_filter_arg mfa = { 0 };
+	int i;
+
+	argc = parse_options_prefix(argc, argv, prefix, options, u, 0);
+	for (i = 0; i < argc; i++) {
+		error("unknown parameter \"%s\"\n", argv[i]);
+	}
+	if (argc)
+		usage_with_options(u, options);
+
+	if (monitor.logfile && (strcmp(monitor.logfile, "./syslog") != 0))
+		ndctl_set_log_fn((struct ndctl_ctx *)ctx, log_file);
+	else
+		ndctl_set_log_fn((struct ndctl_ctx *)ctx, log_syslog);
+	ndctl_set_log_priority((struct ndctl_ctx *)ctx, LOG_NOTICE);
+
+	if (monitor.daemon) {
+		if (daemon(0, 0) != 0) {
+			err((struct ndctl_ctx *)ctx, "daemon start failed\n");
+			goto out;
+		}
+		notice((struct ndctl_ctx *)ctx, "ndctl monitor daemon started\n");
+	}
+
+	if (parse_monitor_event(&monitor))
+		goto out;
+
+	fctx.filter_bus = filter_bus;
+	fctx.filter_dimm = filter_dimm;
+	fctx.filter_region = filter_region;
+	fctx.filter_namespace = NULL;
+	fctx.arg = &mfa;
+	list_head_init(&mfa.dimms);
+	mfa.num_dimm = 0;
+	mfa.maxfd_dimm = -1;
+	mfa.flags = 0;
+
+	if (util_filter_walk(ctx, &fctx, &param))
+		goto out;
+
+	if (!mfa.num_dimm) {
+		err((struct ndctl_ctx *)ctx, "no dimms to monitor\n");
+		goto out;
+	}
+
+	if (monitor_event(ctx, &mfa))
+		goto out;
+
+	return 0;
+out:
+	return 1;
+}
diff --git a/ndctl/ndctl.c b/ndctl/ndctl.c
index 7daadeb..73dabfa 100644
--- a/ndctl/ndctl.c
+++ b/ndctl/ndctl.c
@@ -89,6 +89,7 @@ static struct cmd_struct commands[] = {
 	{ "wait-scrub", cmd_wait_scrub },
 	{ "start-scrub", cmd_start_scrub },
 	{ "list", cmd_list },
+	{ "monitor", cmd_monitor},
 	{ "help", cmd_help },
 	#ifdef ENABLE_TEST
 	{ "test", cmd_test },
diff --git a/util/filter.h b/util/filter.h
index effda24..c2cdddf 100644
--- a/util/filter.h
+++ b/util/filter.h
@@ -13,6 +13,7 @@
 #ifndef _UTIL_FILTER_H_
 #define _UTIL_FILTER_H_
 #include <stdbool.h>
+#include <ccan/list/list.h>
 
 struct ndctl_bus *util_bus_filter(struct ndctl_bus *bus, const char *ident);
 struct ndctl_region *util_region_filter(struct ndctl_region *region,
@@ -50,6 +51,13 @@ struct list_filter_arg {
 	unsigned long flags;
 };
 
+struct monitor_filter_arg {
+	struct list_head dimms;
+	int maxfd_dimm;
+	int num_dimm;
+	unsigned long flags;
+};
+
 /*
  * struct util_filter_ctx - control and callbacks for util_filter_walk()
  * ->filter_bus() and ->filter_region() return bool because the
@@ -67,6 +75,7 @@ struct util_filter_ctx {
 	union {
 		void *arg;
 		struct list_filter_arg *list;
+		struct monitor_filter_arg *monitor;
 	};
 };
 
-- 
2.18.0


_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v9 2/3] ndctl, monitor: add main ndctl monitor configuration file
  2018-06-29  2:30 [PATCH v9 0/3] ndctl, monitor: add ndctl monitor daemon QI Fuli
  2018-06-29  2:30 ` [PATCH v9 1/3] ndctl, monitor: add ndctl monitor QI Fuli
@ 2018-06-29  2:30 ` QI Fuli
  2018-06-29  2:30 ` [PATCH v9 3/3] ndctl, monitor: add the unit file of systemd for ndctl-monitor service QI Fuli
  2 siblings, 0 replies; 10+ messages in thread
From: QI Fuli @ 2018-06-29  2:30 UTC (permalink / raw)
  To: linux-nvdimm

This patch adds the main configuration file(/etc/ndctl/monitor.conf)
of ndctl monitor. It contains the configuration directives that give
ndctl monitor instructions. Users can change the configuration by
editing this file or using [--config-file] option to override this
file. The changed value will work after restart ndctl monitor service.

Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
---
 ndctl/Makefile.am  |   5 ++
 ndctl/monitor.c    | 115 +++++++++++++++++++++++++++++++++++++++++++++
 ndctl/monitor.conf |  41 ++++++++++++++++
 3 files changed, 161 insertions(+)
 create mode 100644 ndctl/monitor.conf

diff --git a/ndctl/Makefile.am b/ndctl/Makefile.am
index 7dbf223..ae3d894 100644
--- a/ndctl/Makefile.am
+++ b/ndctl/Makefile.am
@@ -42,3 +42,8 @@ ndctl_SOURCES += ../test/libndctl.c \
 		 ../test/multi-pmem.c \
 		 ../test/core.c
 endif
+
+monitor_config_file = monitor.conf
+monitor_configdir = /etc/ndctl/
+monitor_config_DATA = $(monitor_config_file)
+EXTRA_DIST += $(monitor_config_file)
diff --git a/ndctl/monitor.c b/ndctl/monitor.c
index c7b9f6a..2940cf7 100644
--- a/ndctl/monitor.c
+++ b/ndctl/monitor.c
@@ -19,6 +19,7 @@
 
 static struct monitor {
 	const char *logfile;
+	const char *config_file;
 	const char *dimm_event;
 	bool daemon;
 	unsigned int event_flags;
@@ -452,6 +453,109 @@ dimm_event_all:
 	return 0;
 }
 
+static void parse_config(const char **arg, char *key, char *val, char *ident)
+{
+	struct strbuf value = STRBUF_INIT;
+	size_t arg_len = *arg ? strlen(*arg) : 0;
+
+	if (!ident || !key || (strcmp(ident, key) != 0))
+		return;
+
+	if (arg_len) {
+		strbuf_add(&value, *arg, arg_len);
+		strbuf_addstr(&value, " ");
+	}
+	strbuf_addstr(&value, val);
+	*arg = strbuf_detach(&value, NULL);
+}
+
+static int read_config_file(struct ndctl_ctx *ctx, struct monitor *_monitor,
+		struct util_filter_params *_param)
+{
+	FILE *f;
+	int line = 0;
+	size_t len = 0;
+	char *buf, *value, *config_file;
+	const char *def_config_file = "/etc/ndctl/monitor.conf";
+
+	if (_monitor->config_file)
+		config_file = strdup(_monitor->config_file);
+	else
+		config_file = strdup(def_config_file);
+	if (!config_file) {
+		fail("strdup default config file failed\n");
+		goto out;
+	}
+
+	buf = malloc(BUF_SIZE);
+	if (!buf) {
+		fail("malloc read config-file buf error\n");
+		goto out;
+	}
+
+	f = fopen(config_file, "r");
+	if (!f) {
+		fail("config-file: %s cannot be opened\n", config_file);
+		goto out;
+	}
+
+	while (fgets(buf, BUF_SIZE, f)) {
+		value = NULL;
+		line++;
+
+		while (isspace(*buf))
+			buf++;
+
+		if (*buf == '#' || *buf == '\0')
+			continue;
+
+		value = strchr(buf, '=');
+		if (!value) {
+			fail("config-file syntax error, skip line[%i]\n", line);
+			continue;
+		}
+
+		value[0] = '\0';
+		value++;
+
+		while (isspace(value[0]))
+			value++;
+
+		len = strlen(buf);
+		if (len == 0)
+			continue;
+		while (isspace(buf[len-1]))
+			len--;
+		buf[len] = '\0';
+
+		len = strlen(value);
+		if (len == 0)
+			continue;
+		while (isspace(value[len-1]))
+			len--;
+		value[len] = '\0';
+
+		if (len == 0)
+			continue;
+
+		parse_config(&_param->bus, "bus", value, buf);
+		parse_config(&_param->dimm, "dimm", value, buf);
+		parse_config(&_param->region, "region", value, buf);
+		parse_config(&_param->namespace, "namespace", value, buf);
+		parse_config(&_monitor->dimm_event, "dimm-event", value, buf);
+
+		if (!_monitor->logfile)
+			parse_config(&_monitor->logfile, "logfile", value, buf);
+	}
+	fclose(f);
+	free(config_file);
+	return 0;
+out:
+	if (config_file)
+		free(config_file);
+	return 1;
+}
+
 int cmd_monitor(int argc, const char **argv, void *ctx)
 {
 	const struct option options[] = {
@@ -464,6 +568,8 @@ int cmd_monitor(int argc, const char **argv, void *ctx)
 				"namespace-id", "filter by namespace id"),
 		OPT_FILENAME('l', "logfile", &monitor.logfile, "file | syslog",
 				"where to output the monitor's notification"),
+		OPT_FILENAME('c', "config-file", &monitor.config_file,
+				"config-file", "override the default config"),
 		OPT_BOOLEAN('f', "daemon", &monitor.daemon,
 				"run ndctl monitor as a daemon"),
 		OPT_STRING('D', "dimm-event", &monitor.dimm_event,
@@ -493,6 +599,15 @@ int cmd_monitor(int argc, const char **argv, void *ctx)
 		ndctl_set_log_fn((struct ndctl_ctx *)ctx, log_syslog);
 	ndctl_set_log_priority((struct ndctl_ctx *)ctx, LOG_NOTICE);
 
+	if (read_config_file((struct ndctl_ctx *)ctx, &monitor, &param))
+		goto out;
+
+	if (monitor.logfile && (strcmp(monitor.logfile, "./syslog") != 0)
+			&& (strcmp(monitor.logfile, "syslog") != 0)) {
+		fix_filename(prefix, (const char **)&monitor.logfile);
+		ndctl_set_log_fn((struct ndctl_ctx *)ctx, log_file);
+	}
+
 	if (monitor.daemon) {
 		if (daemon(0, 0) != 0) {
 			err((struct ndctl_ctx *)ctx, "daemon start failed\n");
diff --git a/ndctl/monitor.conf b/ndctl/monitor.conf
new file mode 100644
index 0000000..5c10a8d
--- /dev/null
+++ b/ndctl/monitor.conf
@@ -0,0 +1,41 @@
+# This is the main ndctl monitor configuration file. It contains the
+# configuration directives that give ndctl monitor instructions.
+# You can change the configuration of ndctl monitor by editing this
+# file or using [--config-file=<file>] option to override this one.
+# The changed value will work after restart ndctl monitor service.
+
+# In this file, lines starting with a hash (#) are comments.
+# The configurations should follow <key> = <value> style.
+# Multiple space-separated values are allowed, but except the following
+# characters: : ? / \ % " ' $ & ! * { } [ ] ( ) = < > @
+
+# The objects to monitor are filtered via dimm's name by setting key "dimm".
+# If this value is different from the value of [--dimm=<value>] option,
+# both of the values will work.
+# dimm = all
+
+# The objects to monitor are filtered via its parent bus by setting key "bus".
+# If this value is different from the value of [--bus=<value>] option,
+# both of the values will work.
+# bus = all
+
+# The objects to monitor are filtered via region by setting key "region".
+# If this value is different from the value of [--region=<value>] option,
+# both of the values will work.
+# region = all
+
+# The objects to monitor are filtered via namespace by setting key "namespace".
+# If this value is different from the value of [--namespace=<value>] option,
+# both of the values will work.
+# namespace = all
+
+# The DIMM events to monitor are filtered via event type by setting key
+# "dimm-event". If this value is different from the value of
+# [--dimm-event=<value>] option, both of the values will work.
+# dimm-event = all
+
+# Users can choose to output the notifications to syslog (logfile=syslog)
+# or to write into a special file (logfile=<file>) by setting key "logfile".
+# If this value is in conflict with the value of [--logfile=<value>] option,
+# this value will be ignored.
+# logfile = /var/log/ndctl/monitor.log
-- 
2.18.0


_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v9 3/3] ndctl, monitor: add the unit file of systemd for ndctl-monitor service
  2018-06-29  2:30 [PATCH v9 0/3] ndctl, monitor: add ndctl monitor daemon QI Fuli
  2018-06-29  2:30 ` [PATCH v9 1/3] ndctl, monitor: add ndctl monitor QI Fuli
  2018-06-29  2:30 ` [PATCH v9 2/3] ndctl, monitor: add main ndctl monitor configuration file QI Fuli
@ 2018-06-29  2:30 ` QI Fuli
  2 siblings, 0 replies; 10+ messages in thread
From: QI Fuli @ 2018-06-29  2:30 UTC (permalink / raw)
  To: linux-nvdimm

This patch adds the systemd unit file for ndctl-monitor service.
The systemd unit directory can be configured by setting environment
variable "--with-systemd-unit-dir[=DIR]".

A monitor daemon can be started as a system service:
   # systemctl start ndctl-monitor.service

Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
---
 autogen.sh                  |  3 ++-
 configure.ac                | 22 ++++++++++++++++++++++
 ndctl/Makefile.am           |  4 ++++
 ndctl/ndctl-monitor.service |  7 +++++++
 4 files changed, 35 insertions(+), 1 deletion(-)
 create mode 100644 ndctl/ndctl-monitor.service

diff --git a/autogen.sh b/autogen.sh
index 2a52688..21b0e25 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,7 +17,8 @@ libdir() {
 
 args="--prefix=/usr \
 --sysconfdir=/etc \
---libdir=$(libdir /usr/lib)"
+--libdir=$(libdir /usr/lib) \
+--with-systemd-unit-dir"
 
 echo
 echo "----------------------------------------------------------------"
diff --git a/configure.ac b/configure.ac
index cf44260..a5ba9a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -143,6 +143,27 @@ AC_CHECK_FUNCS([ \
 	secure_getenv\
 ])
 
+PKG_PROG_PKG_CONFIG
+AC_ARG_WITH([systemd-unit-dir],
+	AS_HELP_STRING([--with-systemd-unit-dir[=DIR]],
+		[Directory for systemd service files]),
+	[],
+	[with_systemd_unit_dir=yes])
+
+if test "x$with_systemd_unit_dir" = "xyes"; then
+	def_systemd_unit_dir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
+	if test "x$def_systemd_unit_dir" = "x"; then
+		AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])
+		with_systemd_unit_dir=no
+	else
+		with_systemd_unit_dir="$def_systemd_unit_dir"
+	fi
+fi
+
+AS_IF([test "x$with_systemd_unit_dir" != "xno"],
+	[AC_SUBST([systemd_unitdir], [$with_systemd_unit_dir])])
+AM_CONDITIONAL([ENABLE_SYSTEMD_UNIT_DIR], [test "x$with_systemd_unit_dir" != "xno"])
+
 my_CFLAGS="\
 -Wall \
 -Wchar-subscripts \
@@ -184,6 +205,7 @@ AC_MSG_RESULT([
         sysconfdir:             ${sysconfdir}
         libdir:                 ${libdir}
         includedir:             ${includedir}
+	systemd-unit-dir:	${systemd_unitdir}
 
         compiler:               ${CC}
         cflags:                 ${CFLAGS}
diff --git a/ndctl/Makefile.am b/ndctl/Makefile.am
index ae3d894..9d008d5 100644
--- a/ndctl/Makefile.am
+++ b/ndctl/Makefile.am
@@ -47,3 +47,7 @@ monitor_config_file = monitor.conf
 monitor_configdir = /etc/ndctl/
 monitor_config_DATA = $(monitor_config_file)
 EXTRA_DIST += $(monitor_config_file)
+
+if ENABLE_SYSTEMD_UNIT_DIR
+systemd_unit_DATA = ndctl-monitor.service
+endif
diff --git a/ndctl/ndctl-monitor.service b/ndctl/ndctl-monitor.service
new file mode 100644
index 0000000..44f9326
--- /dev/null
+++ b/ndctl/ndctl-monitor.service
@@ -0,0 +1,7 @@
+[Unit]
+Description=Ndctl Monitor Daemon
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/ndctl monitor --daemon
+ExecStop=/bin/kill ${MAINPID}
-- 
2.18.0


_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-06-29  2:30 ` [PATCH v9 1/3] ndctl, monitor: add ndctl monitor QI Fuli
@ 2018-07-07 20:05   ` Dan Williams
  2018-07-09  4:59     ` Qi, Fuli
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Williams @ 2018-07-07 20:05 UTC (permalink / raw)
  To: QI Fuli; +Cc: linux-nvdimm

On Thu, Jun 28, 2018 at 7:30 PM, QI Fuli <qi.fuli@jp.fujitsu.com> wrote:
> Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
> When a smart event fires, monitor will output the notifications which
> include dimm health status and evnet informations to syslog or a
> logfile by setting [--logfile] option. The notifications follow json
> format and can be consumed by log collectors like Fluentd.
>
> The objects to monitor can be selected by setting [--dimm] [--region]
> [--namespace] [--bus] options and the event type can be filtered by
> setting [--dimm-event] option. These options support multiple
> space-separated arguments.
>
> Ndctl monitor can be forked as a daemon by using [--daemon] option,
> such as:
>    # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log
>
> Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
> ---
>  builtin.h              |   1 +
>  ndctl/Makefile.am      |   3 +-
>  ndctl/lib/libndctl.sym |   1 +
>  ndctl/lib/smart.c      |  17 ++
>  ndctl/libndctl.h       |   6 +
>  ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
>  ndctl/ndctl.c          |   1 +
>  util/filter.h          |   9 +
>  8 files changed, 568 insertions(+), 1 deletion(-)
>  create mode 100644 ndctl/monitor.c
>
> diff --git a/builtin.h b/builtin.h
> index d3cc723..675a6ce 100644
> --- a/builtin.h
> +++ b/builtin.h
> @@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char **argv, void *ctx);
>  int cmd_wait_scrub(int argc, const char **argv, void *ctx);
>  int cmd_start_scrub(int argc, const char **argv, void *ctx);
>  int cmd_list(int argc, const char **argv, void *ctx);
> +int cmd_monitor(int argc, const char **argv, void *ctx);
>  #ifdef ENABLE_TEST
>  int cmd_test(int argc, const char **argv, void *ctx);
>  #endif
> diff --git a/ndctl/Makefile.am b/ndctl/Makefile.am
> index d22a379..7dbf223 100644
> --- a/ndctl/Makefile.am
> +++ b/ndctl/Makefile.am
> @@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
>                 util/json-smart.c \
>                 util/json-firmware.c \
>                 inject-error.c \
> -               inject-smart.c
> +               inject-smart.c \
> +               monitor.c
>
>  if ENABLE_DESTRUCTIVE
>  ndctl_SOURCES += ../test/blk_namespaces.c \
> diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym
> index e939993..f64df56 100644
> --- a/ndctl/lib/libndctl.sym
> +++ b/ndctl/lib/libndctl.sym
> @@ -366,4 +366,5 @@ global:
>         ndctl_namespace_inject_error2;
>         ndctl_namespace_uninject_error2;
>         ndctl_cmd_ars_stat_get_flag_overflow;
> +       ndctl_cmd_smart_get_event_flags;
>  } LIBNDCTL_15;
> diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c
> index 0455252..90a65d0 100644
> --- a/ndctl/lib/smart.c
> +++ b/ndctl/lib/smart.c
> @@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int ndctl_cmd_smart_threshold_get_temperature(
>
>  smart_cmd_op(smart_threshold_get_supported_alarms, unsigned int, 0);
>
> +NDCTL_EXPORT unsigned int ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd)

My expectation for this ndctl_*_get_event_flags() api was to have it be:

    ndctl_dimm_get_event_flags()

...and with that in place get rid of the 'struct monitor_dimm' object.
Push everything to be retrieved through api calls against a 'struct
ndctl_dimm' object. In other words, the usage of 'struct ndctl_cmd'
should be hidden and all monitor operations should be done in terms of
'struct ndctl_dimm' helper calls.

This allows for other objects like regions and namespace to grow an
event flags api in the future:

   ndctl_namespace_get_event_flags()
   ndctl_region_get_event_flags()
   ndctl_bus_get_event_flags()

...where those objects don't have any relationship with a 'struct
ndctl_cmd', so neither should dimm event monitoring, at least not for
the library api that ndctl-monitor is using.
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-07-07 20:05   ` Dan Williams
@ 2018-07-09  4:59     ` Qi, Fuli
  2018-07-09  6:03       ` Dan Williams
  0 siblings, 1 reply; 10+ messages in thread
From: Qi, Fuli @ 2018-07-09  4:59 UTC (permalink / raw)
  To: 'Dan Williams'; +Cc: linux-nvdimm

> -----Original Message-----
> From: Dan Williams [mailto:dan.j.williams@intel.com]
> Sent: Sunday, July 8, 2018 5:06 AM
> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
> 
> On Thu, Jun 28, 2018 at 7:30 PM, QI Fuli <qi.fuli@jp.fujitsu.com> wrote:
> > Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
> > When a smart event fires, monitor will output the notifications which
> > include dimm health status and evnet informations to syslog or a
> > logfile by setting [--logfile] option. The notifications follow json
> > format and can be consumed by log collectors like Fluentd.
> >
> > The objects to monitor can be selected by setting [--dimm] [--region]
> > [--namespace] [--bus] options and the event type can be filtered by
> > setting [--dimm-event] option. These options support multiple
> > space-separated arguments.
> >
> > Ndctl monitor can be forked as a daemon by using [--daemon] option,
> > such as:
> >    # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log
> >
> > Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
> > ---
> >  builtin.h              |   1 +
> >  ndctl/Makefile.am      |   3 +-
> >  ndctl/lib/libndctl.sym |   1 +
> >  ndctl/lib/smart.c      |  17 ++
> >  ndctl/libndctl.h       |   6 +
> >  ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
> >  ndctl/ndctl.c          |   1 +
> >  util/filter.h          |   9 +
> >  8 files changed, 568 insertions(+), 1 deletion(-)  create mode 100644
> > ndctl/monitor.c
> >
> > diff --git a/builtin.h b/builtin.h
> > index d3cc723..675a6ce 100644
> > --- a/builtin.h
> > +++ b/builtin.h
> > @@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char **argv,
> > void *ctx);  int cmd_wait_scrub(int argc, const char **argv, void
> > *ctx);  int cmd_start_scrub(int argc, const char **argv, void *ctx);
> > int cmd_list(int argc, const char **argv, void *ctx);
> > +int cmd_monitor(int argc, const char **argv, void *ctx);
> >  #ifdef ENABLE_TEST
> >  int cmd_test(int argc, const char **argv, void *ctx);  #endif diff
> > --git a/ndctl/Makefile.am b/ndctl/Makefile.am index d22a379..7dbf223
> > 100644
> > --- a/ndctl/Makefile.am
> > +++ b/ndctl/Makefile.am
> > @@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
> >                 util/json-smart.c \
> >                 util/json-firmware.c \
> >                 inject-error.c \
> > -               inject-smart.c
> > +               inject-smart.c \
> > +               monitor.c
> >
> >  if ENABLE_DESTRUCTIVE
> >  ndctl_SOURCES += ../test/blk_namespaces.c \ diff --git
> > a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym index
> > e939993..f64df56 100644
> > --- a/ndctl/lib/libndctl.sym
> > +++ b/ndctl/lib/libndctl.sym
> > @@ -366,4 +366,5 @@ global:
> >         ndctl_namespace_inject_error2;
> >         ndctl_namespace_uninject_error2;
> >         ndctl_cmd_ars_stat_get_flag_overflow;
> > +       ndctl_cmd_smart_get_event_flags;
> >  } LIBNDCTL_15;
> > diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c index
> > 0455252..90a65d0 100644
> > --- a/ndctl/lib/smart.c
> > +++ b/ndctl/lib/smart.c
> > @@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int
> > ndctl_cmd_smart_threshold_get_temperature(
> >
> >  smart_cmd_op(smart_threshold_get_supported_alarms, unsigned int, 0);
> >
> > +NDCTL_EXPORT unsigned int ndctl_cmd_smart_get_event_flags(struct
> > +ndctl_cmd *cmd)
> 
> My expectation for this ndctl_*_get_event_flags() api was to have it be:
> 
>     ndctl_dimm_get_event_flags()
> 
> ...and with that in place get rid of the 'struct monitor_dimm' object.
> Push everything to be retrieved through api calls against a 'struct ndctl_dimm' object.
> In other words, the usage of 'struct ndctl_cmd'
> should be hidden and all monitor operations should be done in terms of 'struct
> ndctl_dimm' helper calls.
> 
Hi Dan,
Thanks for your comments.

In the v9 of monitor, I use the 'struct ndctl_cmd' object in the following places:
	ndctl_cmd_smart_get_flags(struct ndctl_cmd *cmd)
	ndctl_cmd_smart_get_health(struct ndctl_cmd *cmd)
	ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd)
Is it that you want to hide all of the 'struct ndctl_cmd' objects and add the following 'struct ndctl_dimm' helper calls?
	ndctl_dimm_get_flags(struct ndctl_dimm *dimm)
	ndctl_dimm_get_health(struct ndctl_dimm *dimm)
	ndctl_dimm_get_event_flags(struct ndctl_dimm *dimm)


> This allows for other objects like regions and namespace to grow an event flags api
> in the future:
> 
>    ndctl_namespace_get_event_flags()
>    ndctl_region_get_event_flags()
>    ndctl_bus_get_event_flags()
> 
> ...where those objects don't have any relationship with a 'struct ndctl_cmd', so
> neither should dimm event monitoring, at least not for the library api that
> ndctl-monitor is using.
> 

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-07-09  4:59     ` Qi, Fuli
@ 2018-07-09  6:03       ` Dan Williams
  2018-07-09  6:22         ` Qi, Fuli
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Williams @ 2018-07-09  6:03 UTC (permalink / raw)
  To: Qi, Fuli; +Cc: linux-nvdimm

On Sun, Jul 8, 2018 at 9:59 PM, Qi, Fuli <qi.fuli@jp.fujitsu.com> wrote:
>> -----Original Message-----
>> From: Dan Williams [mailto:dan.j.williams@intel.com]
>> Sent: Sunday, July 8, 2018 5:06 AM
>> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
>> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
>> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
>>
>> On Thu, Jun 28, 2018 at 7:30 PM, QI Fuli <qi.fuli@jp.fujitsu.com> wrote:
>> > Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
>> > When a smart event fires, monitor will output the notifications which
>> > include dimm health status and evnet informations to syslog or a
>> > logfile by setting [--logfile] option. The notifications follow json
>> > format and can be consumed by log collectors like Fluentd.
>> >
>> > The objects to monitor can be selected by setting [--dimm] [--region]
>> > [--namespace] [--bus] options and the event type can be filtered by
>> > setting [--dimm-event] option. These options support multiple
>> > space-separated arguments.
>> >
>> > Ndctl monitor can be forked as a daemon by using [--daemon] option,
>> > such as:
>> >    # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log
>> >
>> > Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
>> > ---
>> >  builtin.h              |   1 +
>> >  ndctl/Makefile.am      |   3 +-
>> >  ndctl/lib/libndctl.sym |   1 +
>> >  ndctl/lib/smart.c      |  17 ++
>> >  ndctl/libndctl.h       |   6 +
>> >  ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
>> >  ndctl/ndctl.c          |   1 +
>> >  util/filter.h          |   9 +
>> >  8 files changed, 568 insertions(+), 1 deletion(-)  create mode 100644
>> > ndctl/monitor.c
>> >
>> > diff --git a/builtin.h b/builtin.h
>> > index d3cc723..675a6ce 100644
>> > --- a/builtin.h
>> > +++ b/builtin.h
>> > @@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char **argv,
>> > void *ctx);  int cmd_wait_scrub(int argc, const char **argv, void
>> > *ctx);  int cmd_start_scrub(int argc, const char **argv, void *ctx);
>> > int cmd_list(int argc, const char **argv, void *ctx);
>> > +int cmd_monitor(int argc, const char **argv, void *ctx);
>> >  #ifdef ENABLE_TEST
>> >  int cmd_test(int argc, const char **argv, void *ctx);  #endif diff
>> > --git a/ndctl/Makefile.am b/ndctl/Makefile.am index d22a379..7dbf223
>> > 100644
>> > --- a/ndctl/Makefile.am
>> > +++ b/ndctl/Makefile.am
>> > @@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
>> >                 util/json-smart.c \
>> >                 util/json-firmware.c \
>> >                 inject-error.c \
>> > -               inject-smart.c
>> > +               inject-smart.c \
>> > +               monitor.c
>> >
>> >  if ENABLE_DESTRUCTIVE
>> >  ndctl_SOURCES += ../test/blk_namespaces.c \ diff --git
>> > a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym index
>> > e939993..f64df56 100644
>> > --- a/ndctl/lib/libndctl.sym
>> > +++ b/ndctl/lib/libndctl.sym
>> > @@ -366,4 +366,5 @@ global:
>> >         ndctl_namespace_inject_error2;
>> >         ndctl_namespace_uninject_error2;
>> >         ndctl_cmd_ars_stat_get_flag_overflow;
>> > +       ndctl_cmd_smart_get_event_flags;
>> >  } LIBNDCTL_15;
>> > diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c index
>> > 0455252..90a65d0 100644
>> > --- a/ndctl/lib/smart.c
>> > +++ b/ndctl/lib/smart.c
>> > @@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int
>> > ndctl_cmd_smart_threshold_get_temperature(
>> >
>> >  smart_cmd_op(smart_threshold_get_supported_alarms, unsigned int, 0);
>> >
>> > +NDCTL_EXPORT unsigned int ndctl_cmd_smart_get_event_flags(struct
>> > +ndctl_cmd *cmd)
>>
>> My expectation for this ndctl_*_get_event_flags() api was to have it be:
>>
>>     ndctl_dimm_get_event_flags()
>>
>> ...and with that in place get rid of the 'struct monitor_dimm' object.
>> Push everything to be retrieved through api calls against a 'struct ndctl_dimm' object.
>> In other words, the usage of 'struct ndctl_cmd'
>> should be hidden and all monitor operations should be done in terms of 'struct
>> ndctl_dimm' helper calls.
>>
> Hi Dan,
> Thanks for your comments.
>
> In the v9 of monitor, I use the 'struct ndctl_cmd' object in the following places:
>         ndctl_cmd_smart_get_flags(struct ndctl_cmd *cmd)
>         ndctl_cmd_smart_get_health(struct ndctl_cmd *cmd)
>         ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd)
> Is it that you want to hide all of the 'struct ndctl_cmd' objects and add the following 'struct ndctl_dimm' helper calls?

I'm primarily reacting to:

+struct monitor_dimm {
+       struct ndctl_dimm *dimm;
+       int health_eventfd;
+       unsigned int health;
+       unsigned int event_flags;
+       struct list_node list;
+};

Which is effectively duplicating ndctl_dimm internal data.

>         ndctl_dimm_get_flags(struct ndctl_dimm *dimm)
>         ndctl_dimm_get_health(struct ndctl_dimm *dimm)
>         ndctl_dimm_get_event_flags(struct ndctl_dimm *dimm)

I understand why we need ndctl_dimm_get_event_flags() since that tells
you what events have fired. Why do we need the other 2? If the event
has fired then the monitor proceeds to call util_dimm_health_to_json.
Is that not sufficient?
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-07-09  6:03       ` Dan Williams
@ 2018-07-09  6:22         ` Qi, Fuli
  2018-07-09  6:27           ` Dan Williams
  0 siblings, 1 reply; 10+ messages in thread
From: Qi, Fuli @ 2018-07-09  6:22 UTC (permalink / raw)
  To: 'Dan Williams'; +Cc: linux-nvdimm

> -----Original Message-----
> From: Dan Williams [mailto:dan.j.williams@intel.com]
> Sent: Monday, July 9, 2018 3:04 PM
> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
> 
> On Sun, Jul 8, 2018 at 9:59 PM, Qi, Fuli <qi.fuli@jp.fujitsu.com> wrote:
> >> -----Original Message-----
> >> From: Dan Williams [mailto:dan.j.williams@intel.com]
> >> Sent: Sunday, July 8, 2018 5:06 AM
> >> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
> >> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
> >> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
> >>
> >> On Thu, Jun 28, 2018 at 7:30 PM, QI Fuli <qi.fuli@jp.fujitsu.com> wrote:
> >> > Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
> >> > When a smart event fires, monitor will output the notifications
> >> > which include dimm health status and evnet informations to syslog
> >> > or a logfile by setting [--logfile] option. The notifications
> >> > follow json format and can be consumed by log collectors like Fluentd.
> >> >
> >> > The objects to monitor can be selected by setting [--dimm]
> >> > [--region] [--namespace] [--bus] options and the event type can be
> >> > filtered by setting [--dimm-event] option. These options support
> >> > multiple space-separated arguments.
> >> >
> >> > Ndctl monitor can be forked as a daemon by using [--daemon] option,
> >> > such as:
> >> >    # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log
> >> >
> >> > Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
> >> > ---
> >> >  builtin.h              |   1 +
> >> >  ndctl/Makefile.am      |   3 +-
> >> >  ndctl/lib/libndctl.sym |   1 +
> >> >  ndctl/lib/smart.c      |  17 ++
> >> >  ndctl/libndctl.h       |   6 +
> >> >  ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
> >> >  ndctl/ndctl.c          |   1 +
> >> >  util/filter.h          |   9 +
> >> >  8 files changed, 568 insertions(+), 1 deletion(-)  create mode
> >> > 100644 ndctl/monitor.c
> >> >
> >> > diff --git a/builtin.h b/builtin.h
> >> > index d3cc723..675a6ce 100644
> >> > --- a/builtin.h
> >> > +++ b/builtin.h
> >> > @@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char **argv,
> >> > void *ctx);  int cmd_wait_scrub(int argc, const char **argv, void
> >> > *ctx);  int cmd_start_scrub(int argc, const char **argv, void
> >> > *ctx); int cmd_list(int argc, const char **argv, void *ctx);
> >> > +int cmd_monitor(int argc, const char **argv, void *ctx);
> >> >  #ifdef ENABLE_TEST
> >> >  int cmd_test(int argc, const char **argv, void *ctx);  #endif diff
> >> > --git a/ndctl/Makefile.am b/ndctl/Makefile.am index
> >> > d22a379..7dbf223
> >> > 100644
> >> > --- a/ndctl/Makefile.am
> >> > +++ b/ndctl/Makefile.am
> >> > @@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
> >> >                 util/json-smart.c \
> >> >                 util/json-firmware.c \
> >> >                 inject-error.c \
> >> > -               inject-smart.c
> >> > +               inject-smart.c \
> >> > +               monitor.c
> >> >
> >> >  if ENABLE_DESTRUCTIVE
> >> >  ndctl_SOURCES += ../test/blk_namespaces.c \ diff --git
> >> > a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym index
> >> > e939993..f64df56 100644
> >> > --- a/ndctl/lib/libndctl.sym
> >> > +++ b/ndctl/lib/libndctl.sym
> >> > @@ -366,4 +366,5 @@ global:
> >> >         ndctl_namespace_inject_error2;
> >> >         ndctl_namespace_uninject_error2;
> >> >         ndctl_cmd_ars_stat_get_flag_overflow;
> >> > +       ndctl_cmd_smart_get_event_flags;
> >> >  } LIBNDCTL_15;
> >> > diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c index
> >> > 0455252..90a65d0 100644
> >> > --- a/ndctl/lib/smart.c
> >> > +++ b/ndctl/lib/smart.c
> >> > @@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int
> >> > ndctl_cmd_smart_threshold_get_temperature(
> >> >
> >> >  smart_cmd_op(smart_threshold_get_supported_alarms, unsigned int,
> >> > 0);
> >> >
> >> > +NDCTL_EXPORT unsigned int ndctl_cmd_smart_get_event_flags(struct
> >> > +ndctl_cmd *cmd)
> >>
> >> My expectation for this ndctl_*_get_event_flags() api was to have it be:
> >>
> >>     ndctl_dimm_get_event_flags()
> >>
> >> ...and with that in place get rid of the 'struct monitor_dimm' object.
> >> Push everything to be retrieved through api calls against a 'struct ndctl_dimm'
> object.
> >> In other words, the usage of 'struct ndctl_cmd'
> >> should be hidden and all monitor operations should be done in terms
> >> of 'struct ndctl_dimm' helper calls.
> >>
> > Hi Dan,
> > Thanks for your comments.
> >
> > In the v9 of monitor, I use the 'struct ndctl_cmd' object in the following places:
> >         ndctl_cmd_smart_get_flags(struct ndctl_cmd *cmd)
> >         ndctl_cmd_smart_get_health(struct ndctl_cmd *cmd)
> >         ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd) Is it
> > that you want to hide all of the 'struct ndctl_cmd' objects and add the following
> 'struct ndctl_dimm' helper calls?
> 
> I'm primarily reacting to:
> 
> +struct monitor_dimm {
> +       struct ndctl_dimm *dimm;
> +       int health_eventfd;
> +       unsigned int health;
> +       unsigned int event_flags;
> +       struct list_node list;
> +};
> 
> Which is effectively duplicating ndctl_dimm internal data.
> 
> >         ndctl_dimm_get_flags(struct ndctl_dimm *dimm)
> >         ndctl_dimm_get_health(struct ndctl_dimm *dimm)
> >         ndctl_dimm_get_event_flags(struct ndctl_dimm *dimm)
> 
> I understand why we need ndctl_dimm_get_event_flags() since that tells you what
> events have fired. Why do we need the other 2? If the event has fired then the monitor
> proceeds to call util_dimm_health_to_json.
> Is that not sufficient?
> 
About ndctl_dimm_get_flags(struct ndctl_dimm *dimm), I think the ND_SMART_ALARM_VALID of DIMM should be confirmed before monitor start.
If the smart alarm invalid, the DIMM no need to monitor.
Also, the monitor should know the health of DIMM when it starts. When an event fires, then compare it with current health of DIMM.
Therefore, we could know if the dimm-health-state event fired.

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-07-09  6:22         ` Qi, Fuli
@ 2018-07-09  6:27           ` Dan Williams
  2018-07-09  6:31             ` Qi, Fuli
  0 siblings, 1 reply; 10+ messages in thread
From: Dan Williams @ 2018-07-09  6:27 UTC (permalink / raw)
  To: Qi, Fuli; +Cc: linux-nvdimm

On Sun, Jul 8, 2018 at 11:22 PM, Qi, Fuli <qi.fuli@jp.fujitsu.com> wrote:
>> -----Original Message-----
>> From: Dan Williams [mailto:dan.j.williams@intel.com]
>> Sent: Monday, July 9, 2018 3:04 PM
>> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
>> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
>> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
>>
>> On Sun, Jul 8, 2018 at 9:59 PM, Qi, Fuli <qi.fuli@jp.fujitsu.com> wrote:
>> >> -----Original Message-----
>> >> From: Dan Williams [mailto:dan.j.williams@intel.com]
>> >> Sent: Sunday, July 8, 2018 5:06 AM
>> >> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
>> >> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
>> >> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
>> >>
>> >> On Thu, Jun 28, 2018 at 7:30 PM, QI Fuli <qi.fuli@jp.fujitsu.com> wrote:
>> >> > Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
>> >> > When a smart event fires, monitor will output the notifications
>> >> > which include dimm health status and evnet informations to syslog
>> >> > or a logfile by setting [--logfile] option. The notifications
>> >> > follow json format and can be consumed by log collectors like Fluentd.
>> >> >
>> >> > The objects to monitor can be selected by setting [--dimm]
>> >> > [--region] [--namespace] [--bus] options and the event type can be
>> >> > filtered by setting [--dimm-event] option. These options support
>> >> > multiple space-separated arguments.
>> >> >
>> >> > Ndctl monitor can be forked as a daemon by using [--daemon] option,
>> >> > such as:
>> >> >    # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log
>> >> >
>> >> > Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
>> >> > ---
>> >> >  builtin.h              |   1 +
>> >> >  ndctl/Makefile.am      |   3 +-
>> >> >  ndctl/lib/libndctl.sym |   1 +
>> >> >  ndctl/lib/smart.c      |  17 ++
>> >> >  ndctl/libndctl.h       |   6 +
>> >> >  ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
>> >> >  ndctl/ndctl.c          |   1 +
>> >> >  util/filter.h          |   9 +
>> >> >  8 files changed, 568 insertions(+), 1 deletion(-)  create mode
>> >> > 100644 ndctl/monitor.c
>> >> >
>> >> > diff --git a/builtin.h b/builtin.h
>> >> > index d3cc723..675a6ce 100644
>> >> > --- a/builtin.h
>> >> > +++ b/builtin.h
>> >> > @@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char **argv,
>> >> > void *ctx);  int cmd_wait_scrub(int argc, const char **argv, void
>> >> > *ctx);  int cmd_start_scrub(int argc, const char **argv, void
>> >> > *ctx); int cmd_list(int argc, const char **argv, void *ctx);
>> >> > +int cmd_monitor(int argc, const char **argv, void *ctx);
>> >> >  #ifdef ENABLE_TEST
>> >> >  int cmd_test(int argc, const char **argv, void *ctx);  #endif diff
>> >> > --git a/ndctl/Makefile.am b/ndctl/Makefile.am index
>> >> > d22a379..7dbf223
>> >> > 100644
>> >> > --- a/ndctl/Makefile.am
>> >> > +++ b/ndctl/Makefile.am
>> >> > @@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
>> >> >                 util/json-smart.c \
>> >> >                 util/json-firmware.c \
>> >> >                 inject-error.c \
>> >> > -               inject-smart.c
>> >> > +               inject-smart.c \
>> >> > +               monitor.c
>> >> >
>> >> >  if ENABLE_DESTRUCTIVE
>> >> >  ndctl_SOURCES += ../test/blk_namespaces.c \ diff --git
>> >> > a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym index
>> >> > e939993..f64df56 100644
>> >> > --- a/ndctl/lib/libndctl.sym
>> >> > +++ b/ndctl/lib/libndctl.sym
>> >> > @@ -366,4 +366,5 @@ global:
>> >> >         ndctl_namespace_inject_error2;
>> >> >         ndctl_namespace_uninject_error2;
>> >> >         ndctl_cmd_ars_stat_get_flag_overflow;
>> >> > +       ndctl_cmd_smart_get_event_flags;
>> >> >  } LIBNDCTL_15;
>> >> > diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c index
>> >> > 0455252..90a65d0 100644
>> >> > --- a/ndctl/lib/smart.c
>> >> > +++ b/ndctl/lib/smart.c
>> >> > @@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int
>> >> > ndctl_cmd_smart_threshold_get_temperature(
>> >> >
>> >> >  smart_cmd_op(smart_threshold_get_supported_alarms, unsigned int,
>> >> > 0);
>> >> >
>> >> > +NDCTL_EXPORT unsigned int ndctl_cmd_smart_get_event_flags(struct
>> >> > +ndctl_cmd *cmd)
>> >>
>> >> My expectation for this ndctl_*_get_event_flags() api was to have it be:
>> >>
>> >>     ndctl_dimm_get_event_flags()
>> >>
>> >> ...and with that in place get rid of the 'struct monitor_dimm' object.
>> >> Push everything to be retrieved through api calls against a 'struct ndctl_dimm'
>> object.
>> >> In other words, the usage of 'struct ndctl_cmd'
>> >> should be hidden and all monitor operations should be done in terms
>> >> of 'struct ndctl_dimm' helper calls.
>> >>
>> > Hi Dan,
>> > Thanks for your comments.
>> >
>> > In the v9 of monitor, I use the 'struct ndctl_cmd' object in the following places:
>> >         ndctl_cmd_smart_get_flags(struct ndctl_cmd *cmd)
>> >         ndctl_cmd_smart_get_health(struct ndctl_cmd *cmd)
>> >         ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd) Is it
>> > that you want to hide all of the 'struct ndctl_cmd' objects and add the following
>> 'struct ndctl_dimm' helper calls?
>>
>> I'm primarily reacting to:
>>
>> +struct monitor_dimm {
>> +       struct ndctl_dimm *dimm;
>> +       int health_eventfd;
>> +       unsigned int health;
>> +       unsigned int event_flags;
>> +       struct list_node list;
>> +};
>>
>> Which is effectively duplicating ndctl_dimm internal data.
>>
>> >         ndctl_dimm_get_flags(struct ndctl_dimm *dimm)
>> >         ndctl_dimm_get_health(struct ndctl_dimm *dimm)
>> >         ndctl_dimm_get_event_flags(struct ndctl_dimm *dimm)
>>
>> I understand why we need ndctl_dimm_get_event_flags() since that tells you what
>> events have fired. Why do we need the other 2? If the event has fired then the monitor
>> proceeds to call util_dimm_health_to_json.
>> Is that not sufficient?
>>
> About ndctl_dimm_get_flags(struct ndctl_dimm *dimm), I think the ND_SMART_ALARM_VALID of DIMM should be confirmed before monitor start.
> If the smart alarm invalid, the DIMM no need to monitor.
> Also, the monitor should know the health of DIMM when it starts. When an event fires, then compare it with current health of DIMM.
> Therefore, we could know if the dimm-health-state event fired.

Ok, but that sounds like two APIs. _get_supported_flags() and _get_flags().
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
  2018-07-09  6:27           ` Dan Williams
@ 2018-07-09  6:31             ` Qi, Fuli
  0 siblings, 0 replies; 10+ messages in thread
From: Qi, Fuli @ 2018-07-09  6:31 UTC (permalink / raw)
  To: 'Dan Williams'; +Cc: linux-nvdimm

> -----Original Message-----
> From: Dan Williams [mailto:dan.j.williams@intel.com]
> Sent: Monday, July 9, 2018 3:27 PM
> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
> 
> On Sun, Jul 8, 2018 at 11:22 PM, Qi, Fuli <qi.fuli@jp.fujitsu.com> wrote:
> >> -----Original Message-----
> >> From: Dan Williams [mailto:dan.j.williams@intel.com]
> >> Sent: Monday, July 9, 2018 3:04 PM
> >> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
> >> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
> >> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
> >>
> >> On Sun, Jul 8, 2018 at 9:59 PM, Qi, Fuli <qi.fuli@jp.fujitsu.com> wrote:
> >> >> -----Original Message-----
> >> >> From: Dan Williams [mailto:dan.j.williams@intel.com]
> >> >> Sent: Sunday, July 8, 2018 5:06 AM
> >> >> To: Qi, Fuli/斉 福利 <qi.fuli@jp.fujitsu.com>
> >> >> Cc: linux-nvdimm <linux-nvdimm@lists.01.org>
> >> >> Subject: Re: [PATCH v9 1/3] ndctl, monitor: add ndctl monitor
> >> >>
> >> >> On Thu, Jun 28, 2018 at 7:30 PM, QI Fuli <qi.fuli@jp.fujitsu.com> wrote:
> >> >> > Ndctl monitor is used for monitoring the smart events of nvdimm DIMMs.
> >> >> > When a smart event fires, monitor will output the notifications
> >> >> > which include dimm health status and evnet informations to
> >> >> > syslog or a logfile by setting [--logfile] option. The
> >> >> > notifications follow json format and can be consumed by log collectors like
> Fluentd.
> >> >> >
> >> >> > The objects to monitor can be selected by setting [--dimm]
> >> >> > [--region] [--namespace] [--bus] options and the event type can
> >> >> > be filtered by setting [--dimm-event] option. These options
> >> >> > support multiple space-separated arguments.
> >> >> >
> >> >> > Ndctl monitor can be forked as a daemon by using [--daemon]
> >> >> > option, such as:
> >> >> >    # ndctl monitor --daemon --logfile /var/log/ndctl/monitor.log
> >> >> >
> >> >> > Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
> >> >> > ---
> >> >> >  builtin.h              |   1 +
> >> >> >  ndctl/Makefile.am      |   3 +-
> >> >> >  ndctl/lib/libndctl.sym |   1 +
> >> >> >  ndctl/lib/smart.c      |  17 ++
> >> >> >  ndctl/libndctl.h       |   6 +
> >> >> >  ndctl/monitor.c        | 531 +++++++++++++++++++++++++++++++++++++++++
> >> >> >  ndctl/ndctl.c          |   1 +
> >> >> >  util/filter.h          |   9 +
> >> >> >  8 files changed, 568 insertions(+), 1 deletion(-)  create mode
> >> >> > 100644 ndctl/monitor.c
> >> >> >
> >> >> > diff --git a/builtin.h b/builtin.h index d3cc723..675a6ce 100644
> >> >> > --- a/builtin.h
> >> >> > +++ b/builtin.h
> >> >> > @@ -39,6 +39,7 @@ int cmd_inject_error(int argc, const char
> >> >> > **argv, void *ctx);  int cmd_wait_scrub(int argc, const char
> >> >> > **argv, void *ctx);  int cmd_start_scrub(int argc, const char
> >> >> > **argv, void *ctx); int cmd_list(int argc, const char **argv,
> >> >> > void *ctx);
> >> >> > +int cmd_monitor(int argc, const char **argv, void *ctx);
> >> >> >  #ifdef ENABLE_TEST
> >> >> >  int cmd_test(int argc, const char **argv, void *ctx);  #endif
> >> >> > diff --git a/ndctl/Makefile.am b/ndctl/Makefile.am index
> >> >> > d22a379..7dbf223
> >> >> > 100644
> >> >> > --- a/ndctl/Makefile.am
> >> >> > +++ b/ndctl/Makefile.am
> >> >> > @@ -16,7 +16,8 @@ ndctl_SOURCES = ndctl.c \
> >> >> >                 util/json-smart.c \
> >> >> >                 util/json-firmware.c \
> >> >> >                 inject-error.c \
> >> >> > -               inject-smart.c
> >> >> > +               inject-smart.c \
> >> >> > +               monitor.c
> >> >> >
> >> >> >  if ENABLE_DESTRUCTIVE
> >> >> >  ndctl_SOURCES += ../test/blk_namespaces.c \ diff --git
> >> >> > a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym index
> >> >> > e939993..f64df56 100644
> >> >> > --- a/ndctl/lib/libndctl.sym
> >> >> > +++ b/ndctl/lib/libndctl.sym
> >> >> > @@ -366,4 +366,5 @@ global:
> >> >> >         ndctl_namespace_inject_error2;
> >> >> >         ndctl_namespace_uninject_error2;
> >> >> >         ndctl_cmd_ars_stat_get_flag_overflow;
> >> >> > +       ndctl_cmd_smart_get_event_flags;
> >> >> >  } LIBNDCTL_15;
> >> >> > diff --git a/ndctl/lib/smart.c b/ndctl/lib/smart.c index
> >> >> > 0455252..90a65d0 100644
> >> >> > --- a/ndctl/lib/smart.c
> >> >> > +++ b/ndctl/lib/smart.c
> >> >> > @@ -101,6 +101,23 @@ NDCTL_EXPORT unsigned int
> >> >> > ndctl_cmd_smart_threshold_get_temperature(
> >> >> >
> >> >> >  smart_cmd_op(smart_threshold_get_supported_alarms, unsigned
> >> >> > int, 0);
> >> >> >
> >> >> > +NDCTL_EXPORT unsigned int
> >> >> > +ndctl_cmd_smart_get_event_flags(struct
> >> >> > +ndctl_cmd *cmd)
> >> >>
> >> >> My expectation for this ndctl_*_get_event_flags() api was to have it be:
> >> >>
> >> >>     ndctl_dimm_get_event_flags()
> >> >>
> >> >> ...and with that in place get rid of the 'struct monitor_dimm' object.
> >> >> Push everything to be retrieved through api calls against a 'struct ndctl_dimm'
> >> object.
> >> >> In other words, the usage of 'struct ndctl_cmd'
> >> >> should be hidden and all monitor operations should be done in
> >> >> terms of 'struct ndctl_dimm' helper calls.
> >> >>
> >> > Hi Dan,
> >> > Thanks for your comments.
> >> >
> >> > In the v9 of monitor, I use the 'struct ndctl_cmd' object in the following places:
> >> >         ndctl_cmd_smart_get_flags(struct ndctl_cmd *cmd)
> >> >         ndctl_cmd_smart_get_health(struct ndctl_cmd *cmd)
> >> >         ndctl_cmd_smart_get_event_flags(struct ndctl_cmd *cmd) Is
> >> > it that you want to hide all of the 'struct ndctl_cmd' objects and
> >> > add the following
> >> 'struct ndctl_dimm' helper calls?
> >>
> >> I'm primarily reacting to:
> >>
> >> +struct monitor_dimm {
> >> +       struct ndctl_dimm *dimm;
> >> +       int health_eventfd;
> >> +       unsigned int health;
> >> +       unsigned int event_flags;
> >> +       struct list_node list;
> >> +};
> >>
> >> Which is effectively duplicating ndctl_dimm internal data.
> >>
> >> >         ndctl_dimm_get_flags(struct ndctl_dimm *dimm)
> >> >         ndctl_dimm_get_health(struct ndctl_dimm *dimm)
> >> >         ndctl_dimm_get_event_flags(struct ndctl_dimm *dimm)
> >>
> >> I understand why we need ndctl_dimm_get_event_flags() since that
> >> tells you what events have fired. Why do we need the other 2? If the
> >> event has fired then the monitor proceeds to call util_dimm_health_to_json.
> >> Is that not sufficient?
> >>
> > About ndctl_dimm_get_flags(struct ndctl_dimm *dimm), I think the
> ND_SMART_ALARM_VALID of DIMM should be confirmed before monitor start.
> > If the smart alarm invalid, the DIMM no need to monitor.
> > Also, the monitor should know the health of DIMM when it starts. When an event
> fires, then compare it with current health of DIMM.
> > Therefore, we could know if the dimm-health-state event fired.
> 
> Ok, but that sounds like two APIs. _get_supported_flags() and _get_flags().
> 
Ok, I will add both _get_supported_flags() and _get_flags().
Thank you very much.
Qi
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-07-09  6:31 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-29  2:30 [PATCH v9 0/3] ndctl, monitor: add ndctl monitor daemon QI Fuli
2018-06-29  2:30 ` [PATCH v9 1/3] ndctl, monitor: add ndctl monitor QI Fuli
2018-07-07 20:05   ` Dan Williams
2018-07-09  4:59     ` Qi, Fuli
2018-07-09  6:03       ` Dan Williams
2018-07-09  6:22         ` Qi, Fuli
2018-07-09  6:27           ` Dan Williams
2018-07-09  6:31             ` Qi, Fuli
2018-06-29  2:30 ` [PATCH v9 2/3] ndctl, monitor: add main ndctl monitor configuration file QI Fuli
2018-06-29  2:30 ` [PATCH v9 3/3] ndctl, monitor: add the unit file of systemd for ndctl-monitor service QI Fuli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.