[yocto] [EDT][prelink-cross][PATCH 1/1] bugifx for soname mismatch

Mark Hatle mark.hatle at windriver.com
Fri Sep 11 06:43:33 PDT 2015


I believe the change is incorrect.  The soname must match the required soname.

So if I am understanding this properly:

1. Create a library (libB.so) with an SONAME of 'libB.so'.
2. Link app to libB.so
3. Create a library (libA.so) with an SONAME of 'libA.so'.
4. remove libB.so ; ln -sf libA.so libB.so

prelink sees that the library SONAME isn't consistent with the file on the disk
and fails.  This would be the correct behavior.

When using ldconfig (ld.so.cache) then system will capture the sonames and
filenames.  In the case above the loader may fail because it can't find the
soname of libB.so.  W/o the ld.so.cache, the system will fall back to the disk
and load the file of that name -- however, this is an undefined situation and it
would be within reason for the rtld to open the library see it doesn't have the
required soname and error/unload that particular file.

--Mark

On 5/18/15 12:02 AM, Maninder Singh wrote:
> EP-F6AA0618C49C4AEDA73BFF1B39950BAB
> 
> Hi,
> 
> Subject: [PATCH 1/1] bugifx for soname mismatch
> 
> As per my understanding, this issue needs to be fixed in loader, But if can not be fixed 
> then there is work around for following issue.
> 
> Issue case:-
> 1. Create a library libB.so having soname libB.so
> 2. At compile time we linked libB.so to binary, and thus in NEEDED section it will show libB.so
> 	gcc test.c -o test -lB
> 3. Now create a softlink as below:-
> 	ln -sf libA.so libB.so
> 	(libB.so -> libA.so)
> 4. No when we do prelink, Library list section '.gnu.liblist' contains  entries as below:
> 	0: libA.so              2014-12-02T04:28:40 0x95c929e5 0       0 //SONAME
> 5. And at run time prelink will be failed because of dependency mismatch due to soname issue.
> 	expect libA.so, found /lib/libB.so in dependency order
> 	prelink checking: failed
> 	
> Issue is prelink fills soname in gnu.liblist section but loader uses filename not soname.So we
> created a workaround for this issue.
> 
> To use filename instead of soname in gnu.liblist
> Usage :./prelink -s or ./prelink --ignore-soname
> 
> 
> Signed-off-by: Maninder Singh <maninder1.s at samsung.com>
> Signed-off-by: Vaneet Narang <v.narang at samsung.com>
> Reviewed-by: Ajeet Yadav <ajeet.y at samsung.com>
> Reviewed-by: Geon-ho Kim <gh007.kim at samsung.com>
> ---
>  src/get.c     |    2 ++
>  src/main.c    |    5 +++++
>  src/prelink.h |    1 +
>  3 files changed, 8 insertions(+), 0 deletions(-)
> 
> diff --git a/src/get.c b/src/get.c
> index ffefe73..bb01331 100644
> --- a/src/get.c
> +++ b/src/get.c
> @@ -182,6 +182,8 @@ prelink_record_relocations (struct prelink_info *info, FILE *f,
>  		}
>  	    }
>  	}
> +      if(ignore_soname) 
> +          soname = strrchr(filename, '/') + 1;
>  
>        if (! tdeps)
>  	deps[0].ent = info->ent;
> diff --git a/src/main.c b/src/main.c
> index 15c1d53..5891dbc 100644
> --- a/src/main.c
> +++ b/src/main.c
> @@ -61,6 +61,7 @@ const char *prelink_cache = PRELINK_CACHE;
>  const char *undo_output;
>  int noreexecinit;
>  time_t initctime;
> +int ignore_soname = 0;
>  
>  const char *argp_program_version = PRELINK_PROG PKGVERSION " 1.0";
>  
> @@ -123,6 +124,7 @@ static struct argp_option options[] = {
>    {"rtld",		OPT_RTLD, "RTLD", OPTION_HIDDEN, "" },
>    {"init",		'i', 0, 0,  "Do not re-execute init" },
>    {"allow-textrel",	OPT_ALLOW_TEXTREL, 0, 0, "Allow text relocations even on architectures where they may not work" },
> +  {"ignore-soname",	's', 0, 0,  "To use filename instead of soname in gnu.liblist" },
>    { 0 }
>  };
>  
> @@ -250,6 +252,9 @@ parse_opt (int key, char *arg, struct argp_state *state)
>      case OPT_ALLOW_TEXTREL:
>        allow_bad_textrel = 1;
>        break;
> +    case 's':
> +      ignore_soname = 1;
> +      break; 
>      default:
>        return ARGP_ERR_UNKNOWN;
>      }
> diff --git a/src/prelink.h b/src/prelink.h
> index 66aba99..778e67a 100644
> --- a/src/prelink.h
> +++ b/src/prelink.h
> @@ -597,6 +597,7 @@ extern enum verify_method_t verify_method;
>  extern int quick;
>  extern long long seed;
>  extern GElf_Addr mmap_reg_start, mmap_reg_end, layout_page_size;
> +extern int ignore_soname;
>  
>  extern const char *sysroot;
>  
> 




More information about the yocto mailing list