]> err.no Git - linux-2.6/blob - drivers/s390/char/vmcp.c
vmcp: BKL pushdown
[linux-2.6] / drivers / s390 / char / vmcp.c
1 /*
2  * Copyright IBM Corp. 2004,2007
3  * Interface implementation for communication with the z/VM control program
4  * Author(s): Christian Borntraeger <borntraeger@de.ibm.com>
5  *
6  *
7  * z/VMs CP offers the possibility to issue commands via the diagnose code 8
8  * this driver implements a character device that issues these commands and
9  * returns the answer of CP.
10
11  * The idea of this driver is based on cpint from Neale Ferguson and #CP in CMS
12  */
13
14 #include <linux/fs.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/miscdevice.h>
18 #include <linux/module.h>
19 #include <linux/smp_lock.h>
20 #include <asm/cpcmd.h>
21 #include <asm/debug.h>
22 #include <asm/uaccess.h>
23 #include "vmcp.h"
24
25 MODULE_LICENSE("GPL");
26 MODULE_AUTHOR("Christian Borntraeger <borntraeger@de.ibm.com>");
27 MODULE_DESCRIPTION("z/VM CP interface");
28
29 #define PRINTK_HEADER "vmcp: "
30
31 static debug_info_t *vmcp_debug;
32
33 static int vmcp_open(struct inode *inode, struct file *file)
34 {
35         struct vmcp_session *session;
36
37         if (!capable(CAP_SYS_ADMIN))
38                 return -EPERM;
39
40         session = kmalloc(sizeof(*session), GFP_KERNEL);
41         if (!session)
42                 return -ENOMEM;
43
44         lock_kernel();
45         session->bufsize = PAGE_SIZE;
46         session->response = NULL;
47         session->resp_size = 0;
48         mutex_init(&session->mutex);
49         file->private_data = session;
50         unlock_kernel();
51         return nonseekable_open(inode, file);
52 }
53
54 static int vmcp_release(struct inode *inode, struct file *file)
55 {
56         struct vmcp_session *session;
57
58         session = (struct vmcp_session *)file->private_data;
59         file->private_data = NULL;
60         free_pages((unsigned long)session->response, get_order(session->bufsize));
61         kfree(session);
62         return 0;
63 }
64
65 static ssize_t
66 vmcp_read(struct file *file, char __user *buff, size_t count, loff_t *ppos)
67 {
68         size_t tocopy;
69         struct vmcp_session *session;
70
71         session = (struct vmcp_session *)file->private_data;
72         if (mutex_lock_interruptible(&session->mutex))
73                 return -ERESTARTSYS;
74         if (!session->response) {
75                 mutex_unlock(&session->mutex);
76                 return 0;
77         }
78         if (*ppos > session->resp_size) {
79                 mutex_unlock(&session->mutex);
80                 return 0;
81         }
82         tocopy = min(session->resp_size - (size_t) (*ppos), count);
83         tocopy = min(tocopy, session->bufsize - (size_t) (*ppos));
84
85         if (copy_to_user(buff, session->response + (*ppos), tocopy)) {
86                 mutex_unlock(&session->mutex);
87                 return -EFAULT;
88         }
89         mutex_unlock(&session->mutex);
90         *ppos += tocopy;
91         return tocopy;
92 }
93
94 static ssize_t
95 vmcp_write(struct file *file, const char __user *buff, size_t count,
96            loff_t *ppos)
97 {
98         char *cmd;
99         struct vmcp_session *session;
100
101         if (count > 240)
102                 return -EINVAL;
103         cmd = kmalloc(count + 1, GFP_KERNEL);
104         if (!cmd)
105                 return -ENOMEM;
106         if (copy_from_user(cmd, buff, count)) {
107                 kfree(cmd);
108                 return -EFAULT;
109         }
110         cmd[count] = '\0';
111         session = (struct vmcp_session *)file->private_data;
112         if (mutex_lock_interruptible(&session->mutex)) {
113                 kfree(cmd);
114                 return -ERESTARTSYS;
115         }
116         if (!session->response)
117                 session->response = (char *)__get_free_pages(GFP_KERNEL
118                                                 | __GFP_REPEAT | GFP_DMA,
119                                                 get_order(session->bufsize));
120         if (!session->response) {
121                 mutex_unlock(&session->mutex);
122                 kfree(cmd);
123                 return -ENOMEM;
124         }
125         debug_text_event(vmcp_debug, 1, cmd);
126         session->resp_size = cpcmd(cmd, session->response, session->bufsize,
127                                    &session->resp_code);
128         mutex_unlock(&session->mutex);
129         kfree(cmd);
130         *ppos = 0;              /* reset the file pointer after a command */
131         return count;
132 }
133
134
135 /*
136  * These ioctls are available, as the semantics of the diagnose 8 call
137  * does not fit very well into a Linux call. Diagnose X'08' is described in
138  * CP Programming Services SC24-6084-00
139  *
140  * VMCP_GETCODE: gives the CP return code back to user space
141  * VMCP_SETBUF: sets the response buffer for the next write call. diagnose 8
142  * expects adjacent pages in real storage and to make matters worse, we
143  * dont know the size of the response. Therefore we default to PAGESIZE and
144  * let userspace to change the response size, if userspace expects a bigger
145  * response
146  */
147 static long vmcp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
148 {
149         struct vmcp_session *session;
150         int temp;
151
152         session = (struct vmcp_session *)file->private_data;
153         if (mutex_lock_interruptible(&session->mutex))
154                 return -ERESTARTSYS;
155         switch (cmd) {
156         case VMCP_GETCODE:
157                 temp = session->resp_code;
158                 mutex_unlock(&session->mutex);
159                 return put_user(temp, (int __user *)arg);
160         case VMCP_SETBUF:
161                 free_pages((unsigned long)session->response,
162                                 get_order(session->bufsize));
163                 session->response=NULL;
164                 temp = get_user(session->bufsize, (int __user *)arg);
165                 if (get_order(session->bufsize) > 8) {
166                         session->bufsize = PAGE_SIZE;
167                         temp = -EINVAL;
168                 }
169                 mutex_unlock(&session->mutex);
170                 return temp;
171         case VMCP_GETSIZE:
172                 temp = session->resp_size;
173                 mutex_unlock(&session->mutex);
174                 return put_user(temp, (int __user *)arg);
175         default:
176                 mutex_unlock(&session->mutex);
177                 return -ENOIOCTLCMD;
178         }
179 }
180
181 static const struct file_operations vmcp_fops = {
182         .owner          = THIS_MODULE,
183         .open           = vmcp_open,
184         .release        = vmcp_release,
185         .read           = vmcp_read,
186         .write          = vmcp_write,
187         .unlocked_ioctl = vmcp_ioctl,
188         .compat_ioctl   = vmcp_ioctl,
189 };
190
191 static struct miscdevice vmcp_dev = {
192         .name   = "vmcp",
193         .minor  = MISC_DYNAMIC_MINOR,
194         .fops   = &vmcp_fops,
195 };
196
197 static int __init vmcp_init(void)
198 {
199         int ret;
200
201         if (!MACHINE_IS_VM) {
202                 PRINT_WARN("z/VM CP interface is only available under z/VM\n");
203                 return -ENODEV;
204         }
205         vmcp_debug = debug_register("vmcp", 1, 1, 240);
206         if (!vmcp_debug) {
207                 PRINT_ERR("z/VM CP interface not loaded. Could not register "
208                            "debug feature\n");
209                 return -ENOMEM;
210         }
211         ret = debug_register_view(vmcp_debug, &debug_hex_ascii_view);
212         if (ret) {
213                 PRINT_ERR("z/VM CP interface not loaded. Could not register "
214                           "debug feature view. Error code: %d\n", ret);
215                 debug_unregister(vmcp_debug);
216                 return ret;
217         }
218         ret = misc_register(&vmcp_dev);
219         if (ret) {
220                 PRINT_ERR("z/VM CP interface not loaded. Could not register "
221                            "misc device. Error code: %d\n", ret);
222                 debug_unregister(vmcp_debug);
223                 return ret;
224         }
225         PRINT_INFO("z/VM CP interface loaded\n");
226         return 0;
227 }
228
229 static void __exit vmcp_exit(void)
230 {
231         misc_deregister(&vmcp_dev);
232         debug_unregister(vmcp_debug);
233         PRINT_INFO("z/VM CP interface unloaded.\n");
234 }
235
236 module_init(vmcp_init);
237 module_exit(vmcp_exit);