From: Daniel De Graaf <dgdegra@tycho.nsa.gov>
To: Jan Beulich <JBeulich@suse.com>
Cc: xen-devel@lists.xenproject.org, keir@xen.org, ian.campbell@citrix.com
Subject: Re: [PATCH 1/2] xen/xsm: forbid PV guest console reads
Date: Mon, 30 Sep 2013 13:29:00 -0400 [thread overview]
Message-ID: <5249B4DC.8040208@tycho.nsa.gov> (raw)
In-Reply-To: <5249BE7802000078000F824F@nat28.tlf.novell.com>
On 09/30/2013 12:10 PM, Jan Beulich wrote:
>>>> On 30.09.13 at 17:48, Daniel De Graaf <dgdegra@tycho.nsa.gov> wrote:
>> When the hypervisor was compiled in debug mode (with VERBOSE defined),
>> PV guests incorrectly had access to both read and write to the console.
>> Change this to only allow write access; since such writes were limited
>> by log levels in 48d50de8e0, remove the dependency on VERBOSE
>> completely.
>
> I disagree, and iirc I disagreed already when you tried to drop the
> dependency on VERBOSE with that earlier patch.
>
>> Reported-by: Jan Beulich <JBeulich@suse.com>
>> Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
>> ---
>>
>> Alternatively, if controlling writes with VERBOSE is still desired, the
>> ifdef VERBOSE can be retained surrounding the if() with the following
>> commit message:
>>
>>
>
> That's what I'd want to see go in.
>
> Jan
This patch retains the existing behavior where only HVM guests can use
the console for output, and only via the 0xE9 I/O port. With Konrad's
Linux patch, this means that xen_raw_console_write in non-dom0 will
produce output only on Xen <= 4.3 (which returns -ENOSYS rather than
-EPERM, as this code does).
------------------------8<----------------------------------------------
The CONSOLEIO_read operation was incorrectly allowed to PV guests if the
hypervisor was compiled in debug mode (with VERBOSE defined).
Reported-by: Jan Beulich <JBeulich@suse.com>
Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
---
xen/include/xsm/dummy.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/xen/include/xsm/dummy.h b/xen/include/xsm/dummy.h
index 2abf018..b1edd29 100644
--- a/xen/include/xsm/dummy.h
+++ b/xen/include/xsm/dummy.h
@@ -233,10 +233,10 @@ static XSM_INLINE int xsm_console_io(XSM_DEFAULT_ARG struct domain *d, int cmd)
{
XSM_ASSERT_ACTION(XSM_OTHER);
#ifdef VERBOSE
- return xsm_default_action(XSM_HOOK, current->domain, NULL);
-#else
- return xsm_default_action(XSM_PRIV, current->domain, NULL);
+ if ( cmd == CONSOLEIO_write )
+ return xsm_default_action(XSM_HOOK, d, NULL);
#endif
+ return xsm_default_action(XSM_PRIV, d, NULL);
}
static XSM_INLINE int xsm_profile(XSM_DEFAULT_ARG struct domain *d, int op)
next prev parent reply other threads:[~2013-09-30 17:29 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-30 15:48 [PATCH 1/2] xen/xsm: forbid PV guest console reads Daniel De Graaf
2013-09-30 15:48 ` [PATCH 2/2] xen/xsm: clean up unneeded current references Daniel De Graaf
2013-09-30 16:10 ` [PATCH 1/2] xen/xsm: forbid PV guest console reads Jan Beulich
2013-09-30 17:29 ` Daniel De Graaf [this message]
2013-09-30 18:06 ` Konrad Rzeszutek Wilk
2013-09-30 18:29 ` Daniel De Graaf
2013-09-30 19:26 ` Konrad Rzeszutek Wilk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5249B4DC.8040208@tycho.nsa.gov \
--to=dgdegra@tycho.nsa.gov \
--cc=JBeulich@suse.com \
--cc=ian.campbell@citrix.com \
--cc=keir@xen.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.