diff mbox

kvm tools: Sanitize output characters in serial console

Message ID 1312934218-32666-1-git-send-email-asias.hejun@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Asias He Aug. 9, 2011, 11:56 p.m. UTC
This patch fixes strange characters in serial console.

Before:

[    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
[    1.194000] Non-volatile memory driver v1.3

After:

[    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
[    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
[    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
[    1.309000] Non-volatile memory driver v1.3

Signed-off-by: Asias He <asias.hejun@gmail.com>
---
 tools/kvm/term.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

Comments

Pekka Enberg Aug. 10, 2011, 5:30 a.m. UTC | #1
On 8/10/11 2:56 AM, Asias He wrote:
> This patch fixes strange characters in serial console.
>
> Before:
>
> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
> [    1.194000] Non-volatile memory driver v1.3
>
> After:
>
> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
> [    1.309000] Non-volatile memory driver v1.3
>
> Signed-off-by: Asias He<asias.hejun@gmail.com>
> ---
>   tools/kvm/term.c |    7 +++++--
>   1 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
> index 2a3e1f0..85b41e7 100644
> --- a/tools/kvm/term.c
> +++ b/tools/kvm/term.c
> @@ -5,6 +5,7 @@
>   #include<unistd.h>
>   #include<sys/uio.h>
>   #include<signal.h>
> +#include<ctype.h>
>
>   #include "kvm/read-write.h"
>   #include "kvm/term.h"
> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>   	if (who != active_console)
>   		return -1;
>
> -	while (cnt--)
> -		fprintf(stdout, "%c", *addr++);
> +	while (cnt--) {
> +		if (isascii(*addr))

Do things like backspace still work with this?

> +			fprintf(stdout, "%c", *addr++);
> +	}
>
>   	fflush(stdout);
>   	return cnt;

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Asias He Aug. 10, 2011, 5:43 a.m. UTC | #2
On 08/10/2011 01:30 PM, Pekka Enberg wrote:
> On 8/10/11 2:56 AM, Asias He wrote:
>> This patch fixes strange characters in serial console.
>>
>> Before:
>>
>> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>> [    1.194000] Non-volatile memory driver v1.3
>>
>> After:
>>
>> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>> [    1.309000] Non-volatile memory driver v1.3
>>
>> Signed-off-by: Asias He<asias.hejun@gmail.com>
>> ---
>>   tools/kvm/term.c |    7 +++++--
>>   1 files changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
>> index 2a3e1f0..85b41e7 100644
>> --- a/tools/kvm/term.c
>> +++ b/tools/kvm/term.c
>> @@ -5,6 +5,7 @@
>>   #include<unistd.h>
>>   #include<sys/uio.h>
>>   #include<signal.h>
>> +#include<ctype.h>
>>
>>   #include "kvm/read-write.h"
>>   #include "kvm/term.h"
>> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>>       if (who != active_console)
>>           return -1;
>>
>> -    while (cnt--)
>> -        fprintf(stdout, "%c", *addr++);
>> +    while (cnt--) {
>> +        if (isascii(*addr))
> 
> Do things like backspace still work with this?

Sure. Have a try ;-)

http://en.wikipedia.org/wiki/ASCII

> 
>> +            fprintf(stdout, "%c", *addr++);
>> +    }
>>
>>       fflush(stdout);
>>       return cnt;
> 
>
Pekka Enberg Aug. 10, 2011, 5:55 a.m. UTC | #3
On Wed, Aug 10, 2011 at 8:43 AM, Asias He <asias.hejun@gmail.com> wrote:
> On 08/10/2011 01:30 PM, Pekka Enberg wrote:
>> On 8/10/11 2:56 AM, Asias He wrote:
>>> This patch fixes strange characters in serial console.
>>>
>>> Before:
>>>
>>> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>> [    1.194000] Non-volatile memory driver v1.3
>>>
>>> After:
>>>
>>> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>> [    1.309000] Non-volatile memory driver v1.3
>>>
>>> Signed-off-by: Asias He<asias.hejun@gmail.com>
>>> ---
>>>   tools/kvm/term.c |    7 +++++--
>>>   1 files changed, 5 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
>>> index 2a3e1f0..85b41e7 100644
>>> --- a/tools/kvm/term.c
>>> +++ b/tools/kvm/term.c
>>> @@ -5,6 +5,7 @@
>>>   #include<unistd.h>
>>>   #include<sys/uio.h>
>>>   #include<signal.h>
>>> +#include<ctype.h>
>>>
>>>   #include "kvm/read-write.h"
>>>   #include "kvm/term.h"
>>> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>>>       if (who != active_console)
>>>           return -1;
>>>
>>> -    while (cnt--)
>>> -        fprintf(stdout, "%c", *addr++);
>>> +    while (cnt--) {
>>> +        if (isascii(*addr))
>>
>> Do things like backspace still work with this?
>
> Sure. Have a try ;-)
>
> http://en.wikipedia.org/wiki/ASCII

OK, cool. Do we know what the extra characters are and why the guest
is sending them?
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Asias He Aug. 10, 2011, 6:15 a.m. UTC | #4
On 08/10/2011 01:55 PM, Pekka Enberg wrote:
> On Wed, Aug 10, 2011 at 8:43 AM, Asias He <asias.hejun@gmail.com> wrote:
>> On 08/10/2011 01:30 PM, Pekka Enberg wrote:
>>> On 8/10/11 2:56 AM, Asias He wrote:
>>>> This patch fixes strange characters in serial console.
>>>>
>>>> Before:
>>>>
>>>> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>>> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>>> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>>> [    1.194000] Non-volatile memory driver v1.3
>>>>
>>>> After:
>>>>
>>>> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>>> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>>> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>>> [    1.309000] Non-volatile memory driver v1.3
>>>>
>>>> Signed-off-by: Asias He<asias.hejun@gmail.com>
>>>> ---
>>>>   tools/kvm/term.c |    7 +++++--
>>>>   1 files changed, 5 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
>>>> index 2a3e1f0..85b41e7 100644
>>>> --- a/tools/kvm/term.c
>>>> +++ b/tools/kvm/term.c
>>>> @@ -5,6 +5,7 @@
>>>>   #include<unistd.h>
>>>>   #include<sys/uio.h>
>>>>   #include<signal.h>
>>>> +#include<ctype.h>
>>>>
>>>>   #include "kvm/read-write.h"
>>>>   #include "kvm/term.h"
>>>> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>>>>       if (who != active_console)
>>>>           return -1;
>>>>
>>>> -    while (cnt--)
>>>> -        fprintf(stdout, "%c", *addr++);
>>>> +    while (cnt--) {
>>>> +        if (isascii(*addr))
>>>
>>> Do things like backspace still work with this?
>>
>> Sure. Have a try ;-)
>>
>> http://en.wikipedia.org/wiki/ASCII
> 
> OK, cool. Do we know what the extra characters are and why the guest
> is sending them?
> 


This tells us

        while (cnt--) {
               if (isascii(*addr))
                       fprintf(stdout, "%c", *addr++);
               else
                       fprintf(stdout, "\n---%x---\n", *addr++);
        }

the extra chars is 0xff.

The reason is not understood.
walimis Aug. 10, 2011, 6:53 a.m. UTC | #5
On Wed, Aug 10, 2011 at 02:15:45PM +0800, Asias He wrote:
>On 08/10/2011 01:55 PM, Pekka Enberg wrote:
>> On Wed, Aug 10, 2011 at 8:43 AM, Asias He <asias.hejun@gmail.com> wrote:
>>> On 08/10/2011 01:30 PM, Pekka Enberg wrote:
>>>> On 8/10/11 2:56 AM, Asias He wrote:
>>>>> This patch fixes strange characters in serial console.
>>>>>
>>>>> Before:
>>>>>
>>>>> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>>>> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>>>> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>>>> [    1.194000] Non-volatile memory driver v1.3
>>>>>
>>>>> After:
>>>>>
>>>>> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>>>> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>>>> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>>>> [    1.309000] Non-volatile memory driver v1.3
>>>>>
>>>>> Signed-off-by: Asias He<asias.hejun@gmail.com>
>>>>> ---
>>>>>   tools/kvm/term.c |    7 +++++--
>>>>>   1 files changed, 5 insertions(+), 2 deletions(-)
>>>>>
>>>>> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
>>>>> index 2a3e1f0..85b41e7 100644
>>>>> --- a/tools/kvm/term.c
>>>>> +++ b/tools/kvm/term.c
>>>>> @@ -5,6 +5,7 @@
>>>>>   #include<unistd.h>
>>>>>   #include<sys/uio.h>
>>>>>   #include<signal.h>
>>>>> +#include<ctype.h>
>>>>>
>>>>>   #include "kvm/read-write.h"
>>>>>   #include "kvm/term.h"
>>>>> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>>>>>       if (who != active_console)
>>>>>           return -1;
>>>>>
>>>>> -    while (cnt--)
>>>>> -        fprintf(stdout, "%c", *addr++);
>>>>> +    while (cnt--) {
>>>>> +        if (isascii(*addr))
>>>>
>>>> Do things like backspace still work with this?
>>>
>>> Sure. Have a try ;-)
>>>
>>> http://en.wikipedia.org/wiki/ASCII
>> 
>> OK, cool. Do we know what the extra characters are and why the guest
>> is sending them?
I think the reason is not important here. I use qemu to test
and it also outputs that extra characters. They seem to be outputted by
driver or kernel of guest os.

It's not sane to change the output of guest os. Suppose if we just 
want to see what "cat /dev/urandom" prints, then only 
allow ascii characters to be outputted? I think that's not what we expect.

walimis
>> 
>
>
>This tells us
>
>        while (cnt--) {
>               if (isascii(*addr))
>                       fprintf(stdout, "%c", *addr++);
>               else
>                       fprintf(stdout, "\n---%x---\n", *addr++);
>        }
>
>the extra chars is 0xff.
>
>The reason is not understood.
>
>-- 
>Best Regards,
>Asias He
>--
>To unsubscribe from this list: send the line "unsubscribe kvm" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Sasha Levin Aug. 10, 2011, 7:01 a.m. UTC | #6
On Wed, 2011-08-10 at 14:15 +0800, Asias He wrote:
> On 08/10/2011 01:55 PM, Pekka Enberg wrote:
> > On Wed, Aug 10, 2011 at 8:43 AM, Asias He <asias.hejun@gmail.com> wrote:
> >> On 08/10/2011 01:30 PM, Pekka Enberg wrote:
> >>> On 8/10/11 2:56 AM, Asias He wrote:
> >>>> This patch fixes strange characters in serial console.
> >>>>
> >>>> Before:
> >>>>
> >>>> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> >>>> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
> >>>> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
> >>>> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
> >>>> [    1.194000] Non-volatile memory driver v1.3
> >>>>
> >>>> After:
> >>>>
> >>>> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> >>>> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
> >>>> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
> >>>> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
> >>>> [    1.309000] Non-volatile memory driver v1.3
> >>>>
> >>>> Signed-off-by: Asias He<asias.hejun@gmail.com>
> >>>> ---
> >>>>   tools/kvm/term.c |    7 +++++--
> >>>>   1 files changed, 5 insertions(+), 2 deletions(-)
> >>>>
> >>>> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
> >>>> index 2a3e1f0..85b41e7 100644
> >>>> --- a/tools/kvm/term.c
> >>>> +++ b/tools/kvm/term.c
> >>>> @@ -5,6 +5,7 @@
> >>>>   #include<unistd.h>
> >>>>   #include<sys/uio.h>
> >>>>   #include<signal.h>
> >>>> +#include<ctype.h>
> >>>>
> >>>>   #include "kvm/read-write.h"
> >>>>   #include "kvm/term.h"
> >>>> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
> >>>>       if (who != active_console)
> >>>>           return -1;
> >>>>
> >>>> -    while (cnt--)
> >>>> -        fprintf(stdout, "%c", *addr++);
> >>>> +    while (cnt--) {
> >>>> +        if (isascii(*addr))
> >>>
> >>> Do things like backspace still work with this?
> >>
> >> Sure. Have a try ;-)
> >>
> >> http://en.wikipedia.org/wiki/ASCII
> > 
> > OK, cool. Do we know what the extra characters are and why the guest
> > is sending them?
> > 
> 
> 
> This tells us
> 
>         while (cnt--) {
>                if (isascii(*addr))
>                        fprintf(stdout, "%c", *addr++);
>                else
>                        fprintf(stdout, "\n---%x---\n", *addr++);
>         }
> 
> the extra chars is 0xff.
> 
> The reason is not understood.
> 

They are being printed when the serial device is probed. Can we
mistakenly interpret the probe as a print request?
Amos Jianjun Kong Aug. 10, 2011, 7:22 a.m. UTC | #7
On Wed, Aug 10, 2011 at 2:53 PM, walimis <walimisdev@gmail.com> wrote:
> On Wed, Aug 10, 2011 at 02:15:45PM +0800, Asias He wrote:
>>On 08/10/2011 01:55 PM, Pekka Enberg wrote:
>>> On Wed, Aug 10, 2011 at 8:43 AM, Asias He <asias.hejun@gmail.com> wrote:
>>>> On 08/10/2011 01:30 PM, Pekka Enberg wrote:
>>>>> On 8/10/11 2:56 AM, Asias He wrote:
>>>>>> This patch fixes strange characters in serial console.

...
>>> OK, cool. Do we know what the extra characters are and why the guest
>>> is sending them?
> I think the reason is not important here. I use qemu to test
> and it also outputs that extra characters. They seem to be outputted by
> driver or kernel of guest os.
>
> It's not sane to change the output of guest os. Suppose if we just
> want to see what "cat /dev/urandom" prints, then only
> allow ascii characters to be outputted? I think that's not what we expect.

So we don't need this patch, otherwise, the possible error would be hidden.
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Asias He Aug. 10, 2011, 8:31 a.m. UTC | #8
On 08/10/2011 02:53 PM, walimis wrote:
> On Wed, Aug 10, 2011 at 02:15:45PM +0800, Asias He wrote:
>> On 08/10/2011 01:55 PM, Pekka Enberg wrote:
>>> On Wed, Aug 10, 2011 at 8:43 AM, Asias He <asias.hejun@gmail.com> wrote:
>>>> On 08/10/2011 01:30 PM, Pekka Enberg wrote:
>>>>> On 8/10/11 2:56 AM, Asias He wrote:
>>>>>> This patch fixes strange characters in serial console.
>>>>>>
>>>>>> Before:
>>>>>>
>>>>>> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>>> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>>>>> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>>>>> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>>>>> [    1.194000] Non-volatile memory driver v1.3
>>>>>>
>>>>>> After:
>>>>>>
>>>>>> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
>>>>>> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
>>>>>> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
>>>>>> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
>>>>>> [    1.309000] Non-volatile memory driver v1.3
>>>>>>
>>>>>> Signed-off-by: Asias He<asias.hejun@gmail.com>
>>>>>> ---
>>>>>>   tools/kvm/term.c |    7 +++++--
>>>>>>   1 files changed, 5 insertions(+), 2 deletions(-)
>>>>>>
>>>>>> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
>>>>>> index 2a3e1f0..85b41e7 100644
>>>>>> --- a/tools/kvm/term.c
>>>>>> +++ b/tools/kvm/term.c
>>>>>> @@ -5,6 +5,7 @@
>>>>>>   #include<unistd.h>
>>>>>>   #include<sys/uio.h>
>>>>>>   #include<signal.h>
>>>>>> +#include<ctype.h>
>>>>>>
>>>>>>   #include "kvm/read-write.h"
>>>>>>   #include "kvm/term.h"
>>>>>> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>>>>>>       if (who != active_console)
>>>>>>           return -1;
>>>>>>
>>>>>> -    while (cnt--)
>>>>>> -        fprintf(stdout, "%c", *addr++);
>>>>>> +    while (cnt--) {
>>>>>> +        if (isascii(*addr))
>>>>>
>>>>> Do things like backspace still work with this?
>>>>
>>>> Sure. Have a try ;-)
>>>>
>>>> http://en.wikipedia.org/wiki/ASCII
>>>
>>> OK, cool. Do we know what the extra characters are and why the guest
>>> is sending them?
> I think the reason is not important here. I use qemu to test
> and it also outputs that extra characters. They seem to be outputted by
> driver or kernel of guest os.
> 
> It's not sane to change the output of guest os. Suppose if we just 
> want to see what "cat /dev/urandom" prints, then only 
> allow ascii characters to be outputted? I think that's not what we expect.


This is a good reason why we should not only allow ascii to be printed.

Anyway, this is really annoying. Maybe it is a serial driver bug?

> 
> walimis
>>>
>>
>>
>> This tells us
>>
>>        while (cnt--) {
>>               if (isascii(*addr))
>>                       fprintf(stdout, "%c", *addr++);
>>               else
>>                       fprintf(stdout, "\n---%x---\n", *addr++);
>>        }
>>
>> the extra chars is 0xff.
>>
>> The reason is not understood.
>>
>> -- 
>> Best Regards,
>> Asias He
>> --
>> To unsubscribe from this list: send the line "unsubscribe kvm" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
Pekka Enberg Aug. 10, 2011, 9:19 a.m. UTC | #9
On Wed, Aug 10, 2011 at 11:31 AM, Asias He <asias.hejun@gmail.com> wrote:
>> I think the reason is not important here. I use qemu to test
>> and it also outputs that extra characters. They seem to be outputted by
>> driver or kernel of guest os.
>>
>> It's not sane to change the output of guest os. Suppose if we just
>> want to see what "cat /dev/urandom" prints, then only
>> allow ascii characters to be outputted? I think that's not what we expect.
>
> This is a good reason why we should not only allow ascii to be printed.
>
> Anyway, this is really annoying. Maybe it is a serial driver bug?

Could be. It's probably best to track down where the byte is being
sent in the driver.

                        Pekka
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Avi Kivity Aug. 11, 2011, 8:36 a.m. UTC | #10
On 08/10/2011 02:56 AM, Asias He wrote:
> This patch fixes strange characters in serial console.
>
> Before:
>
> [    0.448000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> ?[    0.695000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
> ?[    0.942000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
> ?[    1.189000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
> [    1.194000] Non-volatile memory driver v1.3
>
> After:
>
> [    0.541000] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> [    0.788000] serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
> [    1.041000] serial8250: ttyS1 at I/O 0x2f8 (irq = 0) is a 16550A
> [    1.294000] serial8250: ttyS2 at I/O 0x3e8 (irq = 0) is a 16550A
> [    1.309000] Non-volatile memory driver v1.3
>
> Signed-off-by: Asias He<asias.hejun@gmail.com>
> ---
>   tools/kvm/term.c |    7 +++++--
>   1 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/tools/kvm/term.c b/tools/kvm/term.c
> index 2a3e1f0..85b41e7 100644
> --- a/tools/kvm/term.c
> +++ b/tools/kvm/term.c
> @@ -5,6 +5,7 @@
>   #include<unistd.h>
>   #include<sys/uio.h>
>   #include<signal.h>
> +#include<ctype.h>
>
>   #include "kvm/read-write.h"
>   #include "kvm/term.h"
> @@ -57,8 +58,10 @@ int term_putc(int who, char *addr, int cnt)
>   	if (who != active_console)
>   		return -1;
>
> -	while (cnt--)
> -		fprintf(stdout, "%c", *addr++);
> +	while (cnt--) {
> +		if (isascii(*addr))
> +			fprintf(stdout, "%c", *addr++);
> +	}
>
>   	fflush(stdout);
>   	return cnt;

This will likely kill UTF-8.
diff mbox

Patch

diff --git a/tools/kvm/term.c b/tools/kvm/term.c
index 2a3e1f0..85b41e7 100644
--- a/tools/kvm/term.c
+++ b/tools/kvm/term.c
@@ -5,6 +5,7 @@ 
 #include <unistd.h>
 #include <sys/uio.h>
 #include <signal.h>
+#include <ctype.h>
 
 #include "kvm/read-write.h"
 #include "kvm/term.h"
@@ -57,8 +58,10 @@  int term_putc(int who, char *addr, int cnt)
 	if (who != active_console)
 		return -1;
 
-	while (cnt--)
-		fprintf(stdout, "%c", *addr++);
+	while (cnt--) {
+		if (isascii(*addr))
+			fprintf(stdout, "%c", *addr++);
+	}
 
 	fflush(stdout);
 	return cnt;