diff options
author | Juergen Gross <jgross@suse.com> | 2019-06-19 05:00:56 -0400 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2019-07-18 00:44:24 -0400 |
commit | a1078e821b605813b63bf6bca414a85f804d5c66 (patch) | |
tree | 0bf89d34e5290ae34773a390fea85b546772b625 | |
parent | b23e5844dfe78a80ba672793187d3f52e4b528d7 (diff) |
xen: let alloc_xenballooned_pages() fail if not enough memory free
Instead of trying to allocate pages with GFP_USER in
add_ballooned_pages() check the available free memory via
si_mem_available(). GFP_USER is far less limiting memory exhaustion
than the test via si_mem_available().
This will avoid dom0 running out of memory due to excessive foreign
page mappings especially on ARM and on x86 in PVH mode, as those don't
have a pre-ballooned area which can be used for foreign mappings.
As the normal ballooning suffers from the same problem don't balloon
down more than si_mem_available() pages in one iteration. At the same
time limit the default maximum number of retries.
This is part of XSA-300.
Signed-off-by: Juergen Gross <jgross@suse.com>
-rw-r--r-- | drivers/xen/balloon.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index d37dd5bb7a8f..559768dc2567 100644 --- a/drivers/xen/balloon.c +++ b/drivers/xen/balloon.c | |||
@@ -538,8 +538,15 @@ static void balloon_process(struct work_struct *work) | |||
538 | state = reserve_additional_memory(); | 538 | state = reserve_additional_memory(); |
539 | } | 539 | } |
540 | 540 | ||
541 | if (credit < 0) | 541 | if (credit < 0) { |
542 | state = decrease_reservation(-credit, GFP_BALLOON); | 542 | long n_pages; |
543 | |||
544 | n_pages = min(-credit, si_mem_available()); | ||
545 | state = decrease_reservation(n_pages, GFP_BALLOON); | ||
546 | if (state == BP_DONE && n_pages != -credit && | ||
547 | n_pages < totalreserve_pages) | ||
548 | state = BP_EAGAIN; | ||
549 | } | ||
543 | 550 | ||
544 | state = update_schedule(state); | 551 | state = update_schedule(state); |
545 | 552 | ||
@@ -578,6 +585,9 @@ static int add_ballooned_pages(int nr_pages) | |||
578 | } | 585 | } |
579 | } | 586 | } |
580 | 587 | ||
588 | if (si_mem_available() < nr_pages) | ||
589 | return -ENOMEM; | ||
590 | |||
581 | st = decrease_reservation(nr_pages, GFP_USER); | 591 | st = decrease_reservation(nr_pages, GFP_USER); |
582 | if (st != BP_DONE) | 592 | if (st != BP_DONE) |
583 | return -ENOMEM; | 593 | return -ENOMEM; |
@@ -710,7 +720,7 @@ static int __init balloon_init(void) | |||
710 | balloon_stats.schedule_delay = 1; | 720 | balloon_stats.schedule_delay = 1; |
711 | balloon_stats.max_schedule_delay = 32; | 721 | balloon_stats.max_schedule_delay = 32; |
712 | balloon_stats.retry_count = 1; | 722 | balloon_stats.retry_count = 1; |
713 | balloon_stats.max_retry_count = RETRY_UNLIMITED; | 723 | balloon_stats.max_retry_count = 4; |
714 | 724 | ||
715 | #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG | 725 | #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG |
716 | set_online_page_callback(&xen_online_page); | 726 | set_online_page_callback(&xen_online_page); |