From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=42521 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P0bZ4-0003UE-3S for qemu-devel@nongnu.org; Tue, 28 Sep 2010 10:53:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1P0bZ2-0004S7-Pl for qemu-devel@nongnu.org; Tue, 28 Sep 2010 10:53:53 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41986) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0bZ2-0004Rr-GG for qemu-devel@nongnu.org; Tue, 28 Sep 2010 10:53:52 -0400 Date: Tue, 28 Sep 2010 11:53:43 -0300 From: Luiz Capitulino Subject: Re: [Qemu-devel] [PATCH] monitor: properly handle invalid fd/vhostfd from command line Message-ID: <20100928115343.78357291@doriath> In-Reply-To: <20100927075244.8835.530.stgit@dhcp-91-7.nay.redhat.com.englab.nay.redhat.com> References: <20100927075244.8835.530.stgit@dhcp-91-7.nay.redhat.com.englab.nay.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jason Wang Cc: qemu-devel@nongnu.org, mst@redhat.com On Mon, 27 Sep 2010 15:52:44 +0800 Jason Wang wrote: > monitor_get_fd() may also be used to parse fd or vhostfd from command line, so > we need to check whether the pointer of mon is NULL to avoid segmentation fault > when user pass invalid name of fd or vhostfd. Invalid fdname is handled just fine, I have the impression this patch fixes something else. Could you elaborate on the real problem here and/or show to reproduce? > Signed-off-by: Jason Wang > --- > monitor.c | 4 ++++ > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/monitor.c b/monitor.c > index e602480..5bb4ff0 100644 > --- a/monitor.c > +++ b/monitor.c > @@ -2345,6 +2345,10 @@ int monitor_get_fd(Monitor *mon, const char *fdname) > { > mon_fd_t *monfd; > > + if (mon == NULL) { > + return -1; > + } > + > QLIST_FOREACH(monfd, &mon->fds, next) { > int fd; > > >