qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Two VNC patches
@ 2008-12-08 13:56 Chris Webb
  2008-12-08 14:00 ` [Qemu-devel] " Fabian Deutsch
  0 siblings, 1 reply; 3+ messages in thread
From: Chris Webb @ 2008-12-08 13:56 UTC (permalink / raw)
  To: qemu-devel, kvm

[-- Attachment #1: Type: text/plain, Size: 374 bytes --]

I sent this pair of VNC-related patches to the qemu-devel list a couple of
weeks back and I'm not sure whether they've got lost in the cracks or were
in some way not acceptable and need fixing up.

The first one is a straightforward bug-fix, and the second is a trivial
convenience feature in the monitor which I imagine ought to be fairly
uncontroversial?

Cheers,

Chris.

[-- Attachment #2: Type: message/rfc822, Size: 1936 bytes --]

From: Chris Webb <chris@arachsys.com>
To: qemu-devel@nongnu.org, kvm@vger.kernel.org
Cc: Thiemo Seufer <ths@networkno.de>
Subject: [PATCH v2] Fix off-by-one bug limiting VNC passwords to 7 chars
Date: Tue, 25 Nov 2008 10:25:02 +0000
Message-ID: <20081125102502.GJ2380@arachsys.com>

Fix off-by-one bug limiting VNC passwords to 7 characters instead of 8

monitor_readline expects buf_size to include the terminating \0, but
do_change_vnc in monitor.c calls it as though it doesn't. The other site
where monitor_readline reads a password (in vl.c) passes the buffer length
correctly.

Signed-off-by: Chris Webb <chris@arachsys.com>
---
 monitor.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/monitor.c b/monitor.c
index 22360fc..a252838 100644
--- a/monitor.c
+++ b/monitor.c
@@ -433,8 +433,7 @@ static void do_change_vnc(const char *target)
     if (strcmp(target, "passwd") == 0 ||
 	strcmp(target, "password") == 0) {
 	char password[9];
-	monitor_readline("Password: ", 1, password, sizeof(password)-1);
-	password[sizeof(password)-1] = '\0';
+	monitor_readline("Password: ", 1, password, sizeof(password));
 	if (vnc_display_password(NULL, password) < 0)
 	    term_printf("could not set VNC server password\n");
     } else {


[-- Attachment #3: Type: message/rfc822, Size: 3375 bytes --]

From: Chris Webb <chris@arachsys.com>
To: qemu-devel@nongnu.org, kvm@vger.kernel.org
Cc: Thiemo Seufer <ths@networkno.de>
Subject: [PATCH v2] Accept password as an argument to 'change vnc password'
Date: Tue, 25 Nov 2008 10:26:46 +0000
Message-ID: <20081125102646.GK2380@arachsys.com>

Accept password as an argument to 'change vnc password' monitor command

This allows easier use of the change vnc password monitor command from
management scripts, without having to implement expect(1)-like behaviour.

Signed-off-by: Chris Webb <chris@arachsys.com>
---
 monitor.c     |   14 +++++++++-----
 qemu-doc.texi |    8 ++++----
 2 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/monitor.c b/monitor.c
index a252838..f6a2783 100644
--- a/monitor.c
+++ b/monitor.c
@@ -428,12 +428,16 @@ static void do_change_block(const char *device, const char *filename, const char
     qemu_key_check(bs, filename);
 }
 
-static void do_change_vnc(const char *target)
+static void do_change_vnc(const char *target, const char *arg)
 {
     if (strcmp(target, "passwd") == 0 ||
 	strcmp(target, "password") == 0) {
 	char password[9];
-	monitor_readline("Password: ", 1, password, sizeof(password));
+	if (arg) {
+	    strncpy(password, arg, sizeof(password));
+	    password[sizeof(password) - 1] = '\0';
+	} else
+	    monitor_readline("Password: ", 1, password, sizeof(password));
 	if (vnc_display_password(NULL, password) < 0)
 	    term_printf("could not set VNC server password\n");
     } else {
@@ -442,12 +446,12 @@ static void do_change_vnc(const char *target)
     }
 }
 
-static void do_change(const char *device, const char *target, const char *fmt)
+static void do_change(const char *device, const char *target, const char *arg)
 {
     if (strcmp(device, "vnc") == 0) {
-	do_change_vnc(target);
+	do_change_vnc(target, arg);
     } else {
-	do_change_block(device, target, fmt);
+	do_change_block(device, target, arg);
     }
 }
 
diff --git a/qemu-doc.texi b/qemu-doc.texi
index 1735d92..ca3b181 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -1233,11 +1233,11 @@ and @var{options} are described at @ref{sec_invocation}. eg
 (qemu) change vnc localhost:1
 @end example
 
-@item change vnc password
+@item change vnc password [@var{password}]
 
-Change the password associated with the VNC server. The monitor will prompt for
-the new password to be entered. VNC passwords are only significant upto 8 letters.
-eg.
+Change the password associated with the VNC server. If the new password is not
+supplied, the monitor will prompt for it to be entered. VNC passwords are only
+significant up to 8 letters. eg
 
 @example
 (qemu) change vnc password


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Qemu-devel] Re: Two VNC patches
  2008-12-08 13:56 [Qemu-devel] Two VNC patches Chris Webb
@ 2008-12-08 14:00 ` Fabian Deutsch
  2008-12-08 14:11   ` Chris Webb
  0 siblings, 1 reply; 3+ messages in thread
From: Fabian Deutsch @ 2008-12-08 14:00 UTC (permalink / raw)
  To: Chris Webb; +Cc: qemu-devel, kvm

Hey Chris,

Am Montag, den 08.12.2008, 13:56 +0000 schrieb Chris Webb:
> I sent this pair of VNC-related patches to the qemu-devel list a couple of
> weeks back and I'm not sure whether they've got lost in the cracks or were
> in some way not acceptable and need fixing up.

Can you resend them as inline patches?

Cheers fabian

> The first one is a straightforward bug-fix, and the second is a trivial
> convenience feature in the monitor which I imagine ought to be fairly
> uncontroversial?
> 
> Cheers,
> 
> Chris.
> E-Mail-Nachricht-Anlage
> > -------- Weitergeleitete Nachricht --------
> > 
> > Fix off-by-one bug limiting VNC passwords to 7 characters instead of 8
> > 
> > monitor_readline expects buf_size to include the terminating \0, but
> > do_change_vnc in monitor.c calls it as though it doesn't. The other site
> > where monitor_readline reads a password (in vl.c) passes the buffer length
> > correctly.
> > 
> > Signed-off-by: Chris Webb <chris@arachsys.com>
> > ---
> >  monitor.c |    3 +--
> >  1 file changed, 1 insertion(+), 2 deletions(-)
> > 
> > diff --git a/monitor.c b/monitor.c
> > index 22360fc..a252838 100644
> > --- a/monitor.c
> > +++ b/monitor.c
> > @@ -433,8 +433,7 @@ static void do_change_vnc(const char *target)
> >      if (strcmp(target, "passwd") == 0 ||
> >  	strcmp(target, "password") == 0) {
> >  	char password[9];
> > -	monitor_readline("Password: ", 1, password, sizeof(password)-1);
> > -	password[sizeof(password)-1] = '\0';
> > +	monitor_readline("Password: ", 1, password, sizeof(password));
> >  	if (vnc_display_password(NULL, password) < 0)
> >  	    term_printf("could not set VNC server password\n");
> >      } else {
> > 
> E-Mail-Nachricht-Anlage
> > -------- Weitergeleitete Nachricht --------
> > 
> > Accept password as an argument to 'change vnc password' monitor command
> > 
> > This allows easier use of the change vnc password monitor command from
> > management scripts, without having to implement expect(1)-like behaviour.
> > 
> > Signed-off-by: Chris Webb <chris@arachsys.com>
> > ---
> >  monitor.c     |   14 +++++++++-----
> >  qemu-doc.texi |    8 ++++----
> >  2 files changed, 13 insertions(+), 9 deletions(-)
> > 
> > diff --git a/monitor.c b/monitor.c
> > index a252838..f6a2783 100644
> > --- a/monitor.c
> > +++ b/monitor.c
> > @@ -428,12 +428,16 @@ static void do_change_block(const char *device, const char *filename, const char
> >      qemu_key_check(bs, filename);
> >  }
> >  
> > -static void do_change_vnc(const char *target)
> > +static void do_change_vnc(const char *target, const char *arg)
> >  {
> >      if (strcmp(target, "passwd") == 0 ||
> >  	strcmp(target, "password") == 0) {
> >  	char password[9];
> > -	monitor_readline("Password: ", 1, password, sizeof(password));
> > +	if (arg) {
> > +	    strncpy(password, arg, sizeof(password));
> > +	    password[sizeof(password) - 1] = '\0';
> > +	} else
> > +	    monitor_readline("Password: ", 1, password, sizeof(password));
> >  	if (vnc_display_password(NULL, password) < 0)
> >  	    term_printf("could not set VNC server password\n");
> >      } else {
> > @@ -442,12 +446,12 @@ static void do_change_vnc(const char *target)
> >      }
> >  }
> >  
> > -static void do_change(const char *device, const char *target, const char *fmt)
> > +static void do_change(const char *device, const char *target, const char *arg)
> >  {
> >      if (strcmp(device, "vnc") == 0) {
> > -	do_change_vnc(target);
> > +	do_change_vnc(target, arg);
> >      } else {
> > -	do_change_block(device, target, fmt);
> > +	do_change_block(device, target, arg);
> >      }
> >  }
> >  
> > diff --git a/qemu-doc.texi b/qemu-doc.texi
> > index 1735d92..ca3b181 100644
> > --- a/qemu-doc.texi
> > +++ b/qemu-doc.texi
> > @@ -1233,11 +1233,11 @@ and @var{options} are described at @ref{sec_invocation}. eg
> >  (qemu) change vnc localhost:1
> >  @end example
> >  
> > -@item change vnc password
> > +@item change vnc password [@var{password}]
> >  
> > -Change the password associated with the VNC server. The monitor will prompt for
> > -the new password to be entered. VNC passwords are only significant upto 8 letters.
> > -eg.
> > +Change the password associated with the VNC server. If the new password is not
> > +supplied, the monitor will prompt for it to be entered. VNC passwords are only
> > +significant up to 8 letters. eg
> >  
> >  @example
> >  (qemu) change vnc password
> > 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] Re: Two VNC patches
  2008-12-08 14:00 ` [Qemu-devel] " Fabian Deutsch
@ 2008-12-08 14:11   ` Chris Webb
  0 siblings, 0 replies; 3+ messages in thread
From: Chris Webb @ 2008-12-08 14:11 UTC (permalink / raw)
  To: Fabian Deutsch; +Cc: qemu-devel, kvm

Fabian Deutsch <fabian.deutsch@gmx.de> writes:

> Can you resend them as inline patches?

Sure, no problem: I've resent the original messages which had the patches
inline.

Best wishes,

Chris.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-12-08 14:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-08 13:56 [Qemu-devel] Two VNC patches Chris Webb
2008-12-08 14:00 ` [Qemu-devel] " Fabian Deutsch
2008-12-08 14:11   ` Chris Webb

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).