[packages/dlm] rel 2; fix dlm_tool status segfaulting

mmazur mmazur at pld-linux.org
Tue May 27 17:17:46 CEST 2014


commit b3661e8fca51df08ef1a11f3285c3c95deacb2e0
Author: Mariusz Mazur <mmazur at axeos.com>
Date:   Tue May 27 15:30:14 2014 +0200

    rel 2; fix dlm_tool status segfaulting

 dlm.spec                  |   4 +-
 fix_status_printing.patch | 140 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 143 insertions(+), 1 deletion(-)
---
diff --git a/dlm.spec b/dlm.spec
index 6ed8059..47839e5 100644
--- a/dlm.spec
+++ b/dlm.spec
@@ -6,7 +6,7 @@ Summary:	General-purpose distributed lock manager
 Summary(pl.UTF-8):	Zarządca rozproszonych blokad ogólnego przeznaczenia
 Name:		dlm
 Version:	4.0.2
-Release:	1
+Release:	2
 License:	LGPL v2.1+, GPL v2
 Group:		Libraries
 Source0:	https://git.fedorahosted.org/cgit/dlm.git/snapshot/%{name}-%{version}.tar.bz2
@@ -16,6 +16,7 @@ Source2:	%{name}.sysconfig
 Source3:	%{name}.tmpfiles
 Source4:	dlm.conf
 Patch0:		%{name}-systemd-configfs.patch
+Patch1:     fix_status_printing.patch
 URL:		http://sources.redhat.com/cluster/dlm/
 BuildRequires:	corosync-devel >= 2.0
 %{?with_dlm_stonith:BuildRequires:	libxml2-devel >= 2.0}
@@ -70,6 +71,7 @@ Pliki nagłówkowe i dokumentacja programisty dla DLM-a.
 %setup -q
 
 %patch0 -p1
+%patch1 -p1
 
 %build
 %{__make} \
diff --git a/fix_status_printing.patch b/fix_status_printing.patch
new file mode 100644
index 0000000..606e7a4
--- /dev/null
+++ b/fix_status_printing.patch
@@ -0,0 +1,140 @@
+From 090026f33031c1b46dfe3e2e077c6cb0aa149378 Mon Sep 17 00:00:00 2001
+From: David Teigland <teigland at redhat.com>
+Date: Wed, 12 Feb 2014 12:09:10 -0600
+Subject: dlm_tool: fix status printing in libdlmcontrol
+
+When a node was both a startup node and a normal node,
+then status would segfault.
+
+Signed-off-by: David Teigland <teigland at redhat.com>
+
+diff --git a/dlm_controld/lib.c b/dlm_controld/lib.c
+index 961626f..efb74e0 100644
+--- a/dlm_controld/lib.c
++++ b/dlm_controld/lib.c
+@@ -337,12 +337,19 @@ int dlmc_print_status(uint32_t flags)
+ 	struct dlmc_state *st;
+ 	char maxstr[DLMC_STATE_MAXSTR];
+ 	char maxbin[DLMC_STATE_MAXBIN];
+-	char *str, *bin;
+-	int all_count, node_count, fence_count;
+-	int all_ids[MAX_SORT], node_ids[MAX_SORT], fence_ids[MAX_SORT];
+-	char *node_lines[MAX_SORT], *fence_lines[MAX_SORT];
+-	char *node_line, *fence_line;
+-	int fd, rv, off;
++	char *str;
++	char *bin;
++	int all_count, node_count, fence_count, startup_count;
++	int all_ids[MAX_SORT];
++	int node_ids[MAX_SORT];
++	int fence_ids[MAX_SORT];
++	int startup_ids[MAX_SORT];
++	char *node_lines[MAX_SORT];
++	char *fence_lines[MAX_SORT];
++	char *node_line;
++	char *fence_line;
++	int found_node;
++	int fd, rv;
+ 	int i, j;
+ 
+ 	init_header(&h, DLMC_CMD_DUMP_STATUS, NULL, 0);
+@@ -363,14 +370,15 @@ int dlmc_print_status(uint32_t flags)
+ 	st = &state;
+ 	str = maxstr;
+ 	bin = maxbin;
+-	off = 0;
+ 
+ 	all_count = 0;
+ 	node_count = 0;
+ 	fence_count = 0;
++	startup_count = 0;
+ 	memset(&all_ids, 0, sizeof(all_ids));
+ 	memset(&node_ids, 0, sizeof(node_ids));
+ 	memset(&fence_ids, 0, sizeof(fence_ids));
++	memset(&startup_ids, 0, sizeof(startup_ids));
+ 	memset(node_lines, 0, sizeof(node_lines));
+ 	memset(fence_lines, 0, sizeof(fence_lines));
+ 
+@@ -402,9 +410,11 @@ int dlmc_print_status(uint32_t flags)
+ 			print_daemon(st, str, bin, flags);
+ 			break;
+ 
+-		case DLMC_STATE_DAEMON_NODE:
+ 		case DLMC_STATE_STARTUP_NODE:
++			startup_ids[startup_count++] = st->nodeid;
++			break;
+ 
++		case DLMC_STATE_DAEMON_NODE:
+ 			if (flags & DLMC_STATUS_VERBOSE) {
+ 				printf("nodeid %d\n", st->nodeid);
+ 				print_str(str, st->str_len);
+@@ -426,7 +436,7 @@ int dlmc_print_status(uint32_t flags)
+ 				all_ids[all_count++] = st->nodeid;
+ 
+ 				node_ids[node_count] = st->nodeid;
+-				node_lines[node_count++] = node_line;
++				node_lines[node_count] = node_line;
+ 				node_count++;
+ 
+ 				if (!fence_line[0]) {
+@@ -450,13 +460,39 @@ int dlmc_print_status(uint32_t flags)
+ 	if (all_count)
+ 		qsort(all_ids, all_count, sizeof(int), nodeid_compare);
+ 
++	/* don't free any node_lines in this startup loop because we are just
++	   borrowing them; they are needed in the real node loop below. */
++
++	if (startup_count) {
++		for (i = 0; i < startup_count; i++) {
++			found_node = 0;
++			for (j = 0; j < node_count; j++) {
++				if (startup_ids[i] != node_ids[j])
++					continue;
++				found_node = 1;
++				if (!node_lines[j])
++					printf("startup node %d\n", st->nodeid);
++				else
++					printf("startup %s", node_lines[j]);
++				break;
++			}
++			if (!found_node)
++				printf("startup node %d\n", st->nodeid);
++		}
++	}
++
+ 	if (all_count && fence_count) {
+ 		for (i = 0; i < all_count; i++) {
+ 			for (j = 0; j < fence_count; j++) {
+ 				if (all_ids[i] != fence_ids[j])
+ 					continue;
+-				printf("%s", fence_lines[j]);
+-				free(fence_lines[j]);
++				if (!fence_lines[j]) {
++					printf("fence %d no data\n", fence_ids[j]);
++				} else {
++					printf("%s", fence_lines[j]);
++					free(fence_lines[j]);
++					fence_lines[j] = NULL;
++				}
+ 				break;
+ 			}
+ 		}
+@@ -467,8 +503,13 @@ int dlmc_print_status(uint32_t flags)
+ 			for (j = 0; j < node_count; j++) {
+ 				if (all_ids[i] != node_ids[j])
+ 					continue;
+-				printf("%s", node_lines[j]);
+-				free(node_lines[j]);
++				if (!node_lines[j]) {
++					printf("node %d no data\n", node_ids[j]);
++				} else {
++					printf("%s", node_lines[j]);
++					free(node_lines[j]);
++					node_lines[j] = NULL;
++				}
+ 				break;
+ 			}
+ 		}
+-- 
+cgit v0.10.1
+
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/dlm.git/commitdiff/b3661e8fca51df08ef1a11f3285c3c95deacb2e0



More information about the pld-cvs-commit mailing list