From: pcaulfield@sourceware.org <pcaulfield@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/cman/daemon cmanccs.c
Date: 23 May 2007 10:31:01 -0000 [thread overview]
Message-ID: <20070523103101.27556.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL5
Changes by: pcaulfield at sourceware.org 2007-05-23 10:31:00
Modified files:
cman/daemon : cmanccs.c
Log message:
Move fix for bz #232068 (IP addresses in cluster.conf) to RHEL5 branch
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/daemon/cmanccs.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.21.2.3&r2=1.21.2.4
--- cluster/cman/daemon/cmanccs.c 2007/05/18 12:46:30 1.21.2.3
+++ cluster/cman/daemon/cmanccs.c 2007/05/23 10:31:00 1.21.2.4
@@ -246,7 +246,6 @@
return 0;
}
-
static int verify_nodename(int cd, char *nodename)
{
char path[MAX_PATH_LEN];
@@ -316,14 +315,17 @@
free(str);
}
-
/* The cluster.conf names may not be related to uname at all,
- they may match a hostname on some network interface */
+ they may match a hostname on some network interface.
+ NOTE: This is IPv4 only */
error = getifaddrs(&ifa_list);
if (error)
return -1;
for (ifa = ifa_list; ifa; ifa = ifa->ifa_next) {
+
+ /* Restore this */
+ strcpy(nodename2, nodename);
sa = ifa->ifa_addr;
if (!sa || sa->sa_family != AF_INET)
continue;
@@ -361,6 +363,23 @@
strcpy(nodename, nodename2);
goto out;
}
+
+ /* See if it's the IP address that's in cluster.conf */
+ error = getnameinfo(sa, sizeof(*sa), nodename2,
+ sizeof(nodename2), NULL, 0, NI_NUMERICHOST);
+ if (error)
+ goto out;
+
+ str = NULL;
+ memset(path, 0, 256);
+ sprintf(path, NODE_NAME_PATH_BYNAME, nodename2);
+
+ error = ccs_get(cd, path, &str);
+ if (!error) {
+ free(str);
+ strcpy(nodename, nodename2);
+ goto out;
+ }
}
error = -1;
next reply other threads:[~2007-05-23 10:31 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-23 10:31 pcaulfield [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-11-05 16:03 [Cluster-devel] cluster/cman/daemon cmanccs.c pcaulfield
2007-10-24 5:58 rmccabe
2007-10-24 5:55 rmccabe
2007-10-24 7:27 ` Fabio Massimo Di Nitto
2007-10-24 3:21 fabbione
2007-10-24 3:21 fabbione
2007-10-24 3:20 fabbione
2007-08-17 7:51 pcaulfield
2007-08-03 10:49 pcaulfield
2007-08-03 7:35 pcaulfield
2007-03-15 11:12 pcaulfield
2007-03-15 9:27 pcaulfield
2007-01-02 15:17 pcaulfield
2007-01-02 15:04 pcaulfield
2006-12-15 15:17 pcaulfield
2006-12-15 13:43 pcaulfield
2006-11-30 10:47 pcaulfield
2006-11-30 10:46 pcaulfield
2006-07-03 8:51 pcaulfield
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070523103101.27556.qmail@sourceware.org \
--to=pcaulfield@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).