2 * Copyright IBM Corp. 2004, 2010
3 * Interface implementation for communication with the z/VM control program
5 * Author(s): Christian Borntraeger <borntraeger@de.ibm.com>
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.
11 * The idea of this driver is based on cpint from Neale Ferguson and #CP in CMS
15 #include <linux/init.h>
16 #include <linux/compat.h>
17 #include <linux/kernel.h>
18 #include <linux/miscdevice.h>
19 #include <linux/slab.h>
20 #include <linux/export.h>
21 #include <asm/compat.h>
22 #include <asm/cpcmd.h>
23 #include <asm/debug.h>
24 #include <asm/uaccess.h>
27 static debug_info_t
*vmcp_debug
;
29 static int vmcp_open(struct inode
*inode
, struct file
*file
)
31 struct vmcp_session
*session
;
33 if (!capable(CAP_SYS_ADMIN
))
36 session
= kmalloc(sizeof(*session
), GFP_KERNEL
);
40 session
->bufsize
= PAGE_SIZE
;
41 session
->response
= NULL
;
42 session
->resp_size
= 0;
43 mutex_init(&session
->mutex
);
44 file
->private_data
= session
;
45 return nonseekable_open(inode
, file
);
48 static int vmcp_release(struct inode
*inode
, struct file
*file
)
50 struct vmcp_session
*session
;
52 session
= file
->private_data
;
53 file
->private_data
= NULL
;
54 free_pages((unsigned long)session
->response
, get_order(session
->bufsize
));
60 vmcp_read(struct file
*file
, char __user
*buff
, size_t count
, loff_t
*ppos
)
64 struct vmcp_session
*session
;
66 session
= file
->private_data
;
67 if (mutex_lock_interruptible(&session
->mutex
))
69 if (!session
->response
) {
70 mutex_unlock(&session
->mutex
);
73 size
= min_t(size_t, session
->resp_size
, session
->bufsize
);
74 ret
= simple_read_from_buffer(buff
, count
, ppos
,
75 session
->response
, size
);
77 mutex_unlock(&session
->mutex
);
83 vmcp_write(struct file
*file
, const char __user
*buff
, size_t count
,
87 struct vmcp_session
*session
;
91 cmd
= memdup_user_nul(buff
, count
);
94 session
= file
->private_data
;
95 if (mutex_lock_interruptible(&session
->mutex
)) {
99 if (!session
->response
)
100 session
->response
= (char *)__get_free_pages(GFP_KERNEL
101 | __GFP_REPEAT
| GFP_DMA
,
102 get_order(session
->bufsize
));
103 if (!session
->response
) {
104 mutex_unlock(&session
->mutex
);
108 debug_text_event(vmcp_debug
, 1, cmd
);
109 session
->resp_size
= cpcmd(cmd
, session
->response
, session
->bufsize
,
110 &session
->resp_code
);
111 mutex_unlock(&session
->mutex
);
113 *ppos
= 0; /* reset the file pointer after a command */
119 * These ioctls are available, as the semantics of the diagnose 8 call
120 * does not fit very well into a Linux call. Diagnose X'08' is described in
121 * CP Programming Services SC24-6084-00
123 * VMCP_GETCODE: gives the CP return code back to user space
124 * VMCP_SETBUF: sets the response buffer for the next write call. diagnose 8
125 * expects adjacent pages in real storage and to make matters worse, we
126 * dont know the size of the response. Therefore we default to PAGESIZE and
127 * let userspace to change the response size, if userspace expects a bigger
130 static long vmcp_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
132 struct vmcp_session
*session
;
136 session
= file
->private_data
;
137 if (is_compat_task())
138 argp
= compat_ptr(arg
);
140 argp
= (int __user
*)arg
;
141 if (mutex_lock_interruptible(&session
->mutex
))
145 temp
= session
->resp_code
;
146 mutex_unlock(&session
->mutex
);
147 return put_user(temp
, argp
);
149 free_pages((unsigned long)session
->response
,
150 get_order(session
->bufsize
));
151 session
->response
=NULL
;
152 temp
= get_user(session
->bufsize
, argp
);
153 if (get_order(session
->bufsize
) > 8) {
154 session
->bufsize
= PAGE_SIZE
;
157 mutex_unlock(&session
->mutex
);
160 temp
= session
->resp_size
;
161 mutex_unlock(&session
->mutex
);
162 return put_user(temp
, argp
);
164 mutex_unlock(&session
->mutex
);
169 static const struct file_operations vmcp_fops
= {
170 .owner
= THIS_MODULE
,
172 .release
= vmcp_release
,
175 .unlocked_ioctl
= vmcp_ioctl
,
176 .compat_ioctl
= vmcp_ioctl
,
180 static struct miscdevice vmcp_dev
= {
182 .minor
= MISC_DYNAMIC_MINOR
,
186 static int __init
vmcp_init(void)
193 vmcp_debug
= debug_register("vmcp", 1, 1, 240);
197 ret
= debug_register_view(vmcp_debug
, &debug_hex_ascii_view
);
199 debug_unregister(vmcp_debug
);
203 ret
= misc_register(&vmcp_dev
);
205 debug_unregister(vmcp_debug
);
208 device_initcall(vmcp_init
);