[PATCH] fix up ipmi code after class_simple.c removal
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / char / ipmi / ipmi_devintf.c
blob88d1ad656e99a2df138122225992d7cb91f3d728
1 /*
2 * ipmi_devintf.c
4 * Linux device interface for the IPMI message handler.
6 * Author: MontaVista Software, Inc.
7 * Corey Minyard <minyard@mvista.com>
8 * source@mvista.com
10 * Copyright 2002 MontaVista Software Inc.
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
24 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
27 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * You should have received a copy of the GNU General Public License along
30 * with this program; if not, write to the Free Software Foundation, Inc.,
31 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 #include <linux/config.h>
35 #include <linux/module.h>
36 #include <linux/moduleparam.h>
37 #include <linux/errno.h>
38 #include <asm/system.h>
39 #include <linux/sched.h>
40 #include <linux/poll.h>
41 #include <linux/spinlock.h>
42 #include <linux/slab.h>
43 #include <linux/devfs_fs_kernel.h>
44 #include <linux/ipmi.h>
45 #include <asm/semaphore.h>
46 #include <linux/init.h>
47 #include <linux/device.h>
49 #define IPMI_DEVINTF_VERSION "v33"
51 struct ipmi_file_private
53 ipmi_user_t user;
54 spinlock_t recv_msg_lock;
55 struct list_head recv_msgs;
56 struct file *file;
57 struct fasync_struct *fasync_queue;
58 wait_queue_head_t wait;
59 struct semaphore recv_sem;
60 int default_retries;
61 unsigned int default_retry_time_ms;
64 static void file_receive_handler(struct ipmi_recv_msg *msg,
65 void *handler_data)
67 struct ipmi_file_private *priv = handler_data;
68 int was_empty;
69 unsigned long flags;
71 spin_lock_irqsave(&(priv->recv_msg_lock), flags);
73 was_empty = list_empty(&(priv->recv_msgs));
74 list_add_tail(&(msg->link), &(priv->recv_msgs));
76 if (was_empty) {
77 wake_up_interruptible(&priv->wait);
78 kill_fasync(&priv->fasync_queue, SIGIO, POLL_IN);
81 spin_unlock_irqrestore(&(priv->recv_msg_lock), flags);
84 static unsigned int ipmi_poll(struct file *file, poll_table *wait)
86 struct ipmi_file_private *priv = file->private_data;
87 unsigned int mask = 0;
88 unsigned long flags;
90 poll_wait(file, &priv->wait, wait);
92 spin_lock_irqsave(&priv->recv_msg_lock, flags);
94 if (! list_empty(&(priv->recv_msgs)))
95 mask |= (POLLIN | POLLRDNORM);
97 spin_unlock_irqrestore(&priv->recv_msg_lock, flags);
99 return mask;
102 static int ipmi_fasync(int fd, struct file *file, int on)
104 struct ipmi_file_private *priv = file->private_data;
105 int result;
107 result = fasync_helper(fd, file, on, &priv->fasync_queue);
109 return (result);
112 static struct ipmi_user_hndl ipmi_hndlrs =
114 .ipmi_recv_hndl = file_receive_handler,
117 static int ipmi_open(struct inode *inode, struct file *file)
119 int if_num = iminor(inode);
120 int rv;
121 struct ipmi_file_private *priv;
124 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
125 if (!priv)
126 return -ENOMEM;
128 priv->file = file;
130 rv = ipmi_create_user(if_num,
131 &ipmi_hndlrs,
132 priv,
133 &(priv->user));
134 if (rv) {
135 kfree(priv);
136 return rv;
139 file->private_data = priv;
141 spin_lock_init(&(priv->recv_msg_lock));
142 INIT_LIST_HEAD(&(priv->recv_msgs));
143 init_waitqueue_head(&priv->wait);
144 priv->fasync_queue = NULL;
145 sema_init(&(priv->recv_sem), 1);
147 /* Use the low-level defaults. */
148 priv->default_retries = -1;
149 priv->default_retry_time_ms = 0;
151 return 0;
154 static int ipmi_release(struct inode *inode, struct file *file)
156 struct ipmi_file_private *priv = file->private_data;
157 int rv;
159 rv = ipmi_destroy_user(priv->user);
160 if (rv)
161 return rv;
163 ipmi_fasync (-1, file, 0);
165 /* FIXME - free the messages in the list. */
166 kfree(priv);
168 return 0;
171 static int handle_send_req(ipmi_user_t user,
172 struct ipmi_req *req,
173 int retries,
174 unsigned int retry_time_ms)
176 int rv;
177 struct ipmi_addr addr;
178 struct kernel_ipmi_msg msg;
180 if (req->addr_len > sizeof(struct ipmi_addr))
181 return -EINVAL;
183 if (copy_from_user(&addr, req->addr, req->addr_len))
184 return -EFAULT;
186 msg.netfn = req->msg.netfn;
187 msg.cmd = req->msg.cmd;
188 msg.data_len = req->msg.data_len;
189 msg.data = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL);
190 if (!msg.data)
191 return -ENOMEM;
193 /* From here out we cannot return, we must jump to "out" for
194 error exits to free msgdata. */
196 rv = ipmi_validate_addr(&addr, req->addr_len);
197 if (rv)
198 goto out;
200 if (req->msg.data != NULL) {
201 if (req->msg.data_len > IPMI_MAX_MSG_LENGTH) {
202 rv = -EMSGSIZE;
203 goto out;
206 if (copy_from_user(msg.data,
207 req->msg.data,
208 req->msg.data_len))
210 rv = -EFAULT;
211 goto out;
213 } else {
214 msg.data_len = 0;
217 rv = ipmi_request_settime(user,
218 &addr,
219 req->msgid,
220 &msg,
221 NULL,
223 retries,
224 retry_time_ms);
225 out:
226 kfree(msg.data);
227 return rv;
230 static int ipmi_ioctl(struct inode *inode,
231 struct file *file,
232 unsigned int cmd,
233 unsigned long data)
235 int rv = -EINVAL;
236 struct ipmi_file_private *priv = file->private_data;
237 void __user *arg = (void __user *)data;
239 switch (cmd)
241 case IPMICTL_SEND_COMMAND:
243 struct ipmi_req req;
245 if (copy_from_user(&req, arg, sizeof(req))) {
246 rv = -EFAULT;
247 break;
250 rv = handle_send_req(priv->user,
251 &req,
252 priv->default_retries,
253 priv->default_retry_time_ms);
254 break;
257 case IPMICTL_SEND_COMMAND_SETTIME:
259 struct ipmi_req_settime req;
261 if (copy_from_user(&req, arg, sizeof(req))) {
262 rv = -EFAULT;
263 break;
266 rv = handle_send_req(priv->user,
267 &req.req,
268 req.retries,
269 req.retry_time_ms);
270 break;
273 case IPMICTL_RECEIVE_MSG:
274 case IPMICTL_RECEIVE_MSG_TRUNC:
276 struct ipmi_recv rsp;
277 int addr_len;
278 struct list_head *entry;
279 struct ipmi_recv_msg *msg;
280 unsigned long flags;
283 rv = 0;
284 if (copy_from_user(&rsp, arg, sizeof(rsp))) {
285 rv = -EFAULT;
286 break;
289 /* We claim a semaphore because we don't want two
290 users getting something from the queue at a time.
291 Since we have to release the spinlock before we can
292 copy the data to the user, it's possible another
293 user will grab something from the queue, too. Then
294 the messages might get out of order if something
295 fails and the message gets put back onto the
296 queue. This semaphore prevents that problem. */
297 down(&(priv->recv_sem));
299 /* Grab the message off the list. */
300 spin_lock_irqsave(&(priv->recv_msg_lock), flags);
301 if (list_empty(&(priv->recv_msgs))) {
302 spin_unlock_irqrestore(&(priv->recv_msg_lock), flags);
303 rv = -EAGAIN;
304 goto recv_err;
306 entry = priv->recv_msgs.next;
307 msg = list_entry(entry, struct ipmi_recv_msg, link);
308 list_del(entry);
309 spin_unlock_irqrestore(&(priv->recv_msg_lock), flags);
311 addr_len = ipmi_addr_length(msg->addr.addr_type);
312 if (rsp.addr_len < addr_len)
314 rv = -EINVAL;
315 goto recv_putback_on_err;
318 if (copy_to_user(rsp.addr, &(msg->addr), addr_len)) {
319 rv = -EFAULT;
320 goto recv_putback_on_err;
322 rsp.addr_len = addr_len;
324 rsp.recv_type = msg->recv_type;
325 rsp.msgid = msg->msgid;
326 rsp.msg.netfn = msg->msg.netfn;
327 rsp.msg.cmd = msg->msg.cmd;
329 if (msg->msg.data_len > 0) {
330 if (rsp.msg.data_len < msg->msg.data_len) {
331 rv = -EMSGSIZE;
332 if (cmd == IPMICTL_RECEIVE_MSG_TRUNC) {
333 msg->msg.data_len = rsp.msg.data_len;
334 } else {
335 goto recv_putback_on_err;
339 if (copy_to_user(rsp.msg.data,
340 msg->msg.data,
341 msg->msg.data_len))
343 rv = -EFAULT;
344 goto recv_putback_on_err;
346 rsp.msg.data_len = msg->msg.data_len;
347 } else {
348 rsp.msg.data_len = 0;
351 if (copy_to_user(arg, &rsp, sizeof(rsp))) {
352 rv = -EFAULT;
353 goto recv_putback_on_err;
356 up(&(priv->recv_sem));
357 ipmi_free_recv_msg(msg);
358 break;
360 recv_putback_on_err:
361 /* If we got an error, put the message back onto
362 the head of the queue. */
363 spin_lock_irqsave(&(priv->recv_msg_lock), flags);
364 list_add(entry, &(priv->recv_msgs));
365 spin_unlock_irqrestore(&(priv->recv_msg_lock), flags);
366 up(&(priv->recv_sem));
367 break;
369 recv_err:
370 up(&(priv->recv_sem));
371 break;
374 case IPMICTL_REGISTER_FOR_CMD:
376 struct ipmi_cmdspec val;
378 if (copy_from_user(&val, arg, sizeof(val))) {
379 rv = -EFAULT;
380 break;
383 rv = ipmi_register_for_cmd(priv->user, val.netfn, val.cmd);
384 break;
387 case IPMICTL_UNREGISTER_FOR_CMD:
389 struct ipmi_cmdspec val;
391 if (copy_from_user(&val, arg, sizeof(val))) {
392 rv = -EFAULT;
393 break;
396 rv = ipmi_unregister_for_cmd(priv->user, val.netfn, val.cmd);
397 break;
400 case IPMICTL_SET_GETS_EVENTS_CMD:
402 int val;
404 if (copy_from_user(&val, arg, sizeof(val))) {
405 rv = -EFAULT;
406 break;
409 rv = ipmi_set_gets_events(priv->user, val);
410 break;
413 case IPMICTL_SET_MY_ADDRESS_CMD:
415 unsigned int val;
417 if (copy_from_user(&val, arg, sizeof(val))) {
418 rv = -EFAULT;
419 break;
422 ipmi_set_my_address(priv->user, val);
423 rv = 0;
424 break;
427 case IPMICTL_GET_MY_ADDRESS_CMD:
429 unsigned int val;
431 val = ipmi_get_my_address(priv->user);
433 if (copy_to_user(arg, &val, sizeof(val))) {
434 rv = -EFAULT;
435 break;
437 rv = 0;
438 break;
441 case IPMICTL_SET_MY_LUN_CMD:
443 unsigned int val;
445 if (copy_from_user(&val, arg, sizeof(val))) {
446 rv = -EFAULT;
447 break;
450 ipmi_set_my_LUN(priv->user, val);
451 rv = 0;
452 break;
455 case IPMICTL_GET_MY_LUN_CMD:
457 unsigned int val;
459 val = ipmi_get_my_LUN(priv->user);
461 if (copy_to_user(arg, &val, sizeof(val))) {
462 rv = -EFAULT;
463 break;
465 rv = 0;
466 break;
468 case IPMICTL_SET_TIMING_PARMS_CMD:
470 struct ipmi_timing_parms parms;
472 if (copy_from_user(&parms, arg, sizeof(parms))) {
473 rv = -EFAULT;
474 break;
477 priv->default_retries = parms.retries;
478 priv->default_retry_time_ms = parms.retry_time_ms;
479 rv = 0;
480 break;
483 case IPMICTL_GET_TIMING_PARMS_CMD:
485 struct ipmi_timing_parms parms;
487 parms.retries = priv->default_retries;
488 parms.retry_time_ms = priv->default_retry_time_ms;
490 if (copy_to_user(arg, &parms, sizeof(parms))) {
491 rv = -EFAULT;
492 break;
495 rv = 0;
496 break;
500 return rv;
504 static struct file_operations ipmi_fops = {
505 .owner = THIS_MODULE,
506 .ioctl = ipmi_ioctl,
507 .open = ipmi_open,
508 .release = ipmi_release,
509 .fasync = ipmi_fasync,
510 .poll = ipmi_poll,
513 #define DEVICE_NAME "ipmidev"
515 static int ipmi_major = 0;
516 module_param(ipmi_major, int, 0);
517 MODULE_PARM_DESC(ipmi_major, "Sets the major number of the IPMI device. By"
518 " default, or if you set it to zero, it will choose the next"
519 " available device. Setting it to -1 will disable the"
520 " interface. Other values will set the major device number"
521 " to that value.");
523 static struct class *ipmi_class;
525 static void ipmi_new_smi(int if_num)
527 dev_t dev = MKDEV(ipmi_major, if_num);
529 devfs_mk_cdev(dev, S_IFCHR | S_IRUSR | S_IWUSR,
530 "ipmidev/%d", if_num);
532 class_device_create(ipmi_class, dev, NULL, "ipmi%d", if_num);
535 static void ipmi_smi_gone(int if_num)
537 class_device_destroy(ipmi_class, MKDEV(ipmi_major, if_num));
538 devfs_remove("ipmidev/%d", if_num);
541 static struct ipmi_smi_watcher smi_watcher =
543 .owner = THIS_MODULE,
544 .new_smi = ipmi_new_smi,
545 .smi_gone = ipmi_smi_gone,
548 static __init int init_ipmi_devintf(void)
550 int rv;
552 if (ipmi_major < 0)
553 return -EINVAL;
555 printk(KERN_INFO "ipmi device interface version "
556 IPMI_DEVINTF_VERSION "\n");
558 ipmi_class = class_create(THIS_MODULE, "ipmi");
559 if (IS_ERR(ipmi_class)) {
560 printk(KERN_ERR "ipmi: can't register device class\n");
561 return PTR_ERR(ipmi_class);
564 rv = register_chrdev(ipmi_major, DEVICE_NAME, &ipmi_fops);
565 if (rv < 0) {
566 class_destroy(ipmi_class);
567 printk(KERN_ERR "ipmi: can't get major %d\n", ipmi_major);
568 return rv;
571 if (ipmi_major == 0) {
572 ipmi_major = rv;
575 devfs_mk_dir(DEVICE_NAME);
577 rv = ipmi_smi_watcher_register(&smi_watcher);
578 if (rv) {
579 unregister_chrdev(ipmi_major, DEVICE_NAME);
580 class_destroy(ipmi_class);
581 printk(KERN_WARNING "ipmi: can't register smi watcher\n");
582 return rv;
585 return 0;
587 module_init(init_ipmi_devintf);
589 static __exit void cleanup_ipmi(void)
591 class_destroy(ipmi_class);
592 ipmi_smi_watcher_unregister(&smi_watcher);
593 devfs_remove(DEVICE_NAME);
594 unregister_chrdev(ipmi_major, DEVICE_NAME);
596 module_exit(cleanup_ipmi);
598 MODULE_LICENSE("GPL");