All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libxl: passthrough: avoid passing through devices not owned by pciback
@ 2012-03-22  1:20 Hao, Xudong
  2012-03-22 10:15 ` George Dunlap
  2012-04-02 17:00 ` Ian Jackson
  0 siblings, 2 replies; 18+ messages in thread
From: Hao, Xudong @ 2012-03-22  1:20 UTC (permalink / raw)
  To: ian.jackson; +Cc: xen-devel, Kay, Allen M

<Porting from Xen 4.1 tree.>

libxl: passthrough: avoid passing through devices not owned by pciback

This patch makes sure the passthrough device belongs to pciback before allow them passthrough to the guest.  There are still many other checks missing.

xm terminates the guest startup process when this type of condition is found.  This patch just allows the guest to continue to boot but with no device passthrough.

Signed-off-by: Allen Kay <allen.m.kay@intel.com>
Signed-off-by: Xudong Hao <xudong.hao@intel.com>

diff -r 4e1d091d10d8 tools/libxl/libxl_pci.c
--- a/tools/libxl/libxl_pci.c	Fri Mar 16 15:24:25 2012 +0000
+++ b/tools/libxl/libxl_pci.c	Thu Mar 22 00:43:14 2012 +0800
@@ -779,6 +779,24 @@ int libxl_device_pci_add(libxl_ctx *ctx,
     return rc;
 }
 
+static int libxl_pcidev_assignable(libxl_ctx *ctx, libxl_device_pci 
+*pcidev) {
+    libxl_device_pci *pcidevs;
+    int num, i;
+
+    pcidevs = libxl_device_pci_list_assignable(ctx, &num);
+    for (i = 0; i < num; i++) {
+        if (pcidevs[i].domain == pcidev->domain &&
+            pcidevs[i].bus == pcidev->bus &&
+            pcidevs[i].dev == pcidev->dev &&
+            pcidevs[i].func == pcidev->func)
+        {
+            return 1;
+        }
+    }
+    return 0;
+}
+
 int libxl__device_pci_add(libxl__gc *gc, uint32_t domid, libxl_device_pci *pcidev, int starting)  {
     libxl_ctx *ctx = libxl__gc_owner(gc); @@ -789,6 +807,13 @@ int libxl__device_pci_add(libxl__gc *gc,
 
     rc = libxl__device_pci_setdefault(gc, pcidev);
     if (rc) goto out;
+
+    if (!libxl_pcidev_assignable(ctx, pcidev)) {
+        LIBXL__LOG(ctx, LIBXL__LOG_ERROR, "PCI device %x:%x:%x.%x is not assignable",
+                   pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
+        rc = ERROR_FAIL;
+        goto out;
+    }
 
     rc = get_all_assigned_devices(gc, &assigned, &num_assigned);
     if ( rc ) {

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2012-04-25 10:18 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-22  1:20 [PATCH] libxl: passthrough: avoid passing through devices not owned by pciback Hao, Xudong
2012-03-22 10:15 ` George Dunlap
2012-03-23  2:47   ` Hao, Xudong
2012-03-27 14:00     ` Ian Jackson
2012-03-31  2:12       ` Hao, Xudong
2012-03-27 14:41     ` George Dunlap
2012-03-31  2:10       ` Hao, Xudong
2012-04-02 17:00 ` Ian Jackson
2012-04-05  1:13   ` Hao, Xudong
2012-04-05  8:07     ` George Dunlap
2012-04-05 14:41     ` Ian Jackson
2012-04-05 15:37       ` Hao, Xudong
2012-04-24 18:02         ` Ian Jackson
2012-04-25  1:18           ` Hao, Xudong
2012-04-25 10:16             ` Ian Jackson
2012-04-25  2:01           ` Hao, Xudong
2012-04-25 10:18             ` Ian Jackson
2012-04-17  1:28       ` Hao, Xudong

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.