From: Chen Gang <gang.chen.5i5j@gmail.com>
To: amodra@gmail.com, hjl.tools@gmail.com, nickc@redhat.com
Cc: binutils@sourceware.org, gdb-patches@sourceware.org
Subject: [PATCH] bfd/coff-ppc.c: Be sure of zero terminated string after copy from '_n_name'
Date: Wed, 06 Aug 2014 15:52:00 -0000 [thread overview]
Message-ID: <53E24F3F.2050701@gmail.com> (raw)
'_n_name' may not be zero terminated string, and it may copy to 'name'
or 'my_name' which are assumed that must be zero terminated string. So
during copy operation, need be sure of them zero terminated.
Also remove the usless asignment to 'name'.
2014-08-06 Chen Gang <gang.chen.5i5j@gmail.com>
* coff-ppc.c (coff_ppc_relocate_section): Be sure of zero
terminatedstring after copy from '_n_name'.
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
bfd/coff-ppc.c | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/bfd/coff-ppc.c b/bfd/coff-ppc.c
index 3c39afa..318a220 100644
--- a/bfd/coff-ppc.c
+++ b/bfd/coff-ppc.c
@@ -1073,10 +1073,11 @@ coff_ppc_relocate_section (bfd *output_bfd,
{
/* It is a file local symbol. */
int *local_toc_table;
- const char *name;
+ char name[SYMNMLEN + 1];
sym = syms + symndx;
- name = sym->_n._n_name;
+ strncpy (name, sym->_n._n_name, SYMNMLEN);
+ name[SYMNMLEN] = '\0';
local_toc_table = obj_coff_local_toc_table(input_bfd);
our_toc_offset = local_toc_table[symndx];
@@ -1225,9 +1226,14 @@ coff_ppc_relocate_section (bfd *output_bfd,
case IMAGE_REL_PPC_ABSOLUTE:
{
const char *my_name;
+ char buf[SYMNMLEN + 1];
if (h == 0)
- my_name = (syms+symndx)->_n._n_name;
+ {
+ strncpy (buf, (syms+symndx)->_n._n_name, SYMNMLEN);
+ buf[SYMNMLEN] = '\0';
+ my_name = buf;
+ }
else
my_name = h->root.root.root.string;
@@ -1288,11 +1294,8 @@ coff_ppc_relocate_section (bfd *output_bfd,
}
if (h == 0)
- {
/* It is a file local symbol. */
sym = syms + symndx;
- name = sym->_n._n_name;
- }
else
{
char *target = 0;
--
1.7.11.7
next reply other threads:[~2014-08-06 15:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-06 15:52 Chen Gang [this message]
2014-08-07 1:52 ` Alan Modra
2014-08-07 4:56 ` Chen Gang
2014-08-07 6:15 ` Alan Modra
2014-08-07 9:06 ` Chen Gang
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=53E24F3F.2050701@gmail.com \
--to=gang.chen.5i5j@gmail.com \
--cc=amodra@gmail.com \
--cc=binutils@sourceware.org \
--cc=gdb-patches@sourceware.org \
--cc=hjl.tools@gmail.com \
--cc=nickc@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox