diff options
| -rw-r--r-- | drivers/acpi/bus.c | 4 | ||||
| -rw-r--r-- | drivers/acpi/event.c | 153 | ||||
| -rw-r--r-- | include/acpi/acpi_bus.h | 3 |
3 files changed, 152 insertions, 8 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index e5084ececb6f..6b2658c96242 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c | |||
| @@ -292,6 +292,10 @@ int acpi_bus_generate_event(struct acpi_device *device, u8 type, int data) | |||
| 292 | if (!device) | 292 | if (!device) |
| 293 | return -EINVAL; | 293 | return -EINVAL; |
| 294 | 294 | ||
| 295 | if (acpi_bus_generate_genetlink_event(device, type, data)) | ||
| 296 | printk(KERN_WARNING PREFIX | ||
| 297 | "Failed to generate an ACPI event via genetlink!\n"); | ||
| 298 | |||
| 295 | /* drop event on the floor if no one's listening */ | 299 | /* drop event on the floor if no one's listening */ |
| 296 | if (!event_is_open) | 300 | if (!event_is_open) |
| 297 | return 0; | 301 | return 0; |
diff --git a/drivers/acpi/event.c b/drivers/acpi/event.c index 3b23562e6f92..dfa5853b17f0 100644 --- a/drivers/acpi/event.c +++ b/drivers/acpi/event.c | |||
| @@ -11,6 +11,8 @@ | |||
| 11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
| 12 | #include <linux/poll.h> | 12 | #include <linux/poll.h> |
| 13 | #include <acpi/acpi_drivers.h> | 13 | #include <acpi/acpi_drivers.h> |
| 14 | #include <net/netlink.h> | ||
| 15 | #include <net/genetlink.h> | ||
| 14 | 16 | ||
| 15 | #define _COMPONENT ACPI_SYSTEM_COMPONENT | 17 | #define _COMPONENT ACPI_SYSTEM_COMPONENT |
| 16 | ACPI_MODULE_NAME("event"); | 18 | ACPI_MODULE_NAME("event"); |
| @@ -48,7 +50,6 @@ acpi_system_read_event(struct file *file, char __user * buffer, size_t count, | |||
| 48 | static int chars_remaining = 0; | 50 | static int chars_remaining = 0; |
| 49 | static char *ptr; | 51 | static char *ptr; |
| 50 | 52 | ||
| 51 | |||
| 52 | if (!chars_remaining) { | 53 | if (!chars_remaining) { |
| 53 | memset(&event, 0, sizeof(struct acpi_bus_event)); | 54 | memset(&event, 0, sizeof(struct acpi_bus_event)); |
| 54 | 55 | ||
| @@ -106,23 +107,161 @@ static const struct file_operations acpi_system_event_ops = { | |||
| 106 | .poll = acpi_system_poll_event, | 107 | .poll = acpi_system_poll_event, |
| 107 | }; | 108 | }; |
| 108 | 109 | ||
| 110 | #ifdef CONFIG_NET | ||
| 111 | unsigned int acpi_event_seqnum; | ||
| 112 | struct acpi_genl_event { | ||
| 113 | acpi_device_class device_class; | ||
| 114 | char bus_id[15]; | ||
| 115 | u32 type; | ||
| 116 | u32 data; | ||
| 117 | }; | ||
| 118 | |||
| 119 | /* attributes of acpi_genl_family */ | ||
| 120 | enum { | ||
| 121 | ACPI_GENL_ATTR_UNSPEC, | ||
| 122 | ACPI_GENL_ATTR_EVENT, /* ACPI event info needed by user space */ | ||
| 123 | __ACPI_GENL_ATTR_MAX, | ||
| 124 | }; | ||
| 125 | #define ACPI_GENL_ATTR_MAX (__ACPI_GENL_ATTR_MAX - 1) | ||
| 126 | |||
| 127 | /* commands supported by the acpi_genl_family */ | ||
| 128 | enum { | ||
| 129 | ACPI_GENL_CMD_UNSPEC, | ||
| 130 | ACPI_GENL_CMD_EVENT, /* kernel->user notifications for ACPI events */ | ||
| 131 | __ACPI_GENL_CMD_MAX, | ||
| 132 | }; | ||
| 133 | #define ACPI_GENL_CMD_MAX (__ACPI_GENL_CMD_MAX - 1) | ||
| 134 | |||
| 135 | #define ACPI_GENL_FAMILY_NAME "acpi_event" | ||
| 136 | #define ACPI_GENL_VERSION 0x01 | ||
| 137 | #define ACPI_GENL_MCAST_GROUP_NAME "acpi_mc_group" | ||
| 138 | |||
| 139 | static struct genl_family acpi_event_genl_family = { | ||
| 140 | .id = GENL_ID_GENERATE, | ||
| 141 | .name = ACPI_GENL_FAMILY_NAME, | ||
| 142 | .version = ACPI_GENL_VERSION, | ||
| 143 | .maxattr = ACPI_GENL_ATTR_MAX, | ||
| 144 | }; | ||
| 145 | |||
| 146 | static struct genl_multicast_group acpi_event_mcgrp = { | ||
| 147 | .name = ACPI_GENL_MCAST_GROUP_NAME, | ||
| 148 | }; | ||
| 149 | |||
| 150 | int acpi_bus_generate_genetlink_event(struct acpi_device *device, | ||
| 151 | u8 type, int data) | ||
| 152 | { | ||
| 153 | struct sk_buff *skb; | ||
| 154 | struct nlattr *attr; | ||
| 155 | struct acpi_genl_event *event; | ||
| 156 | void *msg_header; | ||
| 157 | int size; | ||
| 158 | int result; | ||
| 159 | |||
| 160 | /* allocate memory */ | ||
| 161 | size = nla_total_size(sizeof(struct acpi_genl_event)) + | ||
| 162 | nla_total_size(0); | ||
| 163 | |||
| 164 | skb = genlmsg_new(size, GFP_ATOMIC); | ||
| 165 | if (!skb) | ||
| 166 | return -ENOMEM; | ||
| 167 | |||
| 168 | /* add the genetlink message header */ | ||
| 169 | msg_header = genlmsg_put(skb, 0, acpi_event_seqnum++, | ||
| 170 | &acpi_event_genl_family, 0, | ||
| 171 | ACPI_GENL_CMD_EVENT); | ||
| 172 | if (!msg_header) { | ||
| 173 | nlmsg_free(skb); | ||
| 174 | return -ENOMEM; | ||
| 175 | } | ||
| 176 | |||
| 177 | /* fill the data */ | ||
| 178 | attr = | ||
| 179 | nla_reserve(skb, ACPI_GENL_ATTR_EVENT, | ||
| 180 | sizeof(struct acpi_genl_event)); | ||
| 181 | if (!attr) { | ||
| 182 | nlmsg_free(skb); | ||
| 183 | return -EINVAL; | ||
| 184 | } | ||
| 185 | |||
| 186 | event = nla_data(attr); | ||
| 187 | if (!event) { | ||
| 188 | nlmsg_free(skb); | ||
| 189 | return -EINVAL; | ||
| 190 | } | ||
| 191 | |||
| 192 | memset(event, 0, sizeof(struct acpi_genl_event)); | ||
| 193 | |||
| 194 | strcpy(event->device_class, device->pnp.device_class); | ||
| 195 | strcpy(event->bus_id, device->dev.bus_id); | ||
| 196 | event->type = type; | ||
| 197 | event->data = data; | ||
| 198 | |||
| 199 | /* send multicast genetlink message */ | ||
| 200 | result = genlmsg_end(skb, msg_header); | ||
| 201 | if (result < 0) { | ||
| 202 | nlmsg_free(skb); | ||
| 203 | return result; | ||
| 204 | } | ||
| 205 | |||
| 206 | result = | ||
| 207 | genlmsg_multicast(skb, 0, acpi_event_mcgrp.id, GFP_ATOMIC); | ||
| 208 | if (result) | ||
| 209 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | ||
| 210 | "Failed to send a Genetlink message!\n")); | ||
| 211 | return 0; | ||
| 212 | } | ||
| 213 | |||
| 214 | static int acpi_event_genetlink_init(void) | ||
| 215 | { | ||
| 216 | int result; | ||
| 217 | |||
| 218 | result = genl_register_family(&acpi_event_genl_family); | ||
| 219 | if (result) | ||
| 220 | return result; | ||
| 221 | |||
| 222 | result = genl_register_mc_group(&acpi_event_genl_family, | ||
| 223 | &acpi_event_mcgrp); | ||
| 224 | if (result) | ||
| 225 | genl_unregister_family(&acpi_event_genl_family); | ||
| 226 | |||
| 227 | return result; | ||
| 228 | } | ||
| 229 | |||
| 230 | #else | ||
| 231 | int acpi_bus_generate_genetlink_event(struct acpi_device *device, u8 type, | ||
| 232 | int data) | ||
| 233 | { | ||
| 234 | return 0; | ||
| 235 | } | ||
| 236 | |||
| 237 | static int acpi_event_genetlink_init(void) | ||
| 238 | { | ||
| 239 | return -ENODEV; | ||
| 240 | } | ||
| 241 | #endif | ||
| 242 | |||
| 109 | static int __init acpi_event_init(void) | 243 | static int __init acpi_event_init(void) |
| 110 | { | 244 | { |
| 111 | struct proc_dir_entry *entry; | 245 | struct proc_dir_entry *entry; |
| 112 | int error = 0; | 246 | int error = 0; |
| 113 | 247 | ||
| 114 | |||
| 115 | if (acpi_disabled) | 248 | if (acpi_disabled) |
| 116 | return 0; | 249 | return 0; |
| 117 | 250 | ||
| 251 | /* create genetlink for acpi event */ | ||
| 252 | error = acpi_event_genetlink_init(); | ||
| 253 | if (error) | ||
| 254 | printk(KERN_WARNING PREFIX | ||
| 255 | "Failed to create genetlink family for ACPI event\n"); | ||
| 256 | |||
| 118 | /* 'event' [R] */ | 257 | /* 'event' [R] */ |
| 119 | entry = create_proc_entry("event", S_IRUSR, acpi_root_dir); | 258 | entry = create_proc_entry("event", S_IRUSR, acpi_root_dir); |
| 120 | if (entry) | 259 | if (entry) |
| 121 | entry->proc_fops = &acpi_system_event_ops; | 260 | entry->proc_fops = &acpi_system_event_ops; |
| 122 | else { | 261 | else |
| 123 | error = -ENODEV; | 262 | return -ENODEV; |
| 124 | } | 263 | |
| 125 | return error; | 264 | return 0; |
| 126 | } | 265 | } |
| 127 | 266 | ||
| 128 | subsys_initcall(acpi_event_init); | 267 | fs_initcall(acpi_event_init); |
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index c6fa5e023bc7..5e3dcf3299bf 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
| @@ -321,7 +321,8 @@ struct acpi_bus_event { | |||
| 321 | }; | 321 | }; |
| 322 | 322 | ||
| 323 | extern struct kset acpi_subsys; | 323 | extern struct kset acpi_subsys; |
| 324 | 324 | extern int acpi_bus_generate_genetlink_event(struct acpi_device *device, | |
| 325 | u8 type, int data); | ||
| 325 | /* | 326 | /* |
| 326 | * External Functions | 327 | * External Functions |
| 327 | */ | 328 | */ |
