Re: [PATCH] PM QoS: Allow parsing of ASCII values

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Mark,

On Thu, Feb 17, 2011 at 09:05:16PM -0800, mark gross wrote:
> On Fri, Feb 18, 2011 at 10:54:56AM +0900, Simon Horman wrote:
> > In "PM QoS: Correct pr_debug() misuse and improve parameter checks"
> > the parsing of the ASCII hex value was tightened. Unfortunately
> > it was tightened to the point where no value is valid.
> 
> How is it of no value?  Can you not sent a 10 char string with a
> zero-byte end of string maker?

My testing indicates that

echo -n "0x12345678" will yield count == 10 in copy_from_user()

that

echo "0x12345678" will yield count == 11 in copy_from_user()

and that in both case strlen() will yeild the same value as count.

> Is expecting the c-string marker in the interface a bad idea that needs
> fixing?

I think that is the crux of the problem from my point of view.
That is, using echo as above there is no '\0' by the time
the string gets to the kernel.

I now see that the following works :-)

echo -ne '0x12345678\0' | dd of=/dev/network_latency

However I wonder if the call to strlen() is safe.
In the case of the following is there any guarantee that
ascii_value is '\0' terminated? Perhaps strnlen() is needed?

echo -n '0x123456789' | dd of=/dev/network_latency

> > Root of the problem seems to lie in wheather the ASCII hex is followed
> > by a '\n' or not. My reading of the documentation is that the '\n' should
> > not be present. However the code previously only accepted that version.
> > The current code accepts neither. My fix is to accept both.
> 
> The documentation says it should be a 10byte string.
> "Alternatively the user mode program could write a hex string for the
> value using 10 char long format e.g. "0x12345678".  This translates to a
> pm_qos_update_request call."
> 
> When I wrote the code I was thinking that a c-string that has a zero
> byte end of string maker.  note: a new line character is not implied
> anywhere.
> 
> However; reading the documentation it is somewhat ambiguous the buffer
> is 10 bytes or 11.
> 
> We should tighten up the Documentation and make the code match it.
> 
> I don't like the 10 or 11 byte buffer logic.  It should be one or the
> other and not include any new line character.
> 
> What do you want the documentation to read?

I would describe the format as

"Alternatively the user mode program could write a hex string for the
value using 11 char long format e.g. "0x12345678\0". Note that the trailing
'\0' needs to be included in the write to the device."

Because to me the existing description implies

	str = "0x12345678";
	write(fd, str, srlen(str));

But the correct code is

	str = "0x12345678";
	write(fd, str, srlen(str) + 1);

To be honest I think that the first code-snippet is more in keeping with
typical C string usage. But to change the code to only accept that would
break compatibility.

_______________________________________________
linux-pm mailing list
linux-pm@xxxxxxxxxxxxxxxxxxxxxxxxxx
https://lists.linux-foundation.org/mailman/listinfo/linux-pm


[Index of Archives]     [Linux ACPI]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [CPU Freq]     [Kernel Newbies]     [Fedora Kernel]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux