1 /******************************************************************************
4 * Xen balloon driver - enables returning/claiming memory to/from Xen.
6 * Copyright (c) 2003, B Dragovic
7 * Copyright (c) 2003-2004, M Williamson, K Fraser
8 * Copyright (c) 2005 Dan M. Smith, IBM Corporation
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation; or, when distributed
13 * separately from the Linux kernel or incorporated into other
14 * software packages, subject to the following license:
16 * Permission is hereby granted, free of charge, to any person obtaining a copy
17 * of this source file (the "Software"), to deal in the Software without
18 * restriction, including without limitation the rights to use, copy, modify,
19 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
20 * and to permit persons to whom the Software is furnished to do so, subject to
21 * the following conditions:
23 * The above copyright notice and this permission notice shall be included in
24 * all copies or substantial portions of the Software.
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/sched.h>
38 #include <linux/errno.h>
40 #include <linux/bootmem.h>
41 #include <linux/pagemap.h>
42 #include <linux/highmem.h>
43 #include <linux/mutex.h>
44 #include <linux/highmem.h>
45 #include <linux/list.h>
46 #include <linux/sysdev.h>
48 #include <asm/xen/hypervisor.h>
50 #include <asm/pgalloc.h>
51 #include <asm/pgtable.h>
52 #include <asm/uaccess.h>
55 #include <xen/interface/memory.h>
56 #include <xen/balloon.h>
57 #include <xen/xenbus.h>
58 #include <xen/features.h>
61 #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10))
63 #define BALLOON_CLASS_NAME "xen_memory"
65 struct balloon_stats
{
66 /* We aim for 'current allocation' == 'target allocation'. */
67 unsigned long current_pages
;
68 unsigned long target_pages
;
69 /* We may hit the hard limit in Xen. If we do then we remember it. */
70 unsigned long hard_limit
;
72 * Drivers may alter the memory reservation independently, but they
73 * must inform the balloon driver so we avoid hitting the hard limit.
75 unsigned long driver_pages
;
76 /* Number of pages in high- and low-memory balloons. */
77 unsigned long balloon_low
;
78 unsigned long balloon_high
;
81 static DEFINE_MUTEX(balloon_mutex
);
83 static struct sys_device balloon_sysdev
;
85 static int register_balloon(struct sys_device
*sysdev
);
88 * Protects atomic reservation decrease/increase against concurrent increases.
89 * Also protects non-atomic updates of current_pages and driver_pages, and
92 static DEFINE_SPINLOCK(balloon_lock
);
94 static struct balloon_stats balloon_stats
;
96 /* We increase/decrease in batches which fit in a page */
97 static unsigned long frame_list
[PAGE_SIZE
/ sizeof(unsigned long)];
99 /* VM /proc information for memory */
100 extern unsigned long totalram_pages
;
102 #ifdef CONFIG_HIGHMEM
103 extern unsigned long totalhigh_pages
;
104 #define inc_totalhigh_pages() (totalhigh_pages++)
105 #define dec_totalhigh_pages() (totalhigh_pages--)
107 #define inc_totalhigh_pages() do {} while(0)
108 #define dec_totalhigh_pages() do {} while(0)
111 /* List of ballooned pages, threaded through the mem_map array. */
112 static LIST_HEAD(ballooned_pages
);
114 /* Main work function, always executed in process context. */
115 static void balloon_process(struct work_struct
*work
);
116 static DECLARE_WORK(balloon_worker
, balloon_process
);
117 static struct timer_list balloon_timer
;
119 /* When ballooning out (allocating memory to return to Xen) we don't really
120 want the kernel to try too hard since that can trigger the oom killer. */
121 #define GFP_BALLOON \
122 (GFP_HIGHUSER | __GFP_NOWARN | __GFP_NORETRY | __GFP_NOMEMALLOC)
124 static void scrub_page(struct page
*page
)
126 #ifdef CONFIG_XEN_SCRUB_PAGES
127 if (PageHighMem(page
)) {
128 void *v
= kmap(page
);
132 void *v
= page_address(page
);
138 /* balloon_append: add the given page to the balloon. */
139 static void balloon_append(struct page
*page
)
141 /* Lowmem is re-populated first, so highmem pages go at list tail. */
142 if (PageHighMem(page
)) {
143 list_add_tail(&page
->lru
, &ballooned_pages
);
144 balloon_stats
.balloon_high
++;
145 dec_totalhigh_pages();
147 list_add(&page
->lru
, &ballooned_pages
);
148 balloon_stats
.balloon_low
++;
152 /* balloon_retrieve: rescue a page from the balloon, if it is not empty. */
153 static struct page
*balloon_retrieve(void)
157 if (list_empty(&ballooned_pages
))
160 page
= list_entry(ballooned_pages
.next
, struct page
, lru
);
161 list_del(&page
->lru
);
163 if (PageHighMem(page
)) {
164 balloon_stats
.balloon_high
--;
165 inc_totalhigh_pages();
168 balloon_stats
.balloon_low
--;
173 static struct page
*balloon_first_page(void)
175 if (list_empty(&ballooned_pages
))
177 return list_entry(ballooned_pages
.next
, struct page
, lru
);
180 static struct page
*balloon_next_page(struct page
*page
)
182 struct list_head
*next
= page
->lru
.next
;
183 if (next
== &ballooned_pages
)
185 return list_entry(next
, struct page
, lru
);
188 static void balloon_alarm(unsigned long unused
)
190 schedule_work(&balloon_worker
);
193 static unsigned long current_target(void)
195 unsigned long target
= min(balloon_stats
.target_pages
, balloon_stats
.hard_limit
);
198 balloon_stats
.current_pages
+
199 balloon_stats
.balloon_low
+
200 balloon_stats
.balloon_high
);
205 static int increase_reservation(unsigned long nr_pages
)
207 unsigned long pfn
, i
, flags
;
210 struct xen_memory_reservation reservation
= {
216 if (nr_pages
> ARRAY_SIZE(frame_list
))
217 nr_pages
= ARRAY_SIZE(frame_list
);
219 spin_lock_irqsave(&balloon_lock
, flags
);
221 page
= balloon_first_page();
222 for (i
= 0; i
< nr_pages
; i
++) {
223 BUG_ON(page
== NULL
);
224 frame_list
[i
] = page_to_pfn(page
);;
225 page
= balloon_next_page(page
);
228 set_xen_guest_handle(reservation
.extent_start
, frame_list
);
229 reservation
.nr_extents
= nr_pages
;
230 rc
= HYPERVISOR_memory_op(XENMEM_populate_physmap
, &reservation
);
235 /* We hit the Xen hard limit: reprobe. */
236 reservation
.nr_extents
= rc
;
237 ret
= HYPERVISOR_memory_op(XENMEM_decrease_reservation
,
242 balloon_stats
.hard_limit
= (balloon_stats
.current_pages
+ rc
-
243 balloon_stats
.driver_pages
);
247 for (i
= 0; i
< nr_pages
; i
++) {
248 page
= balloon_retrieve();
249 BUG_ON(page
== NULL
);
251 pfn
= page_to_pfn(page
);
252 BUG_ON(!xen_feature(XENFEAT_auto_translated_physmap
) &&
253 phys_to_machine_mapping_valid(pfn
));
255 set_phys_to_machine(pfn
, frame_list
[i
]);
257 /* Link back into the page tables if not highmem. */
258 if (pfn
< max_low_pfn
) {
260 ret
= HYPERVISOR_update_va_mapping(
261 (unsigned long)__va(pfn
<< PAGE_SHIFT
),
262 mfn_pte(frame_list
[i
], PAGE_KERNEL
),
267 /* Relinquish the page back to the allocator. */
268 ClearPageReserved(page
);
269 init_page_count(page
);
273 balloon_stats
.current_pages
+= nr_pages
;
274 totalram_pages
= balloon_stats
.current_pages
;
277 spin_unlock_irqrestore(&balloon_lock
, flags
);
282 static int decrease_reservation(unsigned long nr_pages
)
284 unsigned long pfn
, i
, flags
;
288 struct xen_memory_reservation reservation
= {
294 if (nr_pages
> ARRAY_SIZE(frame_list
))
295 nr_pages
= ARRAY_SIZE(frame_list
);
297 for (i
= 0; i
< nr_pages
; i
++) {
298 if ((page
= alloc_page(GFP_BALLOON
)) == NULL
) {
304 pfn
= page_to_pfn(page
);
305 frame_list
[i
] = pfn_to_mfn(pfn
);
310 /* Ensure that ballooned highmem pages don't have kmaps. */
314 spin_lock_irqsave(&balloon_lock
, flags
);
316 /* No more mappings: invalidate P2M and add to balloon. */
317 for (i
= 0; i
< nr_pages
; i
++) {
318 pfn
= mfn_to_pfn(frame_list
[i
]);
319 set_phys_to_machine(pfn
, INVALID_P2M_ENTRY
);
320 balloon_append(pfn_to_page(pfn
));
323 set_xen_guest_handle(reservation
.extent_start
, frame_list
);
324 reservation
.nr_extents
= nr_pages
;
325 ret
= HYPERVISOR_memory_op(XENMEM_decrease_reservation
, &reservation
);
326 BUG_ON(ret
!= nr_pages
);
328 balloon_stats
.current_pages
-= nr_pages
;
329 totalram_pages
= balloon_stats
.current_pages
;
331 spin_unlock_irqrestore(&balloon_lock
, flags
);
337 * We avoid multiple worker processes conflicting via the balloon mutex.
338 * We may of course race updates of the target counts (which are protected
339 * by the balloon lock), or with changes to the Xen hard limit, but we will
340 * recover from these in time.
342 static void balloon_process(struct work_struct
*work
)
347 mutex_lock(&balloon_mutex
);
350 credit
= current_target() - balloon_stats
.current_pages
;
352 need_sleep
= (increase_reservation(credit
) != 0);
354 need_sleep
= (decrease_reservation(-credit
) != 0);
356 #ifndef CONFIG_PREEMPT
360 } while ((credit
!= 0) && !need_sleep
);
362 /* Schedule more work if there is some still to be done. */
363 if (current_target() != balloon_stats
.current_pages
)
364 mod_timer(&balloon_timer
, jiffies
+ HZ
);
366 mutex_unlock(&balloon_mutex
);
369 /* Resets the Xen limit, sets new target, and kicks off processing. */
370 static void balloon_set_new_target(unsigned long target
)
372 /* No need for lock. Not read-modify-write updates. */
373 balloon_stats
.hard_limit
= ~0UL;
374 balloon_stats
.target_pages
= target
;
375 schedule_work(&balloon_worker
);
378 static struct xenbus_watch target_watch
=
380 .node
= "memory/target"
383 /* React to a change in the target key */
384 static void watch_target(struct xenbus_watch
*watch
,
385 const char **vec
, unsigned int len
)
387 unsigned long long new_target
;
390 err
= xenbus_scanf(XBT_NIL
, "memory", "target", "%llu", &new_target
);
392 /* This is ok (for domain0 at least) - so just return */
396 /* The given memory/target value is in KiB, so it needs converting to
397 * pages. PAGE_SHIFT converts bytes to pages, hence PAGE_SHIFT - 10.
399 balloon_set_new_target(new_target
>> (PAGE_SHIFT
- 10));
402 static int balloon_init_watcher(struct notifier_block
*notifier
,
408 err
= register_xenbus_watch(&target_watch
);
410 printk(KERN_ERR
"Failed to set balloon watcher\n");
415 static struct notifier_block xenstore_notifier
;
417 static int __init
balloon_init(void)
422 if (!is_running_on_xen())
425 pr_info("xen_balloon: Initialising balloon driver.\n");
427 balloon_stats
.current_pages
= min(xen_start_info
->nr_pages
, max_pfn
);
428 totalram_pages
= balloon_stats
.current_pages
;
429 balloon_stats
.target_pages
= balloon_stats
.current_pages
;
430 balloon_stats
.balloon_low
= 0;
431 balloon_stats
.balloon_high
= 0;
432 balloon_stats
.driver_pages
= 0UL;
433 balloon_stats
.hard_limit
= ~0UL;
435 init_timer(&balloon_timer
);
436 balloon_timer
.data
= 0;
437 balloon_timer
.function
= balloon_alarm
;
439 register_balloon(&balloon_sysdev
);
441 /* Initialise the balloon with excess memory space. */
442 for (pfn
= xen_start_info
->nr_pages
; pfn
< max_pfn
; pfn
++) {
443 page
= pfn_to_page(pfn
);
444 if (!PageReserved(page
))
445 balloon_append(page
);
448 target_watch
.callback
= watch_target
;
449 xenstore_notifier
.notifier_call
= balloon_init_watcher
;
451 register_xenstore_notifier(&xenstore_notifier
);
456 subsys_initcall(balloon_init
);
458 static void balloon_exit(void)
460 /* XXX - release balloon here */
464 module_exit(balloon_exit
);
466 #define BALLOON_SHOW(name, format, args...) \
467 static ssize_t show_##name(struct sys_device *dev, \
468 struct sysdev_attribute *attr, \
471 return sprintf(buf, format, ##args); \
473 static SYSDEV_ATTR(name, S_IRUGO, show_##name, NULL)
475 BALLOON_SHOW(current_kb
, "%lu\n", PAGES2KB(balloon_stats
.current_pages
));
476 BALLOON_SHOW(low_kb
, "%lu\n", PAGES2KB(balloon_stats
.balloon_low
));
477 BALLOON_SHOW(high_kb
, "%lu\n", PAGES2KB(balloon_stats
.balloon_high
));
478 BALLOON_SHOW(hard_limit_kb
,
479 (balloon_stats
.hard_limit
!=~0UL) ? "%lu\n" : "???\n",
480 (balloon_stats
.hard_limit
!=~0UL) ? PAGES2KB(balloon_stats
.hard_limit
) : 0);
481 BALLOON_SHOW(driver_kb
, "%lu\n", PAGES2KB(balloon_stats
.driver_pages
));
483 static ssize_t
show_target_kb(struct sys_device
*dev
, struct sysdev_attribute
*attr
,
486 return sprintf(buf
, "%lu\n", PAGES2KB(balloon_stats
.target_pages
));
489 static ssize_t
store_target_kb(struct sys_device
*dev
,
490 struct sysdev_attribute
*attr
,
495 unsigned long long target_bytes
;
497 if (!capable(CAP_SYS_ADMIN
))
500 target_bytes
= memparse(buf
, &endchar
);
502 balloon_set_new_target(target_bytes
>> PAGE_SHIFT
);
507 static SYSDEV_ATTR(target_kb
, S_IRUGO
| S_IWUSR
,
508 show_target_kb
, store_target_kb
);
510 static struct sysdev_attribute
*balloon_attrs
[] = {
514 static struct attribute
*balloon_info_attrs
[] = {
515 &attr_current_kb
.attr
,
518 &attr_hard_limit_kb
.attr
,
519 &attr_driver_kb
.attr
,
523 static struct attribute_group balloon_info_group
= {
525 .attrs
= balloon_info_attrs
,
528 static struct sysdev_class balloon_sysdev_class
= {
529 .name
= BALLOON_CLASS_NAME
,
532 static int register_balloon(struct sys_device
*sysdev
)
536 error
= sysdev_class_register(&balloon_sysdev_class
);
541 sysdev
->cls
= &balloon_sysdev_class
;
543 error
= sysdev_register(sysdev
);
545 sysdev_class_unregister(&balloon_sysdev_class
);
549 for (i
= 0; i
< ARRAY_SIZE(balloon_attrs
); i
++) {
550 error
= sysdev_create_file(sysdev
, balloon_attrs
[i
]);
555 error
= sysfs_create_group(&sysdev
->kobj
, &balloon_info_group
);
563 sysdev_remove_file(sysdev
, balloon_attrs
[i
]);
564 sysdev_unregister(sysdev
);
565 sysdev_class_unregister(&balloon_sysdev_class
);
569 MODULE_LICENSE("GPL");