1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <linux/fs.h>
16#include <linux/init.h>
17#include <linux/compat.h>
18#include <linux/kernel.h>
19#include <linux/miscdevice.h>
20#include <linux/slab.h>
21#include <linux/uaccess.h>
22#include <linux/export.h>
23#include <linux/mutex.h>
24#include <linux/cma.h>
25#include <linux/mm.h>
26#include <asm/compat.h>
27#include <asm/cpcmd.h>
28#include <asm/debug.h>
29#include <asm/vmcp.h>
30
31struct vmcp_session {
32 char *response;
33 unsigned int bufsize;
34 unsigned int cma_alloc : 1;
35 int resp_size;
36 int resp_code;
37 struct mutex mutex;
38};
39
40static debug_info_t *vmcp_debug;
41
42static unsigned long vmcp_cma_size __initdata = CONFIG_VMCP_CMA_SIZE * 1024 * 1024;
43static struct cma *vmcp_cma;
44
45static int __init early_parse_vmcp_cma(char *p)
46{
47 vmcp_cma_size = ALIGN(memparse(p, NULL), PAGE_SIZE);
48 return 0;
49}
50early_param("vmcp_cma", early_parse_vmcp_cma);
51
52void __init vmcp_cma_reserve(void)
53{
54 if (!MACHINE_IS_VM)
55 return;
56 cma_declare_contiguous(0, vmcp_cma_size, 0, 0, 0, false, "vmcp", &vmcp_cma);
57}
58
59static void vmcp_response_alloc(struct vmcp_session *session)
60{
61 struct page *page = NULL;
62 int nr_pages, order;
63
64 order = get_order(session->bufsize);
65 nr_pages = ALIGN(session->bufsize, PAGE_SIZE) >> PAGE_SHIFT;
66
67
68
69
70
71 if (order > 2)
72 page = cma_alloc(vmcp_cma, nr_pages, 0, GFP_KERNEL);
73 if (page) {
74 session->response = (char *)page_to_phys(page);
75 session->cma_alloc = 1;
76 return;
77 }
78 session->response = (char *)__get_free_pages(GFP_KERNEL | __GFP_RETRY_MAYFAIL, order);
79}
80
81static void vmcp_response_free(struct vmcp_session *session)
82{
83 int nr_pages, order;
84 struct page *page;
85
86 if (!session->response)
87 return;
88 order = get_order(session->bufsize);
89 nr_pages = ALIGN(session->bufsize, PAGE_SIZE) >> PAGE_SHIFT;
90 if (session->cma_alloc) {
91 page = phys_to_page((unsigned long)session->response);
92 cma_release(vmcp_cma, page, nr_pages);
93 session->cma_alloc = 0;
94 } else {
95 free_pages((unsigned long)session->response, order);
96 }
97 session->response = NULL;
98}
99
100static int vmcp_open(struct inode *inode, struct file *file)
101{
102 struct vmcp_session *session;
103
104 if (!capable(CAP_SYS_ADMIN))
105 return -EPERM;
106
107 session = kmalloc(sizeof(*session), GFP_KERNEL);
108 if (!session)
109 return -ENOMEM;
110
111 session->bufsize = PAGE_SIZE;
112 session->response = NULL;
113 session->resp_size = 0;
114 mutex_init(&session->mutex);
115 file->private_data = session;
116 return nonseekable_open(inode, file);
117}
118
119static int vmcp_release(struct inode *inode, struct file *file)
120{
121 struct vmcp_session *session;
122
123 session = file->private_data;
124 file->private_data = NULL;
125 vmcp_response_free(session);
126 kfree(session);
127 return 0;
128}
129
130static ssize_t
131vmcp_read(struct file *file, char __user *buff, size_t count, loff_t *ppos)
132{
133 ssize_t ret;
134 size_t size;
135 struct vmcp_session *session;
136
137 session = file->private_data;
138 if (mutex_lock_interruptible(&session->mutex))
139 return -ERESTARTSYS;
140 if (!session->response) {
141 mutex_unlock(&session->mutex);
142 return 0;
143 }
144 size = min_t(size_t, session->resp_size, session->bufsize);
145 ret = simple_read_from_buffer(buff, count, ppos,
146 session->response, size);
147
148 mutex_unlock(&session->mutex);
149
150 return ret;
151}
152
153static ssize_t
154vmcp_write(struct file *file, const char __user *buff, size_t count,
155 loff_t *ppos)
156{
157 char *cmd;
158 struct vmcp_session *session;
159
160 if (count > 240)
161 return -EINVAL;
162 cmd = memdup_user_nul(buff, count);
163 if (IS_ERR(cmd))
164 return PTR_ERR(cmd);
165 session = file->private_data;
166 if (mutex_lock_interruptible(&session->mutex)) {
167 kfree(cmd);
168 return -ERESTARTSYS;
169 }
170 if (!session->response)
171 vmcp_response_alloc(session);
172 if (!session->response) {
173 mutex_unlock(&session->mutex);
174 kfree(cmd);
175 return -ENOMEM;
176 }
177 debug_text_event(vmcp_debug, 1, cmd);
178 session->resp_size = cpcmd(cmd, session->response, session->bufsize,
179 &session->resp_code);
180 mutex_unlock(&session->mutex);
181 kfree(cmd);
182 *ppos = 0;
183 return count;
184}
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199static long vmcp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
200{
201 struct vmcp_session *session;
202 int ret = -ENOTTY;
203 int __user *argp;
204
205 session = file->private_data;
206 if (is_compat_task())
207 argp = compat_ptr(arg);
208 else
209 argp = (int __user *)arg;
210 if (mutex_lock_interruptible(&session->mutex))
211 return -ERESTARTSYS;
212 switch (cmd) {
213 case VMCP_GETCODE:
214 ret = put_user(session->resp_code, argp);
215 break;
216 case VMCP_SETBUF:
217 vmcp_response_free(session);
218 ret = get_user(session->bufsize, argp);
219 if (ret)
220 session->bufsize = PAGE_SIZE;
221 if (!session->bufsize || get_order(session->bufsize) > 8) {
222 session->bufsize = PAGE_SIZE;
223 ret = -EINVAL;
224 }
225 break;
226 case VMCP_GETSIZE:
227 ret = put_user(session->resp_size, argp);
228 break;
229 default:
230 break;
231 }
232 mutex_unlock(&session->mutex);
233 return ret;
234}
235
236static const struct file_operations vmcp_fops = {
237 .owner = THIS_MODULE,
238 .open = vmcp_open,
239 .release = vmcp_release,
240 .read = vmcp_read,
241 .write = vmcp_write,
242 .unlocked_ioctl = vmcp_ioctl,
243 .compat_ioctl = vmcp_ioctl,
244 .llseek = no_llseek,
245};
246
247static struct miscdevice vmcp_dev = {
248 .name = "vmcp",
249 .minor = MISC_DYNAMIC_MINOR,
250 .fops = &vmcp_fops,
251};
252
253static int __init vmcp_init(void)
254{
255 int ret;
256
257 if (!MACHINE_IS_VM)
258 return 0;
259
260 vmcp_debug = debug_register("vmcp", 1, 1, 240);
261 if (!vmcp_debug)
262 return -ENOMEM;
263
264 ret = debug_register_view(vmcp_debug, &debug_hex_ascii_view);
265 if (ret) {
266 debug_unregister(vmcp_debug);
267 return ret;
268 }
269
270 ret = misc_register(&vmcp_dev);
271 if (ret)
272 debug_unregister(vmcp_debug);
273 return ret;
274}
275device_initcall(vmcp_init);
276