xen-balloon.c 7.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/******************************************************************************
 * Xen balloon driver - enables returning/claiming memory to/from Xen.
 *
 * Copyright (c) 2003, B Dragovic
 * Copyright (c) 2003-2004, M Williamson, K Fraser
 * Copyright (c) 2005 Dan M. Smith, IBM Corporation
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation; or, when distributed
 * separately from the Linux kernel or incorporated into other
 * software packages, subject to the following license:
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this source file (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use, copy, modify,
 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
 * and to permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */

J
Joe Perches 已提交
33 34
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

35
#include <linux/kernel.h>
36 37 38
#include <linux/errno.h>
#include <linux/mm_types.h>
#include <linux/init.h>
39 40 41 42 43 44 45 46
#include <linux/capability.h>

#include <xen/xen.h>
#include <xen/interface/xen.h>
#include <xen/balloon.h>
#include <xen/xenbus.h>
#include <xen/features.h>
#include <xen/page.h>
47
#include <xen/mem-reservation.h>
48 49 50 51 52

#define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10))

#define BALLOON_CLASS_NAME "xen_memory"

53
static struct device balloon_dev;
54

55
static int register_balloon(struct device *dev);
56 57 58

/* React to a change in the target key */
static void watch_target(struct xenbus_watch *watch,
59
			 const char *path, const char *token)
60
{
61
	unsigned long long new_target, static_max;
62
	int err;
63 64
	static bool watch_fired;
	static long target_diff;
65 66 67 68 69 70 71 72 73 74

	err = xenbus_scanf(XBT_NIL, "memory", "target", "%llu", &new_target);
	if (err != 1) {
		/* This is ok (for domain0 at least) - so just return */
		return;
	}

	/* The given memory/target value is in KiB, so it needs converting to
	 * pages. PAGE_SHIFT converts bytes to pages, hence PAGE_SHIFT - 10.
	 */
75
	new_target >>= PAGE_SHIFT - 10;
76 77 78 79 80 81 82 83 84

	if (!watch_fired) {
		watch_fired = true;
		err = xenbus_scanf(XBT_NIL, "memory", "static-max", "%llu",
				   &static_max);
		if (err != 1)
			static_max = new_target;
		else
			static_max >>= PAGE_SHIFT - 10;
85
		target_diff = (xen_pv_domain() || xen_initial_domain()) ? 0
86
				: static_max - balloon_stats.target_pages;
87 88
	}

89
	balloon_set_new_target(new_target - target_diff);
90
}
91 92 93 94 95
static struct xenbus_watch target_watch = {
	.node = "memory/target",
	.callback = watch_target,
};

96 97 98 99 100 101 102 103 104

static int balloon_init_watcher(struct notifier_block *notifier,
				unsigned long event,
				void *data)
{
	int err;

	err = register_xenbus_watch(&target_watch);
	if (err)
J
Joe Perches 已提交
105
		pr_err("Failed to set balloon watcher\n");
106 107 108 109

	return NOTIFY_DONE;
}

110 111 112
static struct notifier_block xenstore_notifier = {
	.notifier_call = balloon_init_watcher,
};
113

114
void xen_balloon_init(void)
115
{
116
	register_balloon(&balloon_dev);
117

118
	register_xen_selfballooning(&balloon_dev);
119

120 121
	register_xenstore_notifier(&xenstore_notifier);
}
122
EXPORT_SYMBOL_GPL(xen_balloon_init);
123 124

#define BALLOON_SHOW(name, format, args...)				\
125 126
	static ssize_t show_##name(struct device *dev,			\
				   struct device_attribute *attr,	\
127 128 129 130
				   char *buf)				\
	{								\
		return sprintf(buf, format, ##args);			\
	}								\
131
	static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
132 133 134 135 136

BALLOON_SHOW(current_kb, "%lu\n", PAGES2KB(balloon_stats.current_pages));
BALLOON_SHOW(low_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_low));
BALLOON_SHOW(high_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_high));

137 138 139 140
static DEVICE_ULONG_ATTR(schedule_delay, 0444, balloon_stats.schedule_delay);
static DEVICE_ULONG_ATTR(max_schedule_delay, 0644, balloon_stats.max_schedule_delay);
static DEVICE_ULONG_ATTR(retry_count, 0444, balloon_stats.retry_count);
static DEVICE_ULONG_ATTR(max_retry_count, 0644, balloon_stats.max_retry_count);
141
static DEVICE_BOOL_ATTR(scrub_pages, 0644, xen_scrub_pages);
142

143
static ssize_t show_target_kb(struct device *dev, struct device_attribute *attr,
144 145 146 147 148
			      char *buf)
{
	return sprintf(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages));
}

149 150
static ssize_t store_target_kb(struct device *dev,
			       struct device_attribute *attr,
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
			       const char *buf,
			       size_t count)
{
	char *endchar;
	unsigned long long target_bytes;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	target_bytes = simple_strtoull(buf, &endchar, 0) * 1024;

	balloon_set_new_target(target_bytes >> PAGE_SHIFT);

	return count;
}

167
static DEVICE_ATTR(target_kb, S_IRUGO | S_IWUSR,
168 169 170
		   show_target_kb, store_target_kb);


171
static ssize_t show_target(struct device *dev, struct device_attribute *attr,
172 173 174 175 176 177 178
			      char *buf)
{
	return sprintf(buf, "%llu\n",
		       (unsigned long long)balloon_stats.target_pages
		       << PAGE_SHIFT);
}

179 180
static ssize_t store_target(struct device *dev,
			    struct device_attribute *attr,
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
			    const char *buf,
			    size_t count)
{
	char *endchar;
	unsigned long long target_bytes;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	target_bytes = memparse(buf, &endchar);

	balloon_set_new_target(target_bytes >> PAGE_SHIFT);

	return count;
}

197
static DEVICE_ATTR(target, S_IRUGO | S_IWUSR,
198 199 200
		   show_target, store_target);


201 202 203 204 205 206 207
static struct attribute *balloon_attrs[] = {
	&dev_attr_target_kb.attr,
	&dev_attr_target.attr,
	&dev_attr_schedule_delay.attr.attr,
	&dev_attr_max_schedule_delay.attr.attr,
	&dev_attr_retry_count.attr.attr,
	&dev_attr_max_retry_count.attr.attr,
208
	&dev_attr_scrub_pages.attr.attr,
209 210 211 212 213
	NULL
};

static const struct attribute_group balloon_group = {
	.attrs = balloon_attrs
214 215 216
};

static struct attribute *balloon_info_attrs[] = {
217 218 219
	&dev_attr_current_kb.attr,
	&dev_attr_low_kb.attr,
	&dev_attr_high_kb.attr,
220 221 222
	NULL
};

223
static const struct attribute_group balloon_info_group = {
224 225 226 227
	.name = "info",
	.attrs = balloon_info_attrs
};

228 229 230 231 232 233
static const struct attribute_group *balloon_groups[] = {
	&balloon_group,
	&balloon_info_group,
	NULL
};

234 235 236
static struct bus_type balloon_subsys = {
	.name = BALLOON_CLASS_NAME,
	.dev_name = BALLOON_CLASS_NAME,
237 238
};

239
static int register_balloon(struct device *dev)
240
{
241
	int error;
242

243
	error = subsys_system_register(&balloon_subsys, NULL);
244 245 246
	if (error)
		return error;

247 248
	dev->id = 0;
	dev->bus = &balloon_subsys;
249
	dev->groups = balloon_groups;
250

251
	error = device_register(dev);
252
	if (error) {
253
		bus_unregister(&balloon_subsys);
254 255 256 257 258
		return error;
	}

	return 0;
}