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

[PATCH] tools/xenstore: don't store domU's mfn of ring page in xensotred



The XS_INTRODUCE command has two parameters: the mfn (or better: gfn)
of the domain's xenstore ring page and the event channel of the
domain for communicating with Xenstore.

The gfn is not really needed. It is stored in the per-domain struct
in xenstored and in case of another XS_INTRODUCE for the domain it
is tested to match the original value. If it doesn't match the
command is aborted via EINVAL.

Today there shouldn't be multiple XS_INTRODUCE requests for the same
domain issued, so the mfn/gfn can just be ignored and multiple
XS_INTRODUCE commands can be rejected without testing the mfn/gfn.

Signed-off-by: Juergen Gross <jgross@xxxxxxxx>
---
 tools/xenstore/xenstored_domain.c | 47 ++++++++++++++++-----------------------
 1 file changed, 19 insertions(+), 28 deletions(-)

diff --git a/tools/xenstore/xenstored_domain.c 
b/tools/xenstore/xenstored_domain.c
index 5858185211..17328f9fc9 100644
--- a/tools/xenstore/xenstored_domain.c
+++ b/tools/xenstore/xenstored_domain.c
@@ -369,7 +369,6 @@ int do_introduce(struct connection *conn, struct 
buffered_data *in)
        struct domain *domain;
        char *vec[3];
        unsigned int domid;
-       unsigned long mfn;
        evtchn_port_t port;
        int rc;
        struct xenstore_domain_interface *interface;
@@ -381,7 +380,7 @@ int do_introduce(struct connection *conn, struct 
buffered_data *in)
                return EACCES;
 
        domid = atoi(vec[0]);
-       mfn = atol(vec[1]);
+       /* Ignore the mfn, we don't need it. */
        port = atoi(vec[2]);
 
        /* Sanity check args. */
@@ -390,34 +389,26 @@ int do_introduce(struct connection *conn, struct 
buffered_data *in)
 
        domain = find_domain_by_domid(domid);
 
-       if (domain == NULL) {
-               interface = map_interface(domid);
-               if (!interface)
-                       return errno;
-               /* Hang domain off "in" until we're finished. */
-               domain = new_domain(in, domid, port);
-               if (!domain) {
-                       rc = errno;
-                       unmap_interface(interface);
-                       return rc;
-               }
-               domain->interface = interface;
-               domain->mfn = mfn;
-
-               /* Now domain belongs to its connection. */
-               talloc_steal(domain->conn, domain);
-
-               fire_watches(NULL, in, "@introduceDomain", false);
-       } else if ((domain->mfn == mfn) && (domain->conn != conn)) {
-               /* Use XS_INTRODUCE for recreating the xenbus event-channel. */
-               if (domain->port)
-                       xenevtchn_unbind(xce_handle, domain->port);
-               rc = xenevtchn_bind_interdomain(xce_handle, domid, port);
-               domain->port = (rc == -1) ? 0 : rc;
-               domain->remote_port = port;
-       } else
+       if (domain)
                return EINVAL;
 
+       interface = map_interface(domid);
+       if (!interface)
+               return errno;
+       /* Hang domain off "in" until we're finished. */
+       domain = new_domain(in, domid, port);
+       if (!domain) {
+               rc = errno;
+               unmap_interface(interface);
+               return rc;
+       }
+       domain->interface = interface;
+
+       /* Now domain belongs to its connection. */
+       talloc_steal(domain->conn, domain);
+
+       fire_watches(NULL, in, "@introduceDomain", false);
+
        domain_conn_reset(domain);
 
        send_ack(conn, XS_INTRODUCE);
-- 
2.16.4




 


Rackspace

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