blob: c511071bfd79bfac075012eb52f90d9a45646acc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * event.c - exporting ACPI events via procfs
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 */
8
9#include <linux/spinlock.h>
10#include <linux/proc_fs.h>
11#include <linux/init.h>
12#include <linux/poll.h>
13#include <acpi/acpi_drivers.h>
Zhang Rui864bdfb2007-06-19 11:40:03 +080014#include <net/netlink.h>
15#include <net/genetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Len Browna192a952009-07-28 16:45:54 -040017#include "internal.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define _COMPONENT ACPI_SYSTEM_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050020ACPI_MODULE_NAME("event");
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Len Brown14e04fb2007-08-23 15:20:26 -040022#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* Global vars for handling event proc entry */
24static DEFINE_SPINLOCK(acpi_system_event_lock);
Len Brown4be44fc2005-08-05 00:44:28 -040025int event_is_open = 0;
26extern struct list_head acpi_bus_event_list;
27extern wait_queue_head_t acpi_bus_event_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Len Brown4be44fc2005-08-05 00:44:28 -040029static int acpi_system_open_event(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Pavel Machekc65ade42005-08-05 00:37:45 -040031 spin_lock_irq(&acpi_system_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Pavel Machekc65ade42005-08-05 00:37:45 -040033 if (event_is_open)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 goto out_busy;
35
36 event_is_open = 1;
37
Pavel Machekc65ade42005-08-05 00:37:45 -040038 spin_unlock_irq(&acpi_system_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 return 0;
40
Len Brown4be44fc2005-08-05 00:44:28 -040041 out_busy:
Pavel Machekc65ade42005-08-05 00:37:45 -040042 spin_unlock_irq(&acpi_system_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return -EBUSY;
44}
45
46static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -040047acpi_system_read_event(struct file *file, char __user * buffer, size_t count,
48 loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Len Brown4be44fc2005-08-05 00:44:28 -040050 int result = 0;
51 struct acpi_bus_event event;
52 static char str[ACPI_MAX_STRING];
53 static int chars_remaining = 0;
54 static char *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (!chars_remaining) {
57 memset(&event, 0, sizeof(struct acpi_bus_event));
58
59 if ((file->f_flags & O_NONBLOCK)
60 && (list_empty(&acpi_bus_event_list)))
Patrick Mocheld550d982006-06-27 00:41:40 -040061 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 result = acpi_bus_receive_event(&event);
Pavel Machek5cc9eee2005-10-17 16:43:31 -070064 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -040065 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Len Brown4be44fc2005-08-05 00:44:28 -040067 chars_remaining = sprintf(str, "%s %s %08x %08x\n",
68 event.device_class ? event.
69 device_class : "<unknown>",
70 event.bus_id ? event.
71 bus_id : "<unknown>", event.type,
72 event.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 ptr = str;
74 }
75
76 if (chars_remaining < count) {
77 count = chars_remaining;
78 }
79
80 if (copy_to_user(buffer, ptr, count))
Patrick Mocheld550d982006-06-27 00:41:40 -040081 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 *ppos += count;
84 chars_remaining -= count;
85 ptr += count;
86
Patrick Mocheld550d982006-06-27 00:41:40 -040087 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Len Brown4be44fc2005-08-05 00:44:28 -040090static int acpi_system_close_event(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Len Brown4be44fc2005-08-05 00:44:28 -040092 spin_lock_irq(&acpi_system_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 event_is_open = 0;
Len Brown4be44fc2005-08-05 00:44:28 -040094 spin_unlock_irq(&acpi_system_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return 0;
96}
97
Len Brown4be44fc2005-08-05 00:44:28 -040098static unsigned int acpi_system_poll_event(struct file *file, poll_table * wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 poll_wait(file, &acpi_bus_event_queue, wait);
101 if (!list_empty(&acpi_bus_event_list))
102 return POLLIN | POLLRDNORM;
103 return 0;
104}
105
Arjan van de Vend7508032006-07-04 13:06:00 -0400106static const struct file_operations acpi_system_event_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700107 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400108 .open = acpi_system_open_event,
109 .read = acpi_system_read_event,
110 .release = acpi_system_close_event,
111 .poll = acpi_system_poll_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
Len Brown14e04fb2007-08-23 15:20:26 -0400113#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Zhang Rui9ee85242008-01-25 14:48:06 +0800115/* ACPI notifier chain */
Adrian Bunkc8e773f2008-02-13 23:29:57 +0200116static BLOCKING_NOTIFIER_HEAD(acpi_chain_head);
Zhang Rui9ee85242008-01-25 14:48:06 +0800117
118int acpi_notifier_call_chain(struct acpi_device *dev, u32 type, u32 data)
119{
120 struct acpi_bus_event event;
121
122 strcpy(event.device_class, dev->pnp.device_class);
123 strcpy(event.bus_id, dev->pnp.bus_id);
124 event.type = type;
125 event.data = data;
126 return (blocking_notifier_call_chain(&acpi_chain_head, 0, (void *)&event)
127 == NOTIFY_BAD) ? -EINVAL : 0;
128}
129EXPORT_SYMBOL(acpi_notifier_call_chain);
130
131int register_acpi_notifier(struct notifier_block *nb)
132{
133 return blocking_notifier_chain_register(&acpi_chain_head, nb);
134}
135EXPORT_SYMBOL(register_acpi_notifier);
136
137int unregister_acpi_notifier(struct notifier_block *nb)
138{
139 return blocking_notifier_chain_unregister(&acpi_chain_head, nb);
140}
141EXPORT_SYMBOL(unregister_acpi_notifier);
142
Zhang Rui864bdfb2007-06-19 11:40:03 +0800143#ifdef CONFIG_NET
Adrian Bunke13d8742007-08-10 13:45:18 -0700144static unsigned int acpi_event_seqnum;
Zhang Rui864bdfb2007-06-19 11:40:03 +0800145struct acpi_genl_event {
146 acpi_device_class device_class;
147 char bus_id[15];
148 u32 type;
149 u32 data;
150};
151
152/* attributes of acpi_genl_family */
153enum {
154 ACPI_GENL_ATTR_UNSPEC,
155 ACPI_GENL_ATTR_EVENT, /* ACPI event info needed by user space */
156 __ACPI_GENL_ATTR_MAX,
157};
158#define ACPI_GENL_ATTR_MAX (__ACPI_GENL_ATTR_MAX - 1)
159
160/* commands supported by the acpi_genl_family */
161enum {
162 ACPI_GENL_CMD_UNSPEC,
163 ACPI_GENL_CMD_EVENT, /* kernel->user notifications for ACPI events */
164 __ACPI_GENL_CMD_MAX,
165};
166#define ACPI_GENL_CMD_MAX (__ACPI_GENL_CMD_MAX - 1)
167
Zhang Rui9c977a42007-07-20 16:41:14 +0800168#define ACPI_GENL_FAMILY_NAME "acpi_event"
169#define ACPI_GENL_VERSION 0x01
170#define ACPI_GENL_MCAST_GROUP_NAME "acpi_mc_group"
Zhang Rui864bdfb2007-06-19 11:40:03 +0800171
172static struct genl_family acpi_event_genl_family = {
173 .id = GENL_ID_GENERATE,
Zhang Rui9c977a42007-07-20 16:41:14 +0800174 .name = ACPI_GENL_FAMILY_NAME,
Zhang Rui864bdfb2007-06-19 11:40:03 +0800175 .version = ACPI_GENL_VERSION,
176 .maxattr = ACPI_GENL_ATTR_MAX,
177};
178
Zhang Rui9c977a42007-07-20 16:41:14 +0800179static struct genl_multicast_group acpi_event_mcgrp = {
180 .name = ACPI_GENL_MCAST_GROUP_NAME,
Zhang Rui864bdfb2007-06-19 11:40:03 +0800181};
182
Zhang Rui962ce8c2007-08-23 01:24:31 +0800183int acpi_bus_generate_netlink_event(const char *device_class,
184 const char *bus_id,
Zhang Rui864bdfb2007-06-19 11:40:03 +0800185 u8 type, int data)
186{
187 struct sk_buff *skb;
188 struct nlattr *attr;
189 struct acpi_genl_event *event;
190 void *msg_header;
191 int size;
192 int result;
193
194 /* allocate memory */
195 size = nla_total_size(sizeof(struct acpi_genl_event)) +
196 nla_total_size(0);
197
198 skb = genlmsg_new(size, GFP_ATOMIC);
199 if (!skb)
200 return -ENOMEM;
201
202 /* add the genetlink message header */
203 msg_header = genlmsg_put(skb, 0, acpi_event_seqnum++,
204 &acpi_event_genl_family, 0,
205 ACPI_GENL_CMD_EVENT);
206 if (!msg_header) {
207 nlmsg_free(skb);
208 return -ENOMEM;
209 }
210
211 /* fill the data */
212 attr =
213 nla_reserve(skb, ACPI_GENL_ATTR_EVENT,
214 sizeof(struct acpi_genl_event));
215 if (!attr) {
216 nlmsg_free(skb);
217 return -EINVAL;
218 }
219
220 event = nla_data(attr);
221 if (!event) {
222 nlmsg_free(skb);
223 return -EINVAL;
224 }
225
226 memset(event, 0, sizeof(struct acpi_genl_event));
227
Zhang Rui962ce8c2007-08-23 01:24:31 +0800228 strcpy(event->device_class, device_class);
229 strcpy(event->bus_id, bus_id);
Zhang Rui864bdfb2007-06-19 11:40:03 +0800230 event->type = type;
231 event->data = data;
232
233 /* send multicast genetlink message */
234 result = genlmsg_end(skb, msg_header);
235 if (result < 0) {
236 nlmsg_free(skb);
237 return result;
238 }
239
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800240 genlmsg_multicast(skb, 0, acpi_event_mcgrp.id, GFP_ATOMIC);
Zhang Rui864bdfb2007-06-19 11:40:03 +0800241 return 0;
242}
Zhang Rui864bdfb2007-06-19 11:40:03 +0800243
Zhang Rui962ce8c2007-08-23 01:24:31 +0800244EXPORT_SYMBOL(acpi_bus_generate_netlink_event);
245
Zhang Rui864bdfb2007-06-19 11:40:03 +0800246static int acpi_event_genetlink_init(void)
247{
248 int result;
249
250 result = genl_register_family(&acpi_event_genl_family);
251 if (result)
252 return result;
253
Zhang Rui9c977a42007-07-20 16:41:14 +0800254 result = genl_register_mc_group(&acpi_event_genl_family,
255 &acpi_event_mcgrp);
Zhang Rui864bdfb2007-06-19 11:40:03 +0800256 if (result)
257 genl_unregister_family(&acpi_event_genl_family);
258
259 return result;
260}
261
262#else
Len Brown3e069ee2007-08-24 03:06:33 -0400263int acpi_bus_generate_netlink_event(const char *device_class,
264 const char *bus_id,
265 u8 type, int data)
Zhang Rui864bdfb2007-06-19 11:40:03 +0800266{
267 return 0;
268}
Zhang Rui864bdfb2007-06-19 11:40:03 +0800269
Henrique de Moraes Holschuh66baf322007-09-03 00:03:35 -0300270EXPORT_SYMBOL(acpi_bus_generate_netlink_event);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800271
Zhang Rui864bdfb2007-06-19 11:40:03 +0800272static int acpi_event_genetlink_init(void)
273{
274 return -ENODEV;
275}
276#endif
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static int __init acpi_event_init(void)
279{
Len Brown14e04fb2007-08-23 15:20:26 -0400280#ifdef CONFIG_ACPI_PROC_EVENT
Len Brown4be44fc2005-08-05 00:44:28 -0400281 struct proc_dir_entry *entry;
Len Brown14e04fb2007-08-23 15:20:26 -0400282#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 int error = 0;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400286 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Zhang Rui864bdfb2007-06-19 11:40:03 +0800288 /* create genetlink for acpi event */
289 error = acpi_event_genetlink_init();
290 if (error)
291 printk(KERN_WARNING PREFIX
292 "Failed to create genetlink family for ACPI event\n");
293
Len Brown14e04fb2007-08-23 15:20:26 -0400294#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* 'event' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700296 entry = proc_create("event", S_IRUSR, acpi_root_dir,
297 &acpi_system_event_ops);
298 if (!entry)
Zhang Rui864bdfb2007-06-19 11:40:03 +0800299 return -ENODEV;
Len Brown14e04fb2007-08-23 15:20:26 -0400300#endif
Zhang Rui864bdfb2007-06-19 11:40:03 +0800301
302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Zhang Rui864bdfb2007-06-19 11:40:03 +0800305fs_initcall(acpi_event_init);