This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 4/5] range stepping: gdbserver (x86 GNU/Linux)


On 05/23/2013 06:44 PM, Pedro Alves wrote:

>> I don't know much about gdbserver, but reading this made me wonder if it
>> needs to do any kind of error-checking on its input.
> 
> Yeah, it doesn't tend to do that much validation.  Perhaps we should.
> 
>> Like - what if the wrong format is sent, 
> 
> Crash in many different places most likely.  When looking at
> validation, I'm more looking at making it easier for possible
> future packet extensions not break older gdbserver.
> 
> In this case, I do believe this bit:
> 
> +	  p1 = strchr (p, ':');
> +	  decode_address (&resume_info[i].step_range_end, p, p1 - p);
> 
> should not expect the ':' to be there.  An action
> without a ptid is valid. I means it applies to all and
> is handled as the default action, further below:
> 
>       if (p[0] == 0)
> 	{
> 	  resume_info[i].thread = minus_one_ptid;
> 	  default_action = resume_info[i];
> 
> 	  /* Note: we don't increment i here, we'll overwrite this entry
> 	     the next time through.  */
> 	}
>       else if (p[0] == ':')
> 
> I'll fix it in a follow up.

Fixed now:

http://sourceware.org/ml/gdb-patches/2013-05/msg00923.html

Thanks!

-- 
Pedro Alves


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]