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 589803 - Indescribable dependence: librdmacm.so
Summary: Indescribable dependence: librdmacm.so
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: scsi-target-utils
Version: 6.0
Hardware: All
OS: Linux
low
medium
Target Milestone: rc
: ---
Assignee: Mike Christie
QA Contact: Storage QE
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2010-05-06 22:12 UTC by Vesselin Kolev
Modified: 2010-11-10 22:23 UTC (History)
4 users (show)

Fixed In Version: scsi-target-utils-1.0.4-3.el6
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2010-11-10 22:23:58 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Vesselin Kolev 2010-05-06 22:12:02 UTC
Description of problem:

When iser is used, librdmacm-devel should be installed to satisfy start-up dependencies:

(from syslog)
tgtd: librdmacm.so: cannot open shared object file: No such file or directory - iser transport not used

The bug is similar to another reported:

https://bugzilla.redhat.com/show_bug.cgi?id=589689


Version-Release number of selected component (if applicable):

0.9.11-1.20091205snap.el6

How reproducible:

Always

Steps to Reproduce:
1. Make some iser based configuration in /etc/tgt/targets.conf
2. Start service (tgtd daemon):

# service tgtd start
  
Actual results:

Daemon starts, but error is logged in syslog.

Expected results:

Clean start with no errors of this kind.


Additional info:

librdmacm-1.0.10-2.el6 doesn't provide /usr/lib/librdmacm.so. The missing library is provided by librdmacm-devel-1.0.10-2.el6.

Comment 2 RHEL Program Management 2010-05-06 23:17:48 UTC
This request was evaluated by Red Hat Product Management for inclusion in a Red
Hat Enterprise Linux major release.  Product Management has requested further
review of this request by Red Hat Engineering, for potential inclusion in a Red
Hat Enterprise Linux Major release.  This request is not yet committed for
inclusion.

Comment 3 Bill Nottingham 2010-05-07 00:18:51 UTC
It's preferable to  dlopen() the versioned file and require the library package, rather than the .so symlink and the -devel pacakge.

Comment 4 Mike Christie 2010-05-08 01:45:42 UTC
I am going to mark this as a dup of 589689 since these errors are all under needing to make iser get installed correctly.

*** This bug has been marked as a duplicate of bug 589689 ***

Comment 5 Mike Christie 2010-05-08 04:06:40 UTC
Oh yeah,

To properly use dlopen like how Bill describes in comment #3, I am using this bugzilla:
https://bugzilla.redhat.com/show_bug.cgi?id=590097

Comment 6 Mike Christie 2010-05-08 04:14:30 UTC
(In reply to comment #5)
> Oh yeah,
> 
> To properly use dlopen like how Bill describes in comment #3, I am using this
> bugzilla:
> https://bugzilla.redhat.com/show_bug.cgi?id=590097    

Actually, let me use this one for Bill's comment.

590097 is a different issue.

Comment 7 Mike Christie 2010-05-08 04:18:35 UTC
I can replicate this here and here is the patch I am proposing to fix the problem where we require the devel packages when we only want the lib ones:




Index: scsi-target-utils-dynamic-link-iser.patch
===================================================================
RCS file: /cvs/dist/rpms/scsi-target-utils/RHEL-6/scsi-target-utils-dynamic-link-iser.patch,v
retrieving revision 1.1
diff -a -u -r1.1 scsi-target-utils-dynamic-link-iser.patch
--- scsi-target-utils-dynamic-link-iser.patch	13 Jan 2010 21:36:35 -0000	1.1
+++ scsi-target-utils-dynamic-link-iser.patch	8 May 2010 04:17:52 -0000
@@ -320,12 +320,12 @@
 +
  __attribute__((constructor)) static void iser_transport_init(void)
  {
-+	pverbs = dlopen("libibverbs.so",RTLD_LAZY);
++	pverbs = dlopen("libibverbs.so.1",RTLD_LAZY);
 +	if (!pverbs) {
 +		goto Exit; /* do not register iser transport */
 +	}
 +
-+	prdma = dlopen("librdmacm.so",RTLD_LAZY);
++	prdma = dlopen("librdmacm.so.1",RTLD_LAZY);
 +	if (!prdma) {
 +		goto Exit; /* do not register iser transport */
 +	}

Comment 8 Mike Christie 2010-07-08 20:46:54 UTC
This is fixed in scsi-target-utils-1.0.4-3.

Comment 10 Barry Donahue 2010-08-10 18:25:37 UTC
verified in RHEL6.0-20100809.n.3

Comment 11 releng-rhel@redhat.com 2010-11-10 22:23:58 UTC
Red Hat Enterprise Linux 6.0 is now available and should resolve
the problem described in this bug report. This report is therefore being closed
with a resolution of CURRENTRELEASE. You may reopen this bug report if the
solution does not work for you.


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