]> xenbits.xensource.com Git - xen.git/commitdiff
xen/common: event_channel: Don't ignore error in get_free_port()
authorJulien Grall <jgrall@amazon.com>
Tue, 7 Jul 2020 13:27:47 +0000 (15:27 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 7 Jul 2020 13:27:47 +0000 (15:27 +0200)
Currently, get_free_port() is assuming that the port has been allocated
when evtchn_allocate_port() is not return -EBUSY.

However, the function may return an error when:
    - We exhausted all the event channels. This can happen if the limit
    configured by the administrator for the guest ('max_event_channels'
    in xl cfg) is higher than the ABI used by the guest. For instance,
    if the guest is using 2L, the limit should not be higher than 4095.
    - We cannot allocate memory (e.g Xen has not more memory).

Users of get_free_port() (such as EVTCHNOP_alloc_unbound) will validly
assuming the port was valid and will next call evtchn_from_port(). This
will result to a crash as the memory backing the event channel structure
is not present.

Fixes: 368ae9a05fe ("xen/pvshim: forward evtchn ops between L0 Xen and L2 DomU")
Signed-off-by: Julien Grall <jgrall@amazon.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
master commit: 2e9c2bc292231823a3a021d2e0a9f1956bf00b3c
master date: 2020-07-07 14:35:36 +0200

xen/common/event_channel.c

index be834c5c78ee70deb2566651ec97174e85cad233..07ef45a1403c15452150dfd00a0bc94ccbf4211e 100644 (file)
@@ -202,10 +202,10 @@ static int get_free_port(struct domain *d)
     {
         int rc = evtchn_allocate_port(d, port);
 
-        if ( rc == -EBUSY )
-            continue;
-
-        return port;
+        if ( rc == 0 )
+            return port;
+        else if ( rc != -EBUSY )
+            return rc;
     }
 
     return -ENOSPC;