From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Xen-devel <xen-devel@lists.xen.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Subject: [PATCH 12/13] xen: XEN_SYSCTL_readconsole hypercall
Date: Thu, 28 Nov 2013 18:57:00 +0000 [thread overview]
Message-ID: <1385665021-5392-13-git-send-email-andrew.cooper3@citrix.com> (raw)
In-Reply-To: <1385665021-5392-1-git-send-email-andrew.cooper3@citrix.com>
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
coregrind/m_syswrap/syswrap-xen.c | 17 +++++++++++++++++
include/vki/vki-xen-sysctl.h | 23 ++++++++++++++++++++++-
2 files changed, 39 insertions(+), 1 deletion(-)
diff --git a/coregrind/m_syswrap/syswrap-xen.c b/coregrind/m_syswrap/syswrap-xen.c
index 056f2b8..ffe4e22 100644
--- a/coregrind/m_syswrap/syswrap-xen.c
+++ b/coregrind/m_syswrap/syswrap-xen.c
@@ -433,6 +433,18 @@ PRE(sysctl) {
__PRE_XEN_SYSCTL_READ(_sysctl, _sysctl, _field)
switch (sysctl->cmd) {
+ case VKI_XEN_SYSCTL_readconsole:
+ /* These are all unconditionally read */
+ PRE_XEN_SYSCTL_READ(readconsole, clear);
+ PRE_XEN_SYSCTL_READ(readconsole, incremental);
+ PRE_XEN_SYSCTL_READ(readconsole, buffer);
+ PRE_XEN_SYSCTL_READ(readconsole, count);
+
+ /* 'index' only read if 'incremental' is nonzero */
+ if (sysctl->u.readconsole.incremental)
+ PRE_XEN_SYSCTL_READ(readconsole, index);
+ break;
+
case VKI_XEN_SYSCTL_getdomaininfolist:
switch (sysctl->interface_version)
{
@@ -984,6 +996,11 @@ POST(sysctl)
__POST_XEN_SYSCTL_WRITE(_sysctl, _sysctl, _field)
switch (sysctl->cmd) {
+ case VKI_XEN_SYSCTL_readconsole:
+ POST_MEM_WRITE((Addr)sysctl->u.readconsole.buffer.p,
+ sysctl->u.readconsole.count * sizeof(char));
+ break;
+
case VKI_XEN_SYSCTL_getdomaininfolist:
switch (sysctl->interface_version)
{
diff --git a/include/vki/vki-xen-sysctl.h b/include/vki/vki-xen-sysctl.h
index 06cbaf6..f406bd0 100644
--- a/include/vki/vki-xen-sysctl.h
+++ b/include/vki/vki-xen-sysctl.h
@@ -38,6 +38,27 @@
#define VKI_XEN_SYSCTL_scheduler_op 19
#define VKI_XEN_SYSCTL_coverage_op 20
+struct vki_xen_sysctl_readconsole {
+ /* IN */
+ vki_uint8_t clear;
+ vki_uint8_t incremental;
+
+ vki_uint8_t pad0, pad1;
+
+ /*
+ * IN: Start index for consumption if @incremental.
+ * OUT: End index after consuming from the console.
+ */
+ vki_uint32_t index;
+ VKI_XEN_GUEST_HANDLE_64(char) buffer; /* IN */
+
+ /*
+ * IN: size of buffer.
+ * OUT: bytes written into buffer.
+ */
+ vki_uint32_t count;
+};
+
struct vki_xen_sysctl_getdomaininfolist_00000008 {
/* IN variables. */
vki_xen_domid_t first_domain;
@@ -138,7 +159,7 @@ struct vki_xen_sysctl {
vki_uint32_t cmd;
vki_uint32_t interface_version; /* XEN_SYSCTL_INTERFACE_VERSION */
union {
- //struct vki_xen_sysctl_readconsole readconsole;
+ struct vki_xen_sysctl_readconsole readconsole;
//struct vki_xen_sysctl_tbuf_op tbuf_op;
struct vki_xen_sysctl_physinfo_00000008 physinfo_00000008;
struct vki_xen_sysctl_physinfo_0000000a physinfo_0000000a;
--
1.7.10.4
next prev parent reply other threads:[~2013-11-28 18:57 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-28 18:56 [PATCH 00/13] Valgrind patches for hypercalls Andrew Cooper
2013-11-28 18:56 ` [PATCH 01/13] xen: Fix XEN_SYSCTL_getdomaininfolist for version 0xa Andrew Cooper
2013-11-28 18:56 ` [PATCH 02/13] xen: Infratructure for XEN_TMEM_* hypercalls Andrew Cooper
2013-11-28 18:56 ` [PATCH 03/13] xen: XENMEM_maximum_ram_page hypercall Andrew Cooper
2013-11-28 18:56 ` [PATCH 04/13] xen: XENMEM_maximum_gpfn hypercall Andrew Cooper
2013-11-28 18:56 ` [PATCH 05/13] xen: XENMEM_machphys_mfn_list hypercall Andrew Cooper
2013-11-28 18:56 ` [PATCH 06/13] xen: XENMEM_add_to_physmap hypercall Andrew Cooper
2013-11-29 11:17 ` Ian Campbell
2013-11-28 18:56 ` [PATCH 07/13] xen: XENMEM_remove_from_physmap hypercall Andrew Cooper
2013-11-28 18:56 ` [PATCH 08/13] xen: XEN_DOMCTL_gethvmcontext hypercall Andrew Cooper
2013-11-28 18:56 ` [PATCH 09/13] xen: XEN_DOMCTL_getpageframeinfo3 hypercall Andrew Cooper
2013-11-28 18:56 ` [PATCH 10/13] xen: XEN_DOMCTL_sethvmcontext hypercall Andrew Cooper
2013-11-29 11:22 ` Ian Campbell
2013-11-28 18:56 ` [PATCH 11/13] xen: XEN_DOMCTL_shadow_op hypercall Andrew Cooper
2013-11-29 11:25 ` Ian Campbell
2013-11-29 11:27 ` Andrew Cooper
2013-11-28 18:57 ` Andrew Cooper [this message]
2013-11-28 18:57 ` [PATCH 13/13] xen: XEN_SYSCTL_debugkeys hypercall Andrew Cooper
2013-11-29 11:45 ` [PATCH 00/13] Valgrind patches for hypercalls Ian Campbell
2013-12-02 10:37 ` Ian Campbell
2013-12-02 10:46 ` Andrew Cooper
2013-12-02 10:49 ` Ian Campbell
2013-12-02 10:55 ` Andrew Cooper
2013-12-02 11:16 ` Ian Campbell
2013-12-02 14:25 ` Ian Campbell
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=1385665021-5392-13-git-send-email-andrew.cooper3@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=xen-devel@lists.xen.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 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).