[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xsm, argo: notify: don't describe rings that cannot be sent to
commit 2be7f17e4b9884947888e442ef0a445d5523d15d Author: Christopher Clark <christopher.w.clark@xxxxxxxxx> AuthorDate: Wed Feb 6 09:56:00 2019 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Feb 7 14:26:30 2019 +0100 xsm, argo: notify: don't describe rings that cannot be sent to Signed-off-by: Christopher Clark <christopher.clark6@xxxxxxxxxxxxxx> Acked-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> Tested-by: Chris Patterson <pattersonc@xxxxxxxxxxxx> Release-acked-by: Juergen Gross <jgross@xxxxxxxx> --- xen/common/argo.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/xen/common/argo.c b/xen/common/argo.c index 7523f32af5..13052b9239 100644 --- a/xen/common/argo.c +++ b/xen/common/argo.c @@ -1342,6 +1342,17 @@ fill_ring_data(const struct domain *currd, if ( !dst_d || !dst_d->argo ) goto out; + /* + * Don't supply information about rings that a guest is not + * allowed to send to. + */ + ret = xsm_argo_send(currd, dst_d); + if ( ret ) + { + put_domain(dst_d); + return ret; + } + read_lock(&dst_d->argo->rings_L2_rwlock); ring_info = find_ring_info_by_match(dst_d, ent.ring.aport, -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |