[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-changelog] [xen-unstable] xenconsoled: use grant references instead of map_foreign_range


  • To: xen-changelog@xxxxxxxxxxxxxxxxxxx
  • From: Xen patchbot-unstable <patchbot@xxxxxxx>
  • Date: Sat, 19 Jan 2013 01:33:07 +0000
  • Delivery-date: Sat, 19 Jan 2013 01:33:18 +0000
  • List-id: "Change log for Mercurial \(receive only\)" <xen-changelog.lists.xen.org>

# HG changeset patch
# User Daniel De Graaf <dgdegra@xxxxxxxxxxxxx>
# Date 1358441301 0
# Node ID e9d949a0798e60472f6f7ffbc5e117e7adb6e37c
# Parent  126ce5f1855ba21ae24fc1c0981e5c05a3245bad
xenconsoled: use grant references instead of map_foreign_range

Grant references for the xenstore and xenconsole shared pages exist, but
currently only xenstore uses these references.  Change the xenconsole
daemon to prefer using the grant reference over map_foreign_range when
mapping the shared console ring.

This allows xenconsoled to be run in a domain other than dom0 if set up
correctly - for libxl, the xenstore path /tool/xenconsoled/domid
specifies the domain containing xenconsoled.

Signed-off-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx>
Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---


diff -r 126ce5f1855b -r e9d949a0798e tools/console/daemon/io.c
--- a/tools/console/daemon/io.c Thu Jan 17 15:55:51 2013 +0000
+++ b/tools/console/daemon/io.c Thu Jan 17 16:48:21 2013 +0000
@@ -24,6 +24,7 @@
 #include "io.h"
 #include <xenstore.h>
 #include <xen/io/console.h>
+#include <xen/grant_table.h>
 
 #include <stdlib.h>
 #include <errno.h>
@@ -67,6 +68,8 @@ static int log_time_hv_needts = 1;
 static int log_time_guest_needts = 1;
 static int log_hv_fd = -1;
 
+static xc_gnttab *xcg_handle = NULL;
+
 static struct pollfd  *fds;
 static unsigned int current_array_size;
 static unsigned int nr_fds;
@@ -506,6 +509,18 @@ static int xs_gather(struct xs_handle *x
        va_end(ap);
        return ret;
 }
+
+static void domain_unmap_interface(struct domain *dom)
+{
+       if (dom->interface == NULL)
+               return;
+       if (xcg_handle && dom->ring_ref == -1)
+               xc_gnttab_munmap(xcg_handle, dom->interface, 1);
+       else
+               munmap(dom->interface, getpagesize());
+       dom->interface = NULL;
+       dom->ring_ref = -1;
+}
  
 static int domain_create_ring(struct domain *dom)
 {
@@ -527,9 +542,19 @@ static int domain_create_ring(struct dom
        }
        free(type);
 
-       if (ring_ref != dom->ring_ref) {
-               if (dom->interface != NULL)
-                       munmap(dom->interface, getpagesize());
+       /* If using ring_ref and it has changed, remap */
+       if (ring_ref != dom->ring_ref && dom->ring_ref != -1)
+               domain_unmap_interface(dom);
+
+       if (!dom->interface && xcg_handle) {
+               /* Prefer using grant table */
+               dom->interface = xc_gnttab_map_grant_ref(xcg_handle,
+                       dom->domid, GNTTAB_RESERVED_CONSOLE,
+                       PROT_READ|PROT_WRITE);
+               dom->ring_ref = -1;
+       }
+       if (!dom->interface) {
+               /* Fall back to xc_map_foreign_range */
                dom->interface = xc_map_foreign_range(
                        xc, dom->domid, getpagesize(),
                        PROT_READ|PROT_WRITE,
@@ -725,9 +750,7 @@ static void shutdown_domain(struct domai
 {
        d->is_dead = true;
        watch_domain(d, false);
-       if (d->interface != NULL)
-               munmap(d->interface, getpagesize());
-       d->interface = NULL;
+       domain_unmap_interface(d);
        if (d->xce_handle != NULL)
                xc_evtchn_close(d->xce_handle);
        d->xce_handle = NULL;
@@ -735,7 +758,7 @@ static void shutdown_domain(struct domai
 
 static unsigned enum_pass = 0;
 
-void enum_domains(void)
+static void enum_domains(void)
 {
        int domid = 1;
        xc_dominfo_t dominfo;
@@ -996,6 +1019,14 @@ void handle_io(void)
                }
        }
 
+       xcg_handle = xc_gnttab_open(NULL, 0);
+       if (xcg_handle == NULL) {
+               dolog(LOG_DEBUG, "Failed to open xcg handle: %d (%s)",
+                     errno, strerror(errno));
+       }
+
+       enum_domains();
+
        for (;;) {
                struct domain *d, *n;
                int poll_timeout; /* timeout in milliseconds */
@@ -1165,6 +1196,10 @@ void handle_io(void)
                xc_evtchn_close(xce_handle);
                xce_handle = NULL;
        }
+       if (xcg_handle != NULL) {
+               xc_gnttab_close(xcg_handle);
+               xcg_handle = NULL;
+       }
        log_hv_evtchn = -1;
 }
 
diff -r 126ce5f1855b -r e9d949a0798e tools/console/daemon/io.h
--- a/tools/console/daemon/io.h Thu Jan 17 15:55:51 2013 +0000
+++ b/tools/console/daemon/io.h Thu Jan 17 16:48:21 2013 +0000
@@ -21,7 +21,6 @@
 #ifndef CONSOLED_IO_H
 #define CONSOLED_IO_H
 
-void enum_domains(void);
 void handle_io(void);
 
 #endif
diff -r 126ce5f1855b -r e9d949a0798e tools/console/daemon/main.c
--- a/tools/console/daemon/main.c       Thu Jan 17 15:55:51 2013 +0000
+++ b/tools/console/daemon/main.c       Thu Jan 17 16:48:21 2013 +0000
@@ -161,8 +161,6 @@ int main(int argc, char **argv)
        if (!xen_setup())
                exit(1);
 
-       enum_domains();
-
        handle_io();
 
        closelog();

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.