RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 661881 - clufindhostname -i returns random value
Summary: clufindhostname -i returns random value
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: rgmanager
Version: 6.0
Hardware: All
OS: Linux
low
medium
Target Milestone: rc
: ---
Assignee: Lon Hohberger
QA Contact: Cluster QE
URL:
Whiteboard:
: 670630 (view as bug list)
Depends On: 592613
Blocks:
TreeView+ depends on / blocked
 
Reported: 2010-12-09 21:06 UTC by Lon Hohberger
Modified: 2011-05-19 14:18 UTC (History)
6 users (show)

Fixed In Version: rgmanager-3.0.12-11.el6
Doc Type: Bug Fix
Doc Text:
Clone Of: 592613
Environment:
Last Closed: 2011-05-19 14:18:33 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2011:0750 0 normal SHIPPED_LIVE rgmanager bug fix and enhancement update 2011-05-18 18:09:01 UTC

Description Lon Hohberger 2010-12-09 21:06:53 UTC
+++ This bug was initially created as a clone of Bug #592613 +++

Description of problem:
clufindhostname -i myhost.example.com returns random value.

Version-Release number of selected component (if applicable):
Tested with 2.0.56-6 (latest) 

How reproducible:
Every time.. 


Steps to Reproduce:
1. clufindhostname -i myhost.example.com 
2. most likely it will return a funny value and make nfsclient check in the cluster go south.

Problem is that:
inet_pton:
0 is returned if src does not contain  a  character  string  representing  a  valid  network address. A positive value is returned if the network address was successfully converted.

From  clufindhostname source code:

if (inet_pton(family, optarg, ptr) < 0) {
        perror("inet_pton");
        exit(2);
}

The check should be:

if (inet_pton(family, optarg, ptr) <= 0) {
        perror("inet_pton");
        exit(2);
}

Cheers D

--- Additional comment from lhh on 2010-12-09 16:06:20 EST ---

Patch pushed upstream:

http://git.fedorahosted.org/git?p=cluster.git;a=commit;h=b057008da82f0caeb539e33575eb1f0a07da192c

Comment 4 Lon Hohberger 2011-03-18 15:10:32 UTC
*** Bug 670630 has been marked as a duplicate of this bug. ***

Comment 5 joshua 2011-03-18 15:31:21 UTC
Lon, do you have an ETA on when the fixed rgmanager will be pushed out?  clufindhostname is pretty darn important to the basic operation of cluster services

Comment 6 Corey Marthaler 2011-04-14 22:44:40 UTC
Fix verified in rgmanager-3.0.12-11.el6.x86_64.

[root@taft-04 ~]# clufindhostname -n taft-01
taft-01.lab.msp.redhat.com
[root@taft-04 ~]# clufindhostname -n taft-02
taft-02.lab.msp.redhat.com

[root@taft-04 ~]# clufindhostname -i 10.15.89.67
taft-01.lab.msp.redhat.com
[root@taft-04 ~]# clufindhostname -i 10.15.89.68
taft-02.lab.msp.redhat.com

Comment 7 errata-xmlrpc 2011-05-19 14:18:33 UTC
An advisory has been issued which should help the problem
described in this bug report. This report is therefore being
closed with a resolution of ERRATA. For more information
on therefore solution and/or where to find the updated files,
please follow the link below. You may reopen this bug report
if the solution does not work for you.

http://rhn.redhat.com/errata/RHBA-2011-0750.html


Note You need to log in before you can comment on or make changes to this bug.