bfd/coff-ppc.c: Be sure of zero terminated string after copy from '_n_name'

Message ID 53E24F3F.2050701@gmail.com
State Committed
Headers

Commit Message

Chen Gang Aug. 6, 2014, 3:52 p.m. UTC
  '_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(-)
  

Comments

Alan Modra Aug. 7, 2014, 1:51 a.m. UTC | #1
On Wed, Aug 06, 2014 at 11:52:31PM +0800, Chen Gang wrote:
> '_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'.

This is OK.
  
Chen Gang Aug. 7, 2014, 4:56 a.m. UTC | #2
On 08/07/2014 09:51 AM, Alan Modra wrote:
> On Wed, Aug 06, 2014 at 11:52:31PM +0800, Chen Gang wrote:
>> '_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'.
> 
> This is OK.
> 

Excuse me, my English is not quite well, I don't quite understand your
meaning, I guess your meaning is: "This patch is OK to you, if no any
objections next, it can be applied by the related maintainers".

If what I guess is incorrect, please let me know.

Thanks.
  
Alan Modra Aug. 7, 2014, 6:15 a.m. UTC | #3
On Thu, Aug 07, 2014 at 12:56:34PM +0800, Chen Gang wrote:
> On 08/07/2014 09:51 AM, Alan Modra wrote:
> > On Wed, Aug 06, 2014 at 11:52:31PM +0800, Chen Gang wrote:
> >> '_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'.
> > 
> > This is OK.
> > 
> 
> Excuse me, my English is not quite well, I don't quite understand your
> meaning, I guess your meaning is: "This patch is OK to you, if no any
> objections next, it can be applied by the related maintainers".

I meant, the patch is OK for you to commit, but I guess you don't have
commit rights.  I've committed the patch for you.  Thanks!
  
Chen Gang Aug. 7, 2014, 9:06 a.m. UTC | #4
On 08/07/2014 02:15 PM, Alan Modra wrote:
> On Thu, Aug 07, 2014 at 12:56:34PM +0800, Chen Gang wrote:
>> On 08/07/2014 09:51 AM, Alan Modra wrote:
>>> On Wed, Aug 06, 2014 at 11:52:31PM +0800, Chen Gang wrote:
>>>> '_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'.
>>>
>>> This is OK.
>>>
>>
>> Excuse me, my English is not quite well, I don't quite understand your
>> meaning, I guess your meaning is: "This patch is OK to you, if no any
>> objections next, it can be applied by the related maintainers".
> 
> I meant, the patch is OK for you to commit, but I guess you don't have
> commit rights.  I've committed the patch for you.  Thanks!
> 

OK, thank you for your explanation and your work. And I shall continue
to try to send another patch for binutils within this month.

Thanks.
  

Patch

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;