From: Mark Hatle <mark.hatle@windriver.com>
To: <maninder1.s@samsung.com>
Cc: Vaneet Narang <v.narang@samsung.com>,
"yocto@yoctoproject.org" <yocto@yoctoproject.org>,
PANKAJ MISHRA <pankaj.m@samsung.com>
Subject: Re: [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix
Date: Mon, 9 Nov 2015 08:43:06 -0600 [thread overview]
Message-ID: <5640B0FA.7030703@windriver.com> (raw)
In-Reply-To: <1576099213.193511446895444014.JavaMail.weblogic@ep2mlwas06c>
On 11/7/15 5:24 AM, Maninder Singh wrote:
> Hi,
> Ping....
I'd gotten a msg after this to hold off and wait for an update. Is this the
updated version of the fix?
--Mark
>> This patch do following things:-
>> 1. Fixes bug of adding preloaded libs in search scope of dependent
>> libraries which results in search scope of few symbols becomes
>> same for executable and library, so conflict doesn't occur for
>> those symbols and hence resulted in less number of conflicts.
>> 2. Reduce code redundancy.
>> 3. Buffer Overflow fix.
>>
>> Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
>> Signed-off-by: Vaneet Narang <v.narang@samsung.com>
>> Reviewed-by: Doha Hwang <doha.hwang@samsung.com>
>> ---
>> trunk/src/rtld/rtld.c | 27 ++++++++++++++++-----------
>> 1 files changed, 16 insertions(+), 11 deletions(-)
>>
>> diff --git a/trunk/src/rtld/rtld.c b/trunk/src/rtld/rtld.c
>> index 50461b6..8af5052 100644
>> --- a/trunk/src/rtld/rtld.c
>> +++ b/trunk/src/rtld/rtld.c
>> @@ -606,7 +606,7 @@ load_dsos (DSO *dso, int host_paths)
>> {
>> struct dso_list *dso_list, *dso_list_tail, *cur_dso_ent, *new_dso_ent;
>> struct stat64 st;
>> - int total_preload = 0;
>> + int total_preload = 0, temp_total_preload = 0;
>> char * libname[MAX_PRELOADED_LIBS] = {NULL};
>>
>> /* Assume it's static unless we find DT_NEEDED entries */
>> @@ -632,19 +632,19 @@ load_dsos (DSO *dso, int host_paths)
>>
>> if(dso->ehdr.e_type == ET_EXEC && ld_preload) {
>> char *next_lib = ld_preload;
>> - libname[total_preload] = ld_preload;
>> - total_preload++;
>> - next_lib=strchr(ld_preload,':');
>> - while(next_lib!=NULL){
>> - *next_lib = '\0';
>> - next_lib++;
>> - libname[total_preload] = next_lib;
>> - total_preload++;
>> - next_lib=strchr(next_lib,':');
>> - }
>> + while(*next_lib != '\0' && (total_preload < MAX_PRELOADED_LIBS)){
>> + libname[total_preload++] = next_lib;
>> + next_lib=strchrnul(next_lib,':');
>> + if(*next_lib == '\0')
>> + break;
>> + *next_lib = '\0';
>> + next_lib++;
>> + }
>> + temp_total_preload = total_preload;
>> }
>> else {
>> total_preload = 0;
>> + temp_total_preload = 0;
>> }
>> while (cur_dso_ent != NULL)
>> {
>> @@ -666,6 +666,11 @@ load_dsos (DSO *dso, int host_paths)
>> {
>> int ndx, maxndx;
>> maxndx = data->d_size / cur_dso->shdr[cur_dso->dynamic].sh_entsize;
>> + if(!(cur_dso->ehdr.e_type == ET_EXEC))
>> + total_preload = 0;
>> + else
>> + total_preload = temp_total_preload;
>> +
>> for (ndx = 0; ndx < maxndx + total_preload; ++ndx)
>> {
>>
>> --
>> 1.7.1
next prev parent reply other threads:[~2015-11-09 14:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-07 11:24 [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix Maninder Singh
2015-11-09 14:43 ` Mark Hatle [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-11-10 1:05 Maninder Singh
2015-09-22 4:59 Maninder Singh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5640B0FA.7030703@windriver.com \
--to=mark.hatle@windriver.com \
--cc=maninder1.s@samsung.com \
--cc=pankaj.m@samsung.com \
--cc=v.narang@samsung.com \
--cc=yocto@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is 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.