All of lore.kernel.org
 help / color / mirror / Atom feed
* What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
@ 2014-02-26  5:16 NeilBrown
  2014-02-26  6:06 ` Chuck Lever
  2014-02-26 14:39 ` Simo Sorce
  0 siblings, 2 replies; 21+ messages in thread
From: NeilBrown @ 2014-02-26  5:16 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Steve Dickson, NFS

[-- Attachment #1: Type: text/plain, Size: 1398 bytes --]


See $SUBJ

Shared libraries are usually versioned so you can release a new version with
an incompatible API and gradually transition to it.

A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
prohibited from ever changing the API in an incompatible way.

Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
"-devel" package and so trip over this library which clearly needs to be
installed even if you aren't doing 'devel'opment.

I would like to change mountd as per the patch below to use the ".0" file.
I believe this will not break any installation as the ".so" is installed as a
symlink to the ".0" (or maybe ".0.0.0").

Would this be acceptable?

There is a bit of a discussion about this here:
  https://bugzilla.redhat.com/show_bug.cgi?id=889174

but I either don't understand it or don't agree with it.

Thanks,
NeilBrown


diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
index ca35de28847a..f6d78490954f 100644
--- a/utils/mountd/cache.c
+++ b/utils/mountd/cache.c
@@ -1139,7 +1139,7 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
 	struct link_map *map;
 	void *handle;
 
-	handle = dlopen("libnfsjunct.so", RTLD_NOW);
+	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
 	if (handle == NULL) {
 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
 		return NULL;

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26  5:16 What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0 NeilBrown
@ 2014-02-26  6:06 ` Chuck Lever
  2014-02-26  7:01   ` NeilBrown
  2014-02-26 14:39 ` Simo Sorce
  1 sibling, 1 reply; 21+ messages in thread
From: Chuck Lever @ 2014-02-26  6:06 UTC (permalink / raw)
  To: NeilBrown; +Cc: Steve Dickson, NFS



> On Feb 25, 2014, at 9:16 PM, NeilBrown <neilb@suse.de> wrote:
> 
> 
> See $SUBJ
> 
> Shared libraries are usually versioned so you can release a new version with
> an incompatible API and gradually transition to it.
> 
> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> prohibited from ever changing the API in an incompatible way.

There is an API version field that mountd can examine before using the plug-in.  .so symlinks to whichever library version is the blessed one.

> 
> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> "-devel" package and so trip over this library which clearly needs to be
> installed even if you aren't doing 'devel'opment.

I've seen the rpmlint warning for some time.  Never been sure exactly what to do about it, or whether it matters.

> 
> I would like to change mountd as per the patch below to use the ".0" file.
> I believe this will not break any installation as the ".so" is installed as a
> symlink to the ".0" (or maybe ".0.0.0").
> 
> Would this be acceptable?

That dlopen(3) should follow whatever packaging guidelines are set out by distributors.  Do what you guys agree is correct.

> 
> There is a bit of a discussion about this here:
>  https://bugzilla.redhat.com/show_bug.cgi?id=889174
> 
> but I either don't understand it or don't agree with it.
> 
> Thanks,
> NeilBrown
> 
> 
> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> index ca35de28847a..f6d78490954f 100644
> --- a/utils/mountd/cache.c
> +++ b/utils/mountd/cache.c
> @@ -1139,7 +1139,7 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
>    struct link_map *map;
>    void *handle;
> 
> -    handle = dlopen("libnfsjunct.so", RTLD_NOW);
> +    handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
>    if (handle == NULL) {
>        xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
>        return NULL;

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26  6:06 ` Chuck Lever
@ 2014-02-26  7:01   ` NeilBrown
  2014-02-26 14:40     ` Simo Sorce
  2014-02-26 14:51     ` Chuck Lever
  0 siblings, 2 replies; 21+ messages in thread
From: NeilBrown @ 2014-02-26  7:01 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Steve Dickson, NFS

[-- Attachment #1: Type: text/plain, Size: 1424 bytes --]

On Tue, 25 Feb 2014 22:06:58 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:

> 
> 
> > On Feb 25, 2014, at 9:16 PM, NeilBrown <neilb@suse.de> wrote:
> > 
> > 
> > See $SUBJ
> > 
> > Shared libraries are usually versioned so you can release a new version with
> > an incompatible API and gradually transition to it.
> > 
> > A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> > prohibited from ever changing the API in an incompatible way.
> 
> There is an API version field that mountd can examine before using the plug-in.  .so symlinks to whichever library version is the blessed one.

What exactly does "blessed one" mean...

Maybe the question I want to ask is:
 Is libnfsjunct.so something that only rpc.mountd would ever use and it could
 not possibly make any sense for anything else to ever use it?

If so, then we probably don't want to install the .so.0 or .so.0.0.0 files
and maybe should give libnfsjunct.so a different suffix because it is not
"shared" in any sense (I wanted to suggest ".lo" for loadable object, but I
think that is already used).

If not, then you could conceivably have two tool installed which use
different version, so it doesn't make sense for either to be "blessed".
The bare ".so" name would be "the version that should be used when building
anything from source".

Does the question have a simple answer?

Thanks,
NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26  5:16 What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0 NeilBrown
  2014-02-26  6:06 ` Chuck Lever
@ 2014-02-26 14:39 ` Simo Sorce
  2014-02-26 16:02   ` Chuck Lever
  1 sibling, 1 reply; 21+ messages in thread
From: Simo Sorce @ 2014-02-26 14:39 UTC (permalink / raw)
  To: NeilBrown; +Cc: Chuck Lever, Steve Dickson, NFS

On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
> See $SUBJ
> 
> Shared libraries are usually versioned so you can release a new version with
> an incompatible API and gradually transition to it.
> 
> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> prohibited from ever changing the API in an incompatible way.
> 
> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> "-devel" package and so trip over this library which clearly needs to be
> installed even if you aren't doing 'devel'opment.

Keep in mind this rule is there only for real shared libraries that are
loaded by the the system loader.

however it is waived for 'modules' that are opened dynamically but are
private to the application.

> I would like to change mountd as per the patch below to use the ".0" file.
> I believe this will not break any installation as the ".so" is installed as a
> symlink to the ".0" (or maybe ".0.0.0").
> 
> Would this be acceptable?

It looks to me like this is an internal module for mountd that is not
for use by other apps (which is why it is not versioned and can be
changed at will as it is deployed at the same time mountd is ?

Or am I wrong here ?

If I am not wrong I would be against this change personally and would
rather move the .so file in a private library dir (if it is not already
there) to make it clear it is a private module.

> There is a bit of a discussion about this here:
>   https://bugzilla.redhat.com/show_bug.cgi?id=889174
> 
> but I either don't understand it or don't agree with it.

Which part of it, there are different opinions stated in the bugzilla at
different times.

Simo.

-- 
Simo Sorce * Red Hat, Inc * New York


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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26  7:01   ` NeilBrown
@ 2014-02-26 14:40     ` Simo Sorce
  2014-02-26 14:51     ` Chuck Lever
  1 sibling, 0 replies; 21+ messages in thread
From: Simo Sorce @ 2014-02-26 14:40 UTC (permalink / raw)
  To: NeilBrown; +Cc: Chuck Lever, Steve Dickson, NFS

On Wed, 2014-02-26 at 18:01 +1100, NeilBrown wrote:
> On Tue, 25 Feb 2014 22:06:58 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
> 
> > 
> > 
> > > On Feb 25, 2014, at 9:16 PM, NeilBrown <neilb@suse.de> wrote:
> > > 
> > > 
> > > See $SUBJ
> > > 
> > > Shared libraries are usually versioned so you can release a new version with
> > > an incompatible API and gradually transition to it.
> > > 
> > > A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> > > prohibited from ever changing the API in an incompatible way.
> > 
> > There is an API version field that mountd can examine before using the plug-in.  .so symlinks to whichever library version is the blessed one.
> 
> What exactly does "blessed one" mean...
> 
> Maybe the question I want to ask is:
>  Is libnfsjunct.so something that only rpc.mountd would ever use and it could
>  not possibly make any sense for anything else to ever use it?
> 
> If so, then we probably don't want to install the .so.0 or .so.0.0.0 files
> and maybe should give libnfsjunct.so a different suffix because it is not
> "shared" in any sense (I wanted to suggest ".lo" for loadable object, but I
> think that is already used).
> 
> If not, then you could conceivably have two tool installed which use
> different version, so it doesn't make sense for either to be "blessed".
> The bare ".so" name would be "the version that should be used when building
> anything from source".
> 
> Does the question have a simple answer?

Shared objects are always called .so, however private modules SHOULD be
installed in a package private directory and no in /usr/lib[64]

Simo.

-- 
Simo Sorce * Red Hat, Inc * New York


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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26  7:01   ` NeilBrown
  2014-02-26 14:40     ` Simo Sorce
@ 2014-02-26 14:51     ` Chuck Lever
  1 sibling, 0 replies; 21+ messages in thread
From: Chuck Lever @ 2014-02-26 14:51 UTC (permalink / raw)
  To: NeilBrown; +Cc: Steve Dickson, NFS



> On Feb 25, 2014, at 11:01 PM, NeilBrown <neilb@suse.de> wrote:
> 
>> On Tue, 25 Feb 2014 22:06:58 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
>> 
>> 
>> 
>>> On Feb 25, 2014, at 9:16 PM, NeilBrown <neilb@suse.de> wrote:
>>> 
>>> 
>>> See $SUBJ
>>> 
>>> Shared libraries are usually versioned so you can release a new version with
>>> an incompatible API and gradually transition to it.
>>> 
>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>>> prohibited from ever changing the API in an incompatible way.
>> 
>> There is an API version field that mountd can examine before using the plug-in.  .so symlinks to whichever library version is the blessed one.
> 
> What exactly does "blessed one" mean...

It means the one the local administrator chooses to use.  The only reason to have more than one plug-in version installed is when testing an upgrade.

> 
> Maybe the question I want to ask is:
> Is libnfsjunct.so something that only rpc.mountd would ever use and it could
> not possibly make any sense for anything else to ever use it?

There is a public header in /usr/include that contains the API definition.  In the future the plug-in might also be able to perform administrative operations on junctions, and other applications could invoke this functionality via the plug-in.

I don't think it's applicability is narrow, even though mountd is its only user today.

> 
> If so, then we probably don't want to install the .so.0 or .so.0.0.0 files
> and maybe should give libnfsjunct.so a different suffix because it is not
> "shared" in any sense (I wanted to suggest ".lo" for loadable object, but I
> think that is already used).
> 
> If not, then you could conceivably have two tool installed which use
> different version, so it doesn't make sense for either to be "blessed".
> The bare ".so" name would be "the version that should be used when building
> anything from source".

I don't understand this last bit.  The plug-in can get bug fixes and new features and mountd does not need to be rebuilt from source to use them.

> 
> Does the question have a simple answer?

I'm afraid I don't yet understand the problem you are trying to solve.

> 
> Thanks,
> NeilBrown

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 14:39 ` Simo Sorce
@ 2014-02-26 16:02   ` Chuck Lever
  2014-02-26 16:25     ` Simo Sorce
  2014-02-26 22:58     ` NeilBrown
  0 siblings, 2 replies; 21+ messages in thread
From: Chuck Lever @ 2014-02-26 16:02 UTC (permalink / raw)
  To: Simo Sorce; +Cc: Neil Brown, Steve Dickson, Linux NFS Mailing List


On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:

> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
>> See $SUBJ
>> 
>> Shared libraries are usually versioned so you can release a new version with
>> an incompatible API and gradually transition to it.
>> 
>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>> prohibited from ever changing the API in an incompatible way.
>> 
>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
>> "-devel" package and so trip over this library which clearly needs to be
>> installed even if you aren't doing 'devel'opment.
> 
> Keep in mind this rule is there only for real shared libraries that are
> loaded by the the system loader.
> 
> however it is waived for 'modules' that are opened dynamically but are
> private to the application.
> 
>> I would like to change mountd as per the patch below to use the ".0" file.
>> I believe this will not break any installation as the ".so" is installed as a
>> symlink to the ".0" (or maybe ".0.0.0").
>> 
>> Would this be acceptable?
> 
> It looks to me like this is an internal module for mountd that is not
> for use by other apps (which is why it is not versioned and can be
> changed at will as it is deployed at the same time mountd is ?

The plug-in API is versioned internally, but maybe I got that wrong, and should remove the API version field in favor of having consumers load via a specific .so number.

> Or am I wrong here ?
> 
> If I am not wrong I would be against this change personally and would
> rather move the .so file in a private library dir (if it is not already
> there) to make it clear it is a private module.

rpc.mountd is the only user currently, but it’s not necessarily private to mountd.  A generic storage manager tool might use it to resolve NFS and FedFS referrals for display, for example.  We could add plug-in API functions for creating and removing referrals to enable generic tools to perform these operations.

A separate directory makes sense if there’s more than one thing to put in it.  Right now we just have the plug-in library, and no plans to add more.

I took an expedient approach when implementing the plug-in, and could have gotten it wrong.  I’m open to make this mechanism fit packaging guidelines and requirements.

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 16:02   ` Chuck Lever
@ 2014-02-26 16:25     ` Simo Sorce
  2014-02-26 16:54       ` Chuck Lever
  2014-02-26 22:58     ` NeilBrown
  1 sibling, 1 reply; 21+ messages in thread
From: Simo Sorce @ 2014-02-26 16:25 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Neil Brown, Steve Dickson, Linux NFS Mailing List

On Wed, 2014-02-26 at 08:02 -0800, Chuck Lever wrote:
> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
> 
> > On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
> >> See $SUBJ
> >> 
> >> Shared libraries are usually versioned so you can release a new version with
> >> an incompatible API and gradually transition to it.
> >> 
> >> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> >> prohibited from ever changing the API in an incompatible way.
> >> 
> >> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> >> "-devel" package and so trip over this library which clearly needs to be
> >> installed even if you aren't doing 'devel'opment.
> > 
> > Keep in mind this rule is there only for real shared libraries that are
> > loaded by the the system loader.
> > 
> > however it is waived for 'modules' that are opened dynamically but are
> > private to the application.
> > 
> >> I would like to change mountd as per the patch below to use the ".0" file.
> >> I believe this will not break any installation as the ".so" is installed as a
> >> symlink to the ".0" (or maybe ".0.0.0").
> >> 
> >> Would this be acceptable?
> > 
> > It looks to me like this is an internal module for mountd that is not
> > for use by other apps (which is why it is not versioned and can be
> > changed at will as it is deployed at the same time mountd is ?
> 
> The plug-in API is versioned internally, but maybe I got that wrong,
> and should remove the API version field in favor of having consumers
> load via a specific .so number.

Either way works the same, it just changes what component makes the
determination (app code vs linker)

> > Or am I wrong here ?
> > 
> > If I am not wrong I would be against this change personally and would
> > rather move the .so file in a private library dir (if it is not already
> > there) to make it clear it is a private module.
> 
> rpc.mountd is the only user currently, but it’s not necessarily
> private to mountd.  A generic storage manager tool might use it to
> resolve NFS and FedFS referrals for display, for example.  We could
> add plug-in API functions for creating and removing referrals to
> enable generic tools to perform these operations.

If it is a generic library why is it dlopened() instead of being simply
linked in at build time ?

> A separate directory makes sense if there’s more than one thing to put
> in it.  Right now we just have the plug-in library, and no plans to
> add more.

directories are cheap, don't fear them :)

> I took an expedient approach when implementing the plug-in, and could
> have gotten it wrong.  I’m open to make this mechanism fit packaging
> guidelines and requirements.

Packaging guidelines vary depending on whether the library is public or
private and therefore you need to guarantee ABI compatibility or not.

I think you need to make that determination first.

Simo.

-- 
Simo Sorce * Red Hat, Inc * New York


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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 16:25     ` Simo Sorce
@ 2014-02-26 16:54       ` Chuck Lever
  2014-02-26 17:10         ` Simo Sorce
  2014-03-03 17:23         ` Steve Dickson
  0 siblings, 2 replies; 21+ messages in thread
From: Chuck Lever @ 2014-02-26 16:54 UTC (permalink / raw)
  To: Simo Sorce; +Cc: Neil Brown, Steve Dickson, Linux NFS Mailing List


On Feb 26, 2014, at 8:25 AM, Simo Sorce <simo@redhat.com> wrote:

> On Wed, 2014-02-26 at 08:02 -0800, Chuck Lever wrote:
>> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
>> 
>>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
>>>> See $SUBJ
>>>> 
>>>> Shared libraries are usually versioned so you can release a new version with
>>>> an incompatible API and gradually transition to it.
>>>> 
>>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>>>> prohibited from ever changing the API in an incompatible way.
>>>> 
>>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
>>>> "-devel" package and so trip over this library which clearly needs to be
>>>> installed even if you aren't doing 'devel'opment.
>>> 
>>> Keep in mind this rule is there only for real shared libraries that are
>>> loaded by the the system loader.
>>> 
>>> however it is waived for 'modules' that are opened dynamically but are
>>> private to the application.
>>> 
>>>> I would like to change mountd as per the patch below to use the ".0" file.
>>>> I believe this will not break any installation as the ".so" is installed as a
>>>> symlink to the ".0" (or maybe ".0.0.0").
>>>> 
>>>> Would this be acceptable?
>>> 
>>> It looks to me like this is an internal module for mountd that is not
>>> for use by other apps (which is why it is not versioned and can be
>>> changed at will as it is deployed at the same time mountd is ?
>> 
>> The plug-in API is versioned internally, but maybe I got that wrong,
>> and should remove the API version field in favor of having consumers
>> load via a specific .so number.
> 
> Either way works the same, it just changes what component makes the
> determination (app code vs linker)
> 
>>> Or am I wrong here ?
>>> 
>>> If I am not wrong I would be against this change personally and would
>>> rather move the .so file in a private library dir (if it is not already
>>> there) to make it clear it is a private module.
>> 
>> rpc.mountd is the only user currently, but it’s not necessarily
>> private to mountd.  A generic storage manager tool might use it to
>> resolve NFS and FedFS referrals for display, for example.  We could
>> add plug-in API functions for creating and removing referrals to
>> enable generic tools to perform these operations.
> 
> If it is a generic library why is it dlopened() instead of being simply
> linked in at build time ?

Handling NFS and FedFS junctions requires support for sqlite3, LDAP, and XML, among others.  The maintainer of nfs-utils preferred to add zero new build dependencies when we introduced this functionality.  The design we came up with was to dlopen() a library that would pull in everything that was needed at run time.

If the plug-in is not installed, mountd simply skips trying to resolve junctions.  This would be the case for embedded NFS servers, for example.

> 
>> A separate directory makes sense if there’s more than one thing to put
>> in it.  Right now we just have the plug-in library, and no plans to
>> add more.
> 
> directories are cheap, don't fear them :)
> 
>> I took an expedient approach when implementing the plug-in, and could
>> have gotten it wrong.  I’m open to make this mechanism fit packaging
>> guidelines and requirements.
> 
> Packaging guidelines vary depending on whether the library is public or
> private and therefore you need to guarantee ABI compatibility or not.
> 
> I think you need to make that determination first.

I attempted to guarantee API compatibility using the API version field and by publishing the API definition in a header under /usr/include.  By that definition it is a public API that happens to have only one current user.

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 16:54       ` Chuck Lever
@ 2014-02-26 17:10         ` Simo Sorce
  2014-03-03 17:30           ` Steve Dickson
  2014-03-03 17:23         ` Steve Dickson
  1 sibling, 1 reply; 21+ messages in thread
From: Simo Sorce @ 2014-02-26 17:10 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Neil Brown, Steve Dickson, Linux NFS Mailing List

On Wed, 2014-02-26 at 08:54 -0800, Chuck Lever wrote:
> On Feb 26, 2014, at 8:25 AM, Simo Sorce <simo@redhat.com> wrote:
> 
> > On Wed, 2014-02-26 at 08:02 -0800, Chuck Lever wrote:
> >> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
> >> 
> >>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
> >>>> See $SUBJ
> >>>> 
> >>>> Shared libraries are usually versioned so you can release a new version with
> >>>> an incompatible API and gradually transition to it.
> >>>> 
> >>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> >>>> prohibited from ever changing the API in an incompatible way.
> >>>> 
> >>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> >>>> "-devel" package and so trip over this library which clearly needs to be
> >>>> installed even if you aren't doing 'devel'opment.
> >>> 
> >>> Keep in mind this rule is there only for real shared libraries that are
> >>> loaded by the the system loader.
> >>> 
> >>> however it is waived for 'modules' that are opened dynamically but are
> >>> private to the application.
> >>> 
> >>>> I would like to change mountd as per the patch below to use the ".0" file.
> >>>> I believe this will not break any installation as the ".so" is installed as a
> >>>> symlink to the ".0" (or maybe ".0.0.0").
> >>>> 
> >>>> Would this be acceptable?
> >>> 
> >>> It looks to me like this is an internal module for mountd that is not
> >>> for use by other apps (which is why it is not versioned and can be
> >>> changed at will as it is deployed at the same time mountd is ?
> >> 
> >> The plug-in API is versioned internally, but maybe I got that wrong,
> >> and should remove the API version field in favor of having consumers
> >> load via a specific .so number.
> > 
> > Either way works the same, it just changes what component makes the
> > determination (app code vs linker)
> > 
> >>> Or am I wrong here ?
> >>> 
> >>> If I am not wrong I would be against this change personally and would
> >>> rather move the .so file in a private library dir (if it is not already
> >>> there) to make it clear it is a private module.
> >> 
> >> rpc.mountd is the only user currently, but it’s not necessarily
> >> private to mountd.  A generic storage manager tool might use it to
> >> resolve NFS and FedFS referrals for display, for example.  We could
> >> add plug-in API functions for creating and removing referrals to
> >> enable generic tools to perform these operations.
> > 
> > If it is a generic library why is it dlopened() instead of being simply
> > linked in at build time ?
> 
> Handling NFS and FedFS junctions requires support for sqlite3, LDAP,
> and XML, among others.  The maintainer of nfs-utils preferred to add
> zero new build dependencies when we introduced this functionality.
> The design we came up with was to dlopen() a library that would pull
> in everything that was needed at run time.
> 
> If the plug-in is not installed, mountd simply skips trying to resolve
> junctions.  This would be the case for embedded NFS servers, for
> example.
> 
Therefore this is an intimate library and the separation is a mere
exercise in keeping the ability to not drag in dependencies in some
install scenarios.

> >> A separate directory makes sense if there’s more than one thing to put
> >> in it.  Right now we just have the plug-in library, and no plans to
> >> add more.
> > 
> > directories are cheap, don't fear them :)
> > 
> >> I took an expedient approach when implementing the plug-in, and could
> >> have gotten it wrong.  I’m open to make this mechanism fit packaging
> >> guidelines and requirements.
> > 
> > Packaging guidelines vary depending on whether the library is public or
> > private and therefore you need to guarantee ABI compatibility or not.
> > 
> > I think you need to make that determination first.

I think based on the above that we are looking at a library that is
currently just a private plugin. The best course of action IMHO is to
move it to /usr/lib[64]/nfs-mountd or something so that it is clear that
it is a private plugin. At least until mountd is the only user.

> I attempted to guarantee API compatibility using the API version field
> and by publishing the API definition in a header under /usr/include.
> By that definition it is a public API that happens to have only one
> current user.

API compatibility is all you need for a private plugin indeed, and
perhaps not even that.

However for a public library what would matter is ABI compatibility, not
API compatibility.

Given it is a lot of effort to guarantee a public API and that there
really is no other user on the horizon I would recommend to consider
this code a private plugin and treat it as such.

That is:
1. consider it tightly integrated with rpc.mountd and to be installed in
lockstep
2. consider it's API/ABI not stable and a private contract within
rpc.mountd
3. package it accordingly

Simo.

-- 
Simo Sorce * Red Hat, Inc * New York


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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 16:02   ` Chuck Lever
  2014-02-26 16:25     ` Simo Sorce
@ 2014-02-26 22:58     ` NeilBrown
  2014-02-27 16:57       ` Chuck Lever
  2014-03-04 18:35       ` Chuck Lever
  1 sibling, 2 replies; 21+ messages in thread
From: NeilBrown @ 2014-02-26 22:58 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List

[-- Attachment #1: Type: text/plain, Size: 4424 bytes --]

On Wed, 26 Feb 2014 08:02:42 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:

> 
> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
> 
> > On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
> >> See $SUBJ
> >> 
> >> Shared libraries are usually versioned so you can release a new version with
> >> an incompatible API and gradually transition to it.
> >> 
> >> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> >> prohibited from ever changing the API in an incompatible way.
> >> 
> >> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> >> "-devel" package and so trip over this library which clearly needs to be
> >> installed even if you aren't doing 'devel'opment.
> > 
> > Keep in mind this rule is there only for real shared libraries that are
> > loaded by the the system loader.
> > 
> > however it is waived for 'modules' that are opened dynamically but are
> > private to the application.
> > 
> >> I would like to change mountd as per the patch below to use the ".0" file.
> >> I believe this will not break any installation as the ".so" is installed as a
> >> symlink to the ".0" (or maybe ".0.0.0").
> >> 
> >> Would this be acceptable?
> > 
> > It looks to me like this is an internal module for mountd that is not
> > for use by other apps (which is why it is not versioned and can be
> > changed at will as it is deployed at the same time mountd is ?
> 
> The plug-in API is versioned internally, but maybe I got that wrong, and should remove the API version field in favor of having consumers load via a specific .so number.

The problem I see with using the internal versioning is that if the version
is wrong, mountd fails to provide the required service.
So while I don't object to storing the version and performing the test, we
should design work-flows so that the test can only fail if there is a serious
configuration error, not just during a software upgrade.

> 
> > Or am I wrong here ?
> > 
> > If I am not wrong I would be against this change personally and would
> > rather move the .so file in a private library dir (if it is not already
> > there) to make it clear it is a private module.
> 
> rpc.mountd is the only user currently, but it’s not necessarily private to mountd.  A generic storage manager tool might use it to resolve NFS and FedFS referrals for display, for example.  We could add plug-in API functions for creating and removing referrals to enable generic tools to perform these operations.

This is the answer I was looking for to the question I asked earlier - thanks.
(So this is not an 'intimate library' to use Simo's term - it is truly a
shared library).

If, one day, an incompatible ABI change was needed then we could have an
rpc.mountd installed  (or still running) which requires one ABI, and a
generic storage manager tool which requires the other.
So we really need them to be stored in two different files.
e.g. libnfsjunct.so.0 and libnfsjunct.so.1


To put it another way... libnfsjunct really is a shared library.
The *only* reason that rpc.mountd treats it differently to other shared
libraries is so that it can fail gracefully if the library isn't available
(thus removing hard dependencies) - a difference that I am very comfortable
with.
In every other way it should be treated like a shared library
 - it should live in the standard /lib64 or whatever
 - each application determines at compile-time what version it needs and finds
   it by appending the version number to the base file name
 - the "libfoo.so" file should live in the "-devel" package along with the
   include file(s)


So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
use a library name provided by the include file

Thanks,
NeilBrown

diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
index ca35de28847a..1a8c20492869 100644
--- a/utils/mountd/cache.c
+++ b/utils/mountd/cache.c
@@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
 	struct link_map *map;
 	void *handle;
 
-	handle = dlopen("libnfsjunct.so", RTLD_NOW);
+#ifdef JP_LIB_NAME
+	handle = dlopen(JP_LIB_NAME, RTLD_NOW);
+#else
+	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
+#endif
 	if (handle == NULL) {
 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
 		return NULL;

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 22:58     ` NeilBrown
@ 2014-02-27 16:57       ` Chuck Lever
  2014-03-03  3:21         ` NeilBrown
  2014-03-04 18:35       ` Chuck Lever
  1 sibling, 1 reply; 21+ messages in thread
From: Chuck Lever @ 2014-02-27 16:57 UTC (permalink / raw)
  To: Neil Brown; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List


On Feb 26, 2014, at 2:58 PM, NeilBrown <neilb@suse.de> wrote:

> On Wed, 26 Feb 2014 08:02:42 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
> 
>> 
>> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
>> 
>>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
>>>> See $SUBJ
>>>> 
>>>> Shared libraries are usually versioned so you can release a new version with
>>>> an incompatible API and gradually transition to it.
>>>> 
>>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>>>> prohibited from ever changing the API in an incompatible way.
>>>> 
>>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
>>>> "-devel" package and so trip over this library which clearly needs to be
>>>> installed even if you aren't doing 'devel'opment.
>>> 
>>> Keep in mind this rule is there only for real shared libraries that are
>>> loaded by the the system loader.
>>> 
>>> however it is waived for 'modules' that are opened dynamically but are
>>> private to the application.
>>> 
>>>> I would like to change mountd as per the patch below to use the ".0" file.
>>>> I believe this will not break any installation as the ".so" is installed as a
>>>> symlink to the ".0" (or maybe ".0.0.0").
>>>> 
>>>> Would this be acceptable?
>>> 
>>> It looks to me like this is an internal module for mountd that is not
>>> for use by other apps (which is why it is not versioned and can be
>>> changed at will as it is deployed at the same time mountd is ?
>> 
>> The plug-in API is versioned internally, but maybe I got that wrong, and should remove the API version field in favor of having consumers load via a specific .so number.
> 
> The problem I see with using the internal versioning is that if the version
> is wrong, mountd fails to provide the required service.
> So while I don't object to storing the version and performing the test, we
> should design work-flows so that the test can only fail if there is a serious
> configuration error, not just during a software upgrade.
> 
>> 
>>> Or am I wrong here ?
>>> 
>>> If I am not wrong I would be against this change personally and would
>>> rather move the .so file in a private library dir (if it is not already
>>> there) to make it clear it is a private module.
>> 
>> rpc.mountd is the only user currently, but it’s not necessarily private to mountd.  A generic storage manager tool might use it to resolve NFS and FedFS referrals for display, for example.  We could add plug-in API functions for creating and removing referrals to enable generic tools to perform these operations.
> 
> This is the answer I was looking for to the question I asked earlier - thanks.
> (So this is not an 'intimate library' to use Simo's term - it is truly a
> shared library).
> 
> If, one day, an incompatible ABI change was needed then we could have an
> rpc.mountd installed  (or still running) which requires one ABI, and a
> generic storage manager tool which requires the other.
> So we really need them to be stored in two different files.
> e.g. libnfsjunct.so.0 and libnfsjunct.so.1

I was hoping this would never happen.  One plug-in library should be able to serve mountd or any other tool that might need to play with junctions.

Only a crazy developer like me would ever need to have more than one library version at a time, and even then, it’s pretty simple to build what I need and reinstall, rather than having more than one installed at a time.

> To put it another way... libnfsjunct really is a shared library.
> The *only* reason that rpc.mountd treats it differently to other shared
> libraries is so that it can fail gracefully if the library isn't available
> (thus removing hard dependencies) - a difference that I am very comfortable
> with.
> In every other way it should be treated like a shared library
> - it should live in the standard /lib64 or whatever
> - each application determines at compile-time what version it needs and finds
>   it by appending the version number to the base file name
> - the "libfoo.so" file should live in the "-devel" package along with the
>   include file(s)
> 
> 
> So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
> use a library name provided by the include file

I’m dense, I still don’t see why this makes a difference.  I’ll admit that linker fu is something I’ve left to others, so don’t be afraid to spell it out slowly for me.

> Thanks,
> NeilBrown
> 
> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> index ca35de28847a..1a8c20492869 100644
> --- a/utils/mountd/cache.c
> +++ b/utils/mountd/cache.c
> @@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
> 	struct link_map *map;
> 	void *handle;
> 
> -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
> +#ifdef JP_LIB_NAME
> +	handle = dlopen(JP_LIB_NAME, RTLD_NOW);
> +#else
> +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
> +#endif
> 	if (handle == NULL) {
> 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
> 		return NULL;

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-27 16:57       ` Chuck Lever
@ 2014-03-03  3:21         ` NeilBrown
  2014-03-03 17:45           ` Chuck Lever
  0 siblings, 1 reply; 21+ messages in thread
From: NeilBrown @ 2014-03-03  3:21 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List

[-- Attachment #1: Type: text/plain, Size: 8322 bytes --]

On Thu, 27 Feb 2014 08:57:56 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:

> 
> On Feb 26, 2014, at 2:58 PM, NeilBrown <neilb@suse.de> wrote:
> 
> > On Wed, 26 Feb 2014 08:02:42 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
> > 
> >> 
> >> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
> >> 
> >>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
> >>>> See $SUBJ
> >>>> 
> >>>> Shared libraries are usually versioned so you can release a new version with
> >>>> an incompatible API and gradually transition to it.
> >>>> 
> >>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> >>>> prohibited from ever changing the API in an incompatible way.
> >>>> 
> >>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> >>>> "-devel" package and so trip over this library which clearly needs to be
> >>>> installed even if you aren't doing 'devel'opment.
> >>> 
> >>> Keep in mind this rule is there only for real shared libraries that are
> >>> loaded by the the system loader.
> >>> 
> >>> however it is waived for 'modules' that are opened dynamically but are
> >>> private to the application.
> >>> 
> >>>> I would like to change mountd as per the patch below to use the ".0" file.
> >>>> I believe this will not break any installation as the ".so" is installed as a
> >>>> symlink to the ".0" (or maybe ".0.0.0").
> >>>> 
> >>>> Would this be acceptable?
> >>> 
> >>> It looks to me like this is an internal module for mountd that is not
> >>> for use by other apps (which is why it is not versioned and can be
> >>> changed at will as it is deployed at the same time mountd is ?
> >> 
> >> The plug-in API is versioned internally, but maybe I got that wrong, and should remove the API version field in favor of having consumers load via a specific .so number.
> > 
> > The problem I see with using the internal versioning is that if the version
> > is wrong, mountd fails to provide the required service.
> > So while I don't object to storing the version and performing the test, we
> > should design work-flows so that the test can only fail if there is a serious
> > configuration error, not just during a software upgrade.
> > 
> >> 
> >>> Or am I wrong here ?
> >>> 
> >>> If I am not wrong I would be against this change personally and would
> >>> rather move the .so file in a private library dir (if it is not already
> >>> there) to make it clear it is a private module.
> >> 
> >> rpc.mountd is the only user currently, but it’s not necessarily private to mountd.  A generic storage manager tool might use it to resolve NFS and FedFS referrals for display, for example.  We could add plug-in API functions for creating and removing referrals to enable generic tools to perform these operations.
> > 
> > This is the answer I was looking for to the question I asked earlier - thanks.
> > (So this is not an 'intimate library' to use Simo's term - it is truly a
> > shared library).
> > 
> > If, one day, an incompatible ABI change was needed then we could have an
> > rpc.mountd installed  (or still running) which requires one ABI, and a
> > generic storage manager tool which requires the other.
> > So we really need them to be stored in two different files.
> > e.g. libnfsjunct.so.0 and libnfsjunct.so.1
> 
> I was hoping this would never happen.  One plug-in library should be able to serve mountd or any other tool that might need to play with junctions.

Certainly that is the hope.  I think everyone who writes a shared library
hopes they will get it right first time, and that if a change is ever needed
then all users can be upgraded simultaneously.

$ ls -l /lib64/lib*.so.1 | grep -c '^-'
4
$ ls -l /lib64/lib*.so.1.* | grep -c '^-'
17
$ ls -l /lib64/lib*.so.[2-9]* | grep -c '^-'
20

That seems to happen often, but not always.  That is why we have shared
library versioning.

> 
> Only a crazy developer like me would ever need to have more than one library version at a time, and even then, it’s pretty simple to build what I need and reinstall, rather than having more than one installed at a time.
> 
> > To put it another way... libnfsjunct really is a shared library.
> > The *only* reason that rpc.mountd treats it differently to other shared
> > libraries is so that it can fail gracefully if the library isn't available
> > (thus removing hard dependencies) - a difference that I am very comfortable
> > with.
> > In every other way it should be treated like a shared library
> > - it should live in the standard /lib64 or whatever
> > - each application determines at compile-time what version it needs and finds
> >   it by appending the version number to the base file name
> > - the "libfoo.so" file should live in the "-devel" package along with the
> >   include file(s)
> > 
> > 
> > So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
> > use a library name provided by the include file
> 
> I’m dense, I still don’t see why this makes a difference.  I’ll admit that linker fu is something I’ve left to others, so don’t be afraid to spell it out slowly for me.

I'll try (might make sure I understand it too).
The following is based in part on section 3.1.1 of
http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

A shared library (like a cat) has three different names.

1/ The file name.  This is normally /$LIBDIR/libFOO.so.maj.min.release
  (e.g. /usr/lib/libnfsjunct.so.0.0.0), though it can be almost whatever you
  like.   It is used by installers to install the library, and by ldconfig.
  ldconfig only wants it to start "lib" or "ld-" and to have ".so" somewhere
  in the name.

2/ The "soname".  This is /$LIBDIR/libFOO.so.maj (i.e. only major number).
   ldconfig will create a symlink from this name to the "most recent" library
   found with that SONAME (a field in the shared library:
         objdump -x $LIBRARY | grep SONAME
   ).
   An application which needs to be linked will contain the "soname" of each
   library that it wants to use. "ldd" lists these and the matching filename
   for each.  ld.so effective calls "dlopen" on each "soname".

3/ The "linker name".  This is the name that is used when you compile code.
   You typically specify "-lFOO" and the linker interprets that at
   "$LIBPATH/libFOO.so" and finds a shared library.  It extracts the SONAME
   from this library and stores that in that generated binary.
   Naturally the library version found at the "linker name" must match the
   include files describing data structures etc in the library.

To follow this pattern as closely as possible, and yet allow rpc.mountd to
use dlopen() to load the library:
 - the "soname" should be passed to dlopen(). (That is what ld.so does)
 - that name should be determined from the compile-time environment. (that is
   what 'ld' does).

i.e. we should pass "libnfsjunct.so.0" to dlopen() (if the current
fedfs-utils provides the compile-time environment).  We could determine that
string with a little script which runs

   objdump -x /lib64/libnfsjunct.so | sed -n -e 's/^ *SONAME *//p'

or we could simply keep it in the include file (which must be in-sync with
the .so).

Doing this
 1/ ensures that we have the full flexibility of shared libraries should we
    ever need that.
 2/ makes the nfsjunct library look just like any other shared library and so
    avoids confusion for package checkers.

Does that clarify at all?

Thanks,
NeilBrown


> > 
> > diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> > index ca35de28847a..1a8c20492869 100644
> > --- a/utils/mountd/cache.c
> > +++ b/utils/mountd/cache.c
> > @@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
> > 	struct link_map *map;
> > 	void *handle;
> > 
> > -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
> > +#ifdef JP_LIB_NAME
> > +	handle = dlopen(JP_LIB_NAME, RTLD_NOW);
> > +#else
> > +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
> > +#endif
> > 	if (handle == NULL) {
> > 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
> > 		return NULL;
> 
> --
> Chuck Lever
> chuck[dot]lever[at]oracle[dot]com
> 
> 


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 16:54       ` Chuck Lever
  2014-02-26 17:10         ` Simo Sorce
@ 2014-03-03 17:23         ` Steve Dickson
  1 sibling, 0 replies; 21+ messages in thread
From: Steve Dickson @ 2014-03-03 17:23 UTC (permalink / raw)
  To: Chuck Lever, Simo Sorce; +Cc: Neil Brown, Linux NFS Mailing List

Sorry for getting into this so late... 

On 02/26/2014 11:54 AM, Chuck Lever wrote:
> 
> On Feb 26, 2014, at 8:25 AM, Simo Sorce <simo@redhat.com> wrote:
> 
>> On Wed, 2014-02-26 at 08:02 -0800, Chuck Lever wrote:
>>> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
>>>
>>>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
>>>>> See $SUBJ
>>>>>
>>>>> Shared libraries are usually versioned so you can release a new version with
>>>>> an incompatible API and gradually transition to it.
>>>>>
>>>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>>>>> prohibited from ever changing the API in an incompatible way.
>>>>>
>>>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
>>>>> "-devel" package and so trip over this library which clearly needs to be
>>>>> installed even if you aren't doing 'devel'opment.
>>>>
>>>> Keep in mind this rule is there only for real shared libraries that are
>>>> loaded by the the system loader.
>>>>
>>>> however it is waived for 'modules' that are opened dynamically but are
>>>> private to the application.
>>>>
>>>>> I would like to change mountd as per the patch below to use the ".0" file.
>>>>> I believe this will not break any installation as the ".so" is installed as a
>>>>> symlink to the ".0" (or maybe ".0.0.0").
>>>>>
>>>>> Would this be acceptable?
>>>>
>>>> It looks to me like this is an internal module for mountd that is not
>>>> for use by other apps (which is why it is not versioned and can be
>>>> changed at will as it is deployed at the same time mountd is ?
>>>
>>> The plug-in API is versioned internally, but maybe I got that wrong,
>>> and should remove the API version field in favor of having consumers
>>> load via a specific .so number.
>>
>> Either way works the same, it just changes what component makes the
>> determination (app code vs linker)
>>
>>>> Or am I wrong here ?
>>>>
>>>> If I am not wrong I would be against this change personally and would
>>>> rather move the .so file in a private library dir (if it is not already
>>>> there) to make it clear it is a private module.
>>>
>>> rpc.mountd is the only user currently, but it’s not necessarily
>>> private to mountd.  A generic storage manager tool might use it to
>>> resolve NFS and FedFS referrals for display, for example.  We could
>>> add plug-in API functions for creating and removing referrals to
>>> enable generic tools to perform these operations.
>>
>> If it is a generic library why is it dlopened() instead of being simply
>> linked in at build time ?
> 
> Handling NFS and FedFS junctions requires support for sqlite3, LDAP, 
> and XML, among others.  The maintainer of nfs-utils preferred to add zero 
> new build dependencies when we introduced this functionality.  The design 
> we came up with was to dlopen() a library that would pull in everything 
> that was needed at run time.
Right... The dependency list is way too long now and the last thing
I wanted was make nfs-utils depend on things it will probably
never use...  
 
> 
> If the plug-in is not installed, mountd simply skips trying to resolve junctions.  
> This would be the case for embedded NFS servers, for example.
I think this works well... 

I guess I don't care about the version-ing or where the library 
lives... but I don't want rpc.mountd to be depending on libnfsjunct.so
just use it when it exists. 

steved.
> 
>>
>>> A separate directory makes sense if there’s more than one thing to put
>>> in it.  Right now we just have the plug-in library, and no plans to
>>> add more.
>>
>> directories are cheap, don't fear them :)
>>
>>> I took an expedient approach when implementing the plug-in, and could
>>> have gotten it wrong.  I’m open to make this mechanism fit packaging
>>> guidelines and requirements.
>>
>> Packaging guidelines vary depending on whether the library is public or
>> private and therefore you need to guarantee ABI compatibility or not.
>>
>> I think you need to make that determination first.
> 
> I attempted to guarantee API compatibility using the API version field and by publishing the API definition in a header under /usr/include.  By that definition it is a public API that happens to have only one current user.
> 
> --
> Chuck Lever
> chuck[dot]lever[at]oracle[dot]com
> 
> 
> 

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 17:10         ` Simo Sorce
@ 2014-03-03 17:30           ` Steve Dickson
  0 siblings, 0 replies; 21+ messages in thread
From: Steve Dickson @ 2014-03-03 17:30 UTC (permalink / raw)
  To: Simo Sorce, Chuck Lever; +Cc: Neil Brown, Linux NFS Mailing List



On 02/26/2014 12:10 PM, Simo Sorce wrote:
> On Wed, 2014-02-26 at 08:54 -0800, Chuck Lever wrote:
>> On Feb 26, 2014, at 8:25 AM, Simo Sorce <simo@redhat.com> wrote:
>>
>>> On Wed, 2014-02-26 at 08:02 -0800, Chuck Lever wrote:
>>>> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
>>>>
>>>>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
>>>>>> See $SUBJ
>>>>>>
>>>>>> Shared libraries are usually versioned so you can release a new version with
>>>>>> an incompatible API and gradually transition to it.
>>>>>>
>>>>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>>>>>> prohibited from ever changing the API in an incompatible way.
>>>>>>
>>>>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
>>>>>> "-devel" package and so trip over this library which clearly needs to be
>>>>>> installed even if you aren't doing 'devel'opment.
>>>>>
>>>>> Keep in mind this rule is there only for real shared libraries that are
>>>>> loaded by the the system loader.
>>>>>
>>>>> however it is waived for 'modules' that are opened dynamically but are
>>>>> private to the application.
>>>>>
>>>>>> I would like to change mountd as per the patch below to use the ".0" file.
>>>>>> I believe this will not break any installation as the ".so" is installed as a
>>>>>> symlink to the ".0" (or maybe ".0.0.0").
>>>>>>
>>>>>> Would this be acceptable?
>>>>>
>>>>> It looks to me like this is an internal module for mountd that is not
>>>>> for use by other apps (which is why it is not versioned and can be
>>>>> changed at will as it is deployed at the same time mountd is ?
>>>>
>>>> The plug-in API is versioned internally, but maybe I got that wrong,
>>>> and should remove the API version field in favor of having consumers
>>>> load via a specific .so number.
>>>
>>> Either way works the same, it just changes what component makes the
>>> determination (app code vs linker)
>>>
>>>>> Or am I wrong here ?
>>>>>
>>>>> If I am not wrong I would be against this change personally and would
>>>>> rather move the .so file in a private library dir (if it is not already
>>>>> there) to make it clear it is a private module.
>>>>
>>>> rpc.mountd is the only user currently, but it’s not necessarily
>>>> private to mountd.  A generic storage manager tool might use it to
>>>> resolve NFS and FedFS referrals for display, for example.  We could
>>>> add plug-in API functions for creating and removing referrals to
>>>> enable generic tools to perform these operations.
>>>
>>> If it is a generic library why is it dlopened() instead of being simply
>>> linked in at build time ?
>>
>> Handling NFS and FedFS junctions requires support for sqlite3, LDAP,
>> and XML, among others.  The maintainer of nfs-utils preferred to add
>> zero new build dependencies when we introduced this functionality.
>> The design we came up with was to dlopen() a library that would pull
>> in everything that was needed at run time.
>>
>> If the plug-in is not installed, mountd simply skips trying to resolve
>> junctions.  This would be the case for embedded NFS servers, for
>> example.
>>
> Therefore this is an intimate library and the separation is a mere
> exercise in keeping the ability to not drag in dependencies in some
> install scenarios.
> 
>>>> A separate directory makes sense if there’s more than one thing to put
>>>> in it.  Right now we just have the plug-in library, and no plans to
>>>> add more.
>>>
>>> directories are cheap, don't fear them :)
>>>
>>>> I took an expedient approach when implementing the plug-in, and could
>>>> have gotten it wrong.  I’m open to make this mechanism fit packaging
>>>> guidelines and requirements.
>>>
>>> Packaging guidelines vary depending on whether the library is public or
>>> private and therefore you need to guarantee ABI compatibility or not.
>>>
>>> I think you need to make that determination first.
> 
> I think based on the above that we are looking at a library that is
> currently just a private plugin. The best course of action IMHO is to
> move it to /usr/lib[64]/nfs-mountd or something so that it is clear that
> it is a private plugin. At least until mountd is the only user.
> 
>> I attempted to guarantee API compatibility using the API version field
>> and by publishing the API definition in a header under /usr/include.
>> By that definition it is a public API that happens to have only one
>> current user.
> 
> API compatibility is all you need for a private plugin indeed, and
> perhaps not even that.
> 
> However for a public library what would matter is ABI compatibility, not
> API compatibility.
> 
> Given it is a lot of effort to guarantee a public API and that there
> really is no other user on the horizon I would recommend to consider
> this code a private plugin and treat it as such.
> 
> That is:
> 1. consider it tightly integrated with rpc.mountd and to be installed in
> lockstep
> 2. consider it's API/ABI not stable and a private contract within
> rpc.mountd
> 3. package it accordingly
No... I do not want to make rpc.mount and the libnfsjunct.so tightly
coupled... Again, the use of it... if it exists... paradigm is good...

steved.

> 
> Simo.
> 

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-03-03  3:21         ` NeilBrown
@ 2014-03-03 17:45           ` Chuck Lever
  2014-03-03 22:42             ` NeilBrown
  0 siblings, 1 reply; 21+ messages in thread
From: Chuck Lever @ 2014-03-03 17:45 UTC (permalink / raw)
  To: Neil Brown; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List


On Mar 2, 2014, at 10:21 PM, NeilBrown <neilb@suse.de> wrote:

> On Thu, 27 Feb 2014 08:57:56 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
> 
>> 
>> On Feb 26, 2014, at 2:58 PM, NeilBrown <neilb@suse.de> wrote:
>> 
>>> On Wed, 26 Feb 2014 08:02:42 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
>>> 
>>>> 
>>>> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
>>>> 
>>>>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
>>>>>> See $SUBJ
>>>>>> 
>>>>>> Shared libraries are usually versioned so you can release a new version with
>>>>>> an incompatible API and gradually transition to it.
>>>>>> 
>>>>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
>>>>>> prohibited from ever changing the API in an incompatible way.
>>>>>> 
>>>>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
>>>>>> "-devel" package and so trip over this library which clearly needs to be
>>>>>> installed even if you aren't doing 'devel'opment.
>>>>> 
>>>>> Keep in mind this rule is there only for real shared libraries that are
>>>>> loaded by the the system loader.
>>>>> 
>>>>> however it is waived for 'modules' that are opened dynamically but are
>>>>> private to the application.
>>>>> 
>>>>>> I would like to change mountd as per the patch below to use the ".0" file.
>>>>>> I believe this will not break any installation as the ".so" is installed as a
>>>>>> symlink to the ".0" (or maybe ".0.0.0").
>>>>>> 
>>>>>> Would this be acceptable?
>>>>> 
>>>>> It looks to me like this is an internal module for mountd that is not
>>>>> for use by other apps (which is why it is not versioned and can be
>>>>> changed at will as it is deployed at the same time mountd is ?
>>>> 
>>>> The plug-in API is versioned internally, but maybe I got that wrong, and should remove the API version field in favor of having consumers load via a specific .so number.
>>> 
>>> The problem I see with using the internal versioning is that if the version
>>> is wrong, mountd fails to provide the required service.
>>> So while I don't object to storing the version and performing the test, we
>>> should design work-flows so that the test can only fail if there is a serious
>>> configuration error, not just during a software upgrade.
>>> 
>>>> 
>>>>> Or am I wrong here ?
>>>>> 
>>>>> If I am not wrong I would be against this change personally and would
>>>>> rather move the .so file in a private library dir (if it is not already
>>>>> there) to make it clear it is a private module.
>>>> 
>>>> rpc.mountd is the only user currently, but it’s not necessarily private to mountd.  A generic storage manager tool might use it to resolve NFS and FedFS referrals for display, for example.  We could add plug-in API functions for creating and removing referrals to enable generic tools to perform these operations.
>>> 
>>> This is the answer I was looking for to the question I asked earlier - thanks.
>>> (So this is not an 'intimate library' to use Simo's term - it is truly a
>>> shared library).
>>> 
>>> If, one day, an incompatible ABI change was needed then we could have an
>>> rpc.mountd installed  (or still running) which requires one ABI, and a
>>> generic storage manager tool which requires the other.
>>> So we really need them to be stored in two different files.
>>> e.g. libnfsjunct.so.0 and libnfsjunct.so.1
>> 
>> I was hoping this would never happen.  One plug-in library should be able to serve mountd or any other tool that might need to play with junctions.
> 
> Certainly that is the hope.  I think everyone who writes a shared library
> hopes they will get it right first time, and that if a change is ever needed
> then all users can be upgraded simultaneously.
> 
> $ ls -l /lib64/lib*.so.1 | grep -c '^-'
> 4
> $ ls -l /lib64/lib*.so.1.* | grep -c '^-'
> 17
> $ ls -l /lib64/lib*.so.[2-9]* | grep -c '^-'
> 20
> 
> That seems to happen often, but not always.  That is why we have shared
> library versioning.
> 
>> 
>> Only a crazy developer like me would ever need to have more than one library version at a time, and even then, it’s pretty simple to build what I need and reinstall, rather than having more than one installed at a time.
>> 
>>> To put it another way... libnfsjunct really is a shared library.
>>> The *only* reason that rpc.mountd treats it differently to other shared
>>> libraries is so that it can fail gracefully if the library isn't available
>>> (thus removing hard dependencies) - a difference that I am very comfortable
>>> with.
>>> In every other way it should be treated like a shared library
>>> - it should live in the standard /lib64 or whatever
>>> - each application determines at compile-time what version it needs and finds
>>>  it by appending the version number to the base file name
>>> - the "libfoo.so" file should live in the "-devel" package along with the
>>>  include file(s)
>>> 
>>> 
>>> So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
>>> use a library name provided by the include file
>> 
>> I’m dense, I still don’t see why this makes a difference.  I’ll admit that linker fu is something I’ve left to others, so don’t be afraid to spell it out slowly for me.
> 
> I'll try (might make sure I understand it too).
> The following is based in part on section 3.1.1 of
> http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
> 
> A shared library (like a cat) has three different names.
> 
> 1/ The file name.  This is normally /$LIBDIR/libFOO.so.maj.min.release
>  (e.g. /usr/lib/libnfsjunct.so.0.0.0), though it can be almost whatever you
>  like.   It is used by installers to install the library, and by ldconfig.
>  ldconfig only wants it to start "lib" or "ld-" and to have ".so" somewhere
>  in the name.
> 
> 2/ The "soname".  This is /$LIBDIR/libFOO.so.maj (i.e. only major number).
>   ldconfig will create a symlink from this name to the "most recent" library
>   found with that SONAME (a field in the shared library:
>         objdump -x $LIBRARY | grep SONAME
>   ).
>   An application which needs to be linked will contain the "soname" of each
>   library that it wants to use. "ldd" lists these and the matching filename
>   for each.  ld.so effective calls "dlopen" on each "soname".
> 
> 3/ The "linker name".  This is the name that is used when you compile code.
>   You typically specify "-lFOO" and the linker interprets that at
>   "$LIBPATH/libFOO.so" and finds a shared library.  It extracts the SONAME
>   from this library and stores that in that generated binary.
>   Naturally the library version found at the "linker name" must match the
>   include files describing data structures etc in the library.
> 
> To follow this pattern as closely as possible, and yet allow rpc.mountd to
> use dlopen() to load the library:
> - the "soname" should be passed to dlopen(). (That is what ld.so does)
> - that name should be determined from the compile-time environment. (that is
>   what 'ld' does).
> 
> i.e. we should pass "libnfsjunct.so.0" to dlopen() (if the current
> fedfs-utils provides the compile-time environment).  We could determine that
> string with a little script which runs
> 
>   objdump -x /lib64/libnfsjunct.so | sed -n -e 's/^ *SONAME *//p'
> 
> or we could simply keep it in the include file (which must be in-sync with
> the .so).
> 
> Doing this
> 1/ ensures that we have the full flexibility of shared libraries should we
>    ever need that.
> 2/ makes the nfsjunct library look just like any other shared library and so
>    avoids confusion for package checkers.
> 
> Does that clarify at all?

Thank you Neil, it’s coming into focus for me.

We had some conversation about this at Connectathon last week. It seems like a better design would look like:

  o  A separate directory under /usr/lib{64} where fedfs-utils would install its plug-ins

  o  Plug-in consumers would dlopen() via the plug-in library's soname to guarantee ABI compatibility

  o  The API version field would be deprecated

  o  We didn’t discuss how consumers discover the plug-in soname, but if the API is defined in the header and the soname has to match, maybe that’s the way to go

I don’t think any of these changes would alter the “loose-ness” of current coupling between rpc.mountd and the plug-in library (to address Steve’s concern), but they would make a better guarantee that mountd was loading the correct plug-in library version.

I’m not sure exactly how to get from point A to point B. Probably fedfs-utils would have to package the plug-in library in the old and new places until all distributed versions of mountd was changed to find the plug-ins in the right place. That would have to be the case to allow nfs-utils downgrades for a particular distribution.




> 
> Thanks,
> NeilBrown
> 
> 
>>> 
>>> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
>>> index ca35de28847a..1a8c20492869 100644
>>> --- a/utils/mountd/cache.c
>>> +++ b/utils/mountd/cache.c
>>> @@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
>>> 	struct link_map *map;
>>> 	void *handle;
>>> 
>>> -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
>>> +#ifdef JP_LIB_NAME
>>> +	handle = dlopen(JP_LIB_NAME, RTLD_NOW);
>>> +#else
>>> +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
>>> +#endif
>>> 	if (handle == NULL) {
>>> 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
>>> 		return NULL;
>> 
>> --
>> Chuck Lever
>> chuck[dot]lever[at]oracle[dot]com
>> 
>> 
> 

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-03-03 17:45           ` Chuck Lever
@ 2014-03-03 22:42             ` NeilBrown
  0 siblings, 0 replies; 21+ messages in thread
From: NeilBrown @ 2014-03-03 22:42 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List

[-- Attachment #1: Type: text/plain, Size: 12950 bytes --]

On Mon, 3 Mar 2014 12:45:55 -0500 Chuck Lever <chuck.lever@oracle.com> wrote:

> 
> On Mar 2, 2014, at 10:21 PM, NeilBrown <neilb@suse.de> wrote:
> 
> > On Thu, 27 Feb 2014 08:57:56 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
> > 
> >> 
> >> On Feb 26, 2014, at 2:58 PM, NeilBrown <neilb@suse.de> wrote:
> >> 
> >>> On Wed, 26 Feb 2014 08:02:42 -0800 Chuck Lever <chuck.lever@oracle.com> wrote:
> >>> 
> >>>> 
> >>>> On Feb 26, 2014, at 6:39 AM, Simo Sorce <simo@redhat.com> wrote:
> >>>> 
> >>>>> On Wed, 2014-02-26 at 16:16 +1100, NeilBrown wrote:
> >>>>>> See $SUBJ
> >>>>>> 
> >>>>>> Shared libraries are usually versioned so you can release a new version with
> >>>>>> an incompatible API and gradually transition to it.
> >>>>>> 
> >>>>>> A rpc.mountd dlopens libnfsjunct.so with no version it is effectively
> >>>>>> prohibited from ever changing the API in an incompatible way.
> >>>>>> 
> >>>>>> Both Fedora and openSUSE get upset about packaging a libFOO.so in a non
> >>>>>> "-devel" package and so trip over this library which clearly needs to be
> >>>>>> installed even if you aren't doing 'devel'opment.
> >>>>> 
> >>>>> Keep in mind this rule is there only for real shared libraries that are
> >>>>> loaded by the the system loader.
> >>>>> 
> >>>>> however it is waived for 'modules' that are opened dynamically but are
> >>>>> private to the application.
> >>>>> 
> >>>>>> I would like to change mountd as per the patch below to use the ".0" file.
> >>>>>> I believe this will not break any installation as the ".so" is installed as a
> >>>>>> symlink to the ".0" (or maybe ".0.0.0").
> >>>>>> 
> >>>>>> Would this be acceptable?
> >>>>> 
> >>>>> It looks to me like this is an internal module for mountd that is not
> >>>>> for use by other apps (which is why it is not versioned and can be
> >>>>> changed at will as it is deployed at the same time mountd is ?
> >>>> 
> >>>> The plug-in API is versioned internally, but maybe I got that wrong, and should remove the API version field in favor of having consumers load via a specific .so number.
> >>> 
> >>> The problem I see with using the internal versioning is that if the version
> >>> is wrong, mountd fails to provide the required service.
> >>> So while I don't object to storing the version and performing the test, we
> >>> should design work-flows so that the test can only fail if there is a serious
> >>> configuration error, not just during a software upgrade.
> >>> 
> >>>> 
> >>>>> Or am I wrong here ?
> >>>>> 
> >>>>> If I am not wrong I would be against this change personally and would
> >>>>> rather move the .so file in a private library dir (if it is not already
> >>>>> there) to make it clear it is a private module.
> >>>> 
> >>>> rpc.mountd is the only user currently, but it’s not necessarily private to mountd.  A generic storage manager tool might use it to resolve NFS and FedFS referrals for display, for example.  We could add plug-in API functions for creating and removing referrals to enable generic tools to perform these operations.
> >>> 
> >>> This is the answer I was looking for to the question I asked earlier - thanks.
> >>> (So this is not an 'intimate library' to use Simo's term - it is truly a
> >>> shared library).
> >>> 
> >>> If, one day, an incompatible ABI change was needed then we could have an
> >>> rpc.mountd installed  (or still running) which requires one ABI, and a
> >>> generic storage manager tool which requires the other.
> >>> So we really need them to be stored in two different files.
> >>> e.g. libnfsjunct.so.0 and libnfsjunct.so.1
> >> 
> >> I was hoping this would never happen.  One plug-in library should be able to serve mountd or any other tool that might need to play with junctions.
> > 
> > Certainly that is the hope.  I think everyone who writes a shared library
> > hopes they will get it right first time, and that if a change is ever needed
> > then all users can be upgraded simultaneously.
> > 
> > $ ls -l /lib64/lib*.so.1 | grep -c '^-'
> > 4
> > $ ls -l /lib64/lib*.so.1.* | grep -c '^-'
> > 17
> > $ ls -l /lib64/lib*.so.[2-9]* | grep -c '^-'
> > 20
> > 
> > That seems to happen often, but not always.  That is why we have shared
> > library versioning.
> > 
> >> 
> >> Only a crazy developer like me would ever need to have more than one library version at a time, and even then, it’s pretty simple to build what I need and reinstall, rather than having more than one installed at a time.
> >> 
> >>> To put it another way... libnfsjunct really is a shared library.
> >>> The *only* reason that rpc.mountd treats it differently to other shared
> >>> libraries is so that it can fail gracefully if the library isn't available
> >>> (thus removing hard dependencies) - a difference that I am very comfortable
> >>> with.
> >>> In every other way it should be treated like a shared library
> >>> - it should live in the standard /lib64 or whatever
> >>> - each application determines at compile-time what version it needs and finds
> >>>  it by appending the version number to the base file name
> >>> - the "libfoo.so" file should live in the "-devel" package along with the
> >>>  include file(s)
> >>> 
> >>> 
> >>> So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
> >>> use a library name provided by the include file
> >> 
> >> I’m dense, I still don’t see why this makes a difference.  I’ll admit that linker fu is something I’ve left to others, so don’t be afraid to spell it out slowly for me.
> > 
> > I'll try (might make sure I understand it too).
> > The following is based in part on section 3.1.1 of
> > http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
> > 
> > A shared library (like a cat) has three different names.
> > 
> > 1/ The file name.  This is normally /$LIBDIR/libFOO.so.maj.min.release
> >  (e.g. /usr/lib/libnfsjunct.so.0.0.0), though it can be almost whatever you
> >  like.   It is used by installers to install the library, and by ldconfig.
> >  ldconfig only wants it to start "lib" or "ld-" and to have ".so" somewhere
> >  in the name.
> > 
> > 2/ The "soname".  This is /$LIBDIR/libFOO.so.maj (i.e. only major number).
> >   ldconfig will create a symlink from this name to the "most recent" library
> >   found with that SONAME (a field in the shared library:
> >         objdump -x $LIBRARY | grep SONAME
> >   ).
> >   An application which needs to be linked will contain the "soname" of each
> >   library that it wants to use. "ldd" lists these and the matching filename
> >   for each.  ld.so effective calls "dlopen" on each "soname".
> > 
> > 3/ The "linker name".  This is the name that is used when you compile code.
> >   You typically specify "-lFOO" and the linker interprets that at
> >   "$LIBPATH/libFOO.so" and finds a shared library.  It extracts the SONAME
> >   from this library and stores that in that generated binary.
> >   Naturally the library version found at the "linker name" must match the
> >   include files describing data structures etc in the library.
> > 
> > To follow this pattern as closely as possible, and yet allow rpc.mountd to
> > use dlopen() to load the library:
> > - the "soname" should be passed to dlopen(). (That is what ld.so does)
> > - that name should be determined from the compile-time environment. (that is
> >   what 'ld' does).
> > 
> > i.e. we should pass "libnfsjunct.so.0" to dlopen() (if the current
> > fedfs-utils provides the compile-time environment).  We could determine that
> > string with a little script which runs
> > 
> >   objdump -x /lib64/libnfsjunct.so | sed -n -e 's/^ *SONAME *//p'
> > 
> > or we could simply keep it in the include file (which must be in-sync with
> > the .so).
> > 
> > Doing this
> > 1/ ensures that we have the full flexibility of shared libraries should we
> >    ever need that.
> > 2/ makes the nfsjunct library look just like any other shared library and so
> >    avoids confusion for package checkers.
> > 
> > Does that clarify at all?
> 
> Thank you Neil, it’s coming into focus for me.
> 
> We had some conversation about this at Connectathon last week. It seems like a better design would look like:
> 
>   o  A separate directory under /usr/lib{64} where fedfs-utils would install its plug-ins

While I don't object to this I wonder if it is worth the effort.
Using a subdirectory would require rpc.mountd to know exactly what the full
path was, and so would need to know if "64" was needed etc.
 dlopen("fedfs-plugin/libfoo.so.1")
will not follow the standard search path (no search happens at all if a '/'
is present), and
 dlopen("libfoo.so.1")
does not search subdirectories.

When I look in /lib64 on my machine I find, for example

libnss_compat-2.18.so  libnss_files.so.2          libnss_mdns6_minimal.so.2
libnss_compat.so.2     libnss_hesiod-2.18.so      libnss_mdns_minimal.so.2
libnss_db-2.18.so      libnss_hesiod.so.2         libnss_nis-2.18.so
libnss_db.so.2         libnss_mdns.so.2           libnss_nis.so.2
libnss_dns-2.18.so     libnss_mdns4.so.2          libnss_nisplus-2.18.so
libnss_dns.so.2        libnss_mdns4_minimal.so.2  libnss_nisplus.so.2
libnss_files-2.18.so   libnss_mdns6.so.2

which are all 'nss' plugins which a dlopen()ed by nsswitch.  There is also
 libdevmapper-event-*.so*
which are plugins loaded as needed by dmeventd.  So there is clear precedent
for pluggins living directly in /lib64 (or similar).

There are a few directories in /lib64:

32/.  ast/.  device-mapper/.  engines/.  ksh/.  multipath/.  security/.


Of these only 32, ast, and ksh (which is a symlink to ast) contain files with
"soname" names.

/usr/lib contains a few more directories with soname files:
 sane sasl2 qtcreator
being the largest.

So there is also some precedent for putting plugins in sub-directories.

I had a look at the code for sane, and it duplicates the searching of
LD_LIBRARY_PATH (if set) from ld.so, and requires 'configure' to work out
the correct libdir, to which it appends "/sane".
It looks like a lot of complexity that I would rather avoid myself....



> 
>   o  Plug-in consumers would dlopen() via the plug-in library's soname to guarantee ABI compatibility
> 
>   o  The API version field would be deprecated
> 
>   o  We didn’t discuss how consumers discover the plug-in soname, but if the API is defined in the header and the soname has to match, maybe that’s the way to go
> 
> I don’t think any of these changes would alter the “loose-ness” of current coupling between rpc.mountd and the plug-in library (to address Steve’s concern), but they would make a better guarantee that mountd was loading the correct plug-in library version.

All the rest I completely agree with.

> 
> I’m not sure exactly how to get from point A to point B. Probably fedfs-utils would have to package the plug-in library in the old and new places until all distributed versions of mountd was changed to find the plug-ins in the right place. That would have to be the case to allow nfs-utils downgrades for a particular distribution.
> 

One option would before the next fedfs release to update the major version of
libnfsjunct to '1' and to discard the API version field and include the
soname in the include file.

Then nfs-utils can determine at build time whether .0 or .1 is present
(probably via some #define in the include file) and load the appropriate one.
Then distros can install the .0 shared library where it is expected, and
the .1 shared library where that is expected.
There would be no need to install the same version at two different locations.
(Distros are already, presumably, quite capable of install multiple versions
of shared libraries).

It would require having two source packages for fedfs, so maybe it would end
up a bit awkward ... not sure.


Thanks,
NeilBrown

> 
> 
> 
> > 
> > Thanks,
> > NeilBrown
> > 
> > 
> >>> 
> >>> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> >>> index ca35de28847a..1a8c20492869 100644
> >>> --- a/utils/mountd/cache.c
> >>> +++ b/utils/mountd/cache.c
> >>> @@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
> >>> 	struct link_map *map;
> >>> 	void *handle;
> >>> 
> >>> -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
> >>> +#ifdef JP_LIB_NAME
> >>> +	handle = dlopen(JP_LIB_NAME, RTLD_NOW);
> >>> +#else
> >>> +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
> >>> +#endif
> >>> 	if (handle == NULL) {
> >>> 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
> >>> 		return NULL;
> >> 
> >> --
> >> Chuck Lever
> >> chuck[dot]lever[at]oracle[dot]com
> >> 
> >> 
> > 
> 
> --
> Chuck Lever
> chuck[dot]lever[at]oracle[dot]com
> 
> 


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-02-26 22:58     ` NeilBrown
  2014-02-27 16:57       ` Chuck Lever
@ 2014-03-04 18:35       ` Chuck Lever
  2014-03-05  3:45         ` NeilBrown
  1 sibling, 1 reply; 21+ messages in thread
From: Chuck Lever @ 2014-03-04 18:35 UTC (permalink / raw)
  To: Neil Brown; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List


On Feb 26, 2014, at 5:58 PM, NeilBrown <neilb@suse.de> wrote:

[ … rationale removed … ]

> So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
> use a library name provided by the include file
> 
> Thanks,
> NeilBrown
> 
> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> index ca35de28847a..1a8c20492869 100644
> --- a/utils/mountd/cache.c
> +++ b/utils/mountd/cache.c
> @@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
> 	struct link_map *map;
> 	void *handle;
> 
> -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
> +#ifdef JP_LIB_NAME
> +	handle = dlopen(JP_LIB_NAME, RTLD_NOW);

What I can do now for fedfs-utils 0.10.1 is add a macro to the header file that defines the library name. I'd like to go with

#define JP_NFSPLUGIN_SONAME “libnfsjunct.so.0”

unless there are objections.

The mountd patch could also remove the API version check in invoke_junction_ops() when this macro is present.

> +#else
> +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
> +#endif
> 	if (handle == NULL) {
> 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
> 		return NULL;

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0
  2014-03-04 18:35       ` Chuck Lever
@ 2014-03-05  3:45         ` NeilBrown
  2014-03-05  4:07           ` [PATCH: nfs-utils] mountd: use SONAME fir libnfsjunct when loading with dlopen NeilBrown
  0 siblings, 1 reply; 21+ messages in thread
From: NeilBrown @ 2014-03-05  3:45 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Simo Sorce, Steve Dickson, Linux NFS Mailing List

[-- Attachment #1: Type: text/plain, Size: 1516 bytes --]

On Tue, 4 Mar 2014 13:35:09 -0500 Chuck Lever <chuck.lever@oracle.com> wrote:

> 
> On Feb 26, 2014, at 5:58 PM, NeilBrown <neilb@suse.de> wrote:
> 
> [ … rationale removed … ]
> 
> > So rather than dlopening "libnfsjunct.so.0" rpc.mountd should probably
> > use a library name provided by the include file
> > 
> > Thanks,
> > NeilBrown
> > 
> > diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> > index ca35de28847a..1a8c20492869 100644
> > --- a/utils/mountd/cache.c
> > +++ b/utils/mountd/cache.c
> > @@ -1139,7 +1139,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
> > 	struct link_map *map;
> > 	void *handle;
> > 
> > -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
> > +#ifdef JP_LIB_NAME
> > +	handle = dlopen(JP_LIB_NAME, RTLD_NOW);
> 
> What I can do now for fedfs-utils 0.10.1 is add a macro to the header file that defines the library name. I'd like to go with
> 
> #define JP_NFSPLUGIN_SONAME “libnfsjunct.so.0”
> 
> unless there are objections.

Perfectly happy with that, thanks.

> 
> The mountd patch could also remove the API version check in invoke_junction_ops() when this macro is present.

I'll send a patch to Steve.

Thanks,
NeilBrown

> 
> > +#else
> > +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
> > +#endif
> > 	if (handle == NULL) {
> > 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
> > 		return NULL;
> 
> --
> Chuck Lever
> chuck[dot]lever[at]oracle[dot]com
> 
> 


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* [PATCH: nfs-utils] mountd: use SONAME fir libnfsjunct when loading with dlopen.
  2014-03-05  3:45         ` NeilBrown
@ 2014-03-05  4:07           ` NeilBrown
  2014-03-11 18:19             ` Steve Dickson
  0 siblings, 1 reply; 21+ messages in thread
From: NeilBrown @ 2014-03-05  4:07 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Chuck Lever, Simo Sorce, Linux NFS Mailing List

[-- Attachment #1: Type: text/plain, Size: 1960 bytes --]



The standard for loading shared libraries is to identify them by their
"soname" (Which "objdump -x $BINARY | grep SONAME" will report).
However mountd currently loads using the "linker name" which should only
be used when building new code.

Future releases of fedfs-utils will define the soname in the include
file, so if that is defined, use it.  If not, use the soname of the
first version: "libnfsjunct.so.0".

This is a slight behavioural change.  However all distros known to
package fedfs-utils will install "libnfsjunct.so.0" whenever they
install the old name of "libnfsjunct.so", and "make install" will
install both.  So it should not be a noticeable change.

Also only test the JP_API_VERSION if it is defined.  As the version is
embedded in the soname, a secondary test is not needed.

Cc: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: NeilBrown <neilb@suse.de>

diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
index ca35de28847a..9a1bb2767ac2 100644
--- a/utils/mountd/cache.c
+++ b/utils/mountd/cache.c
@@ -1087,12 +1087,13 @@ static struct exportent *invoke_junction_ops(void *handle, char *dom,
 			__func__, error);
 		return NULL;
 	}
+#ifdef JP_API_VERSION
 	if (ops->jp_api_version != JP_API_VERSION) {
 		xlog(D_GENERAL, "%s: unrecognized junction API version: %u",
 			__func__, ops->jp_api_version);
 		return NULL;
 	}
-
+#endif
 	status = ops->jp_init(false);
 	if (status != JP_OK) {
 		xlog(D_GENERAL, "%s: failed to resolve %s: %s",
@@ -1139,7 +1140,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
 	struct link_map *map;
 	void *handle;
 
-	handle = dlopen("libnfsjunct.so", RTLD_NOW);
+#ifdef JP_NFSPLUGIN_SONAME
+	handle = dlopen(JP_NFSPLUGIN_SONAME, RTLD_NOW);
+#else
+	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
+#endif
 	if (handle == NULL) {
 		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
 		return NULL;

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: [PATCH: nfs-utils] mountd: use SONAME fir libnfsjunct when loading with dlopen.
  2014-03-05  4:07           ` [PATCH: nfs-utils] mountd: use SONAME fir libnfsjunct when loading with dlopen NeilBrown
@ 2014-03-11 18:19             ` Steve Dickson
  0 siblings, 0 replies; 21+ messages in thread
From: Steve Dickson @ 2014-03-11 18:19 UTC (permalink / raw)
  To: NeilBrown; +Cc: Chuck Lever, Simo Sorce, Linux NFS Mailing List



On 03/04/2014 11:07 PM, NeilBrown wrote:
> 
> 
> The standard for loading shared libraries is to identify them by their
> "soname" (Which "objdump -x $BINARY | grep SONAME" will report).
> However mountd currently loads using the "linker name" which should only
> be used when building new code.
> 
> Future releases of fedfs-utils will define the soname in the include
> file, so if that is defined, use it.  If not, use the soname of the
> first version: "libnfsjunct.so.0".
> 
> This is a slight behavioural change.  However all distros known to
> package fedfs-utils will install "libnfsjunct.so.0" whenever they
> install the old name of "libnfsjunct.so", and "make install" will
> install both.  So it should not be a noticeable change.
> 
> Also only test the JP_API_VERSION if it is defined.  As the version is
> embedded in the soname, a secondary test is not needed.
> 
> Cc: Chuck Lever <chuck.lever@oracle.com>
> Signed-off-by: NeilBrown <neilb@suse.de>
Committed... 

steved.
> 
> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> index ca35de28847a..9a1bb2767ac2 100644
> --- a/utils/mountd/cache.c
> +++ b/utils/mountd/cache.c
> @@ -1087,12 +1087,13 @@ static struct exportent *invoke_junction_ops(void *handle, char *dom,
>  			__func__, error);
>  		return NULL;
>  	}
> +#ifdef JP_API_VERSION
>  	if (ops->jp_api_version != JP_API_VERSION) {
>  		xlog(D_GENERAL, "%s: unrecognized junction API version: %u",
>  			__func__, ops->jp_api_version);
>  		return NULL;
>  	}
> -
> +#endif
>  	status = ops->jp_init(false);
>  	if (status != JP_OK) {
>  		xlog(D_GENERAL, "%s: failed to resolve %s: %s",
> @@ -1139,7 +1140,11 @@ static struct exportent *lookup_junction(char *dom, const char *pathname,
>  	struct link_map *map;
>  	void *handle;
>  
> -	handle = dlopen("libnfsjunct.so", RTLD_NOW);
> +#ifdef JP_NFSPLUGIN_SONAME
> +	handle = dlopen(JP_NFSPLUGIN_SONAME, RTLD_NOW);
> +#else
> +	handle = dlopen("libnfsjunct.so.0", RTLD_NOW);
> +#endif
>  	if (handle == NULL) {
>  		xlog(D_GENERAL, "%s: dlopen: %s", __func__, dlerror());
>  		return NULL;
> 

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

end of thread, other threads:[~2014-03-11 18:19 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-26  5:16 What does rpc.mountd dlopen() libnfsjunct.so rather than libnfsjunct.so.0 NeilBrown
2014-02-26  6:06 ` Chuck Lever
2014-02-26  7:01   ` NeilBrown
2014-02-26 14:40     ` Simo Sorce
2014-02-26 14:51     ` Chuck Lever
2014-02-26 14:39 ` Simo Sorce
2014-02-26 16:02   ` Chuck Lever
2014-02-26 16:25     ` Simo Sorce
2014-02-26 16:54       ` Chuck Lever
2014-02-26 17:10         ` Simo Sorce
2014-03-03 17:30           ` Steve Dickson
2014-03-03 17:23         ` Steve Dickson
2014-02-26 22:58     ` NeilBrown
2014-02-27 16:57       ` Chuck Lever
2014-03-03  3:21         ` NeilBrown
2014-03-03 17:45           ` Chuck Lever
2014-03-03 22:42             ` NeilBrown
2014-03-04 18:35       ` Chuck Lever
2014-03-05  3:45         ` NeilBrown
2014-03-05  4:07           ` [PATCH: nfs-utils] mountd: use SONAME fir libnfsjunct when loading with dlopen NeilBrown
2014-03-11 18:19             ` Steve Dickson

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.