Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * kernel userspace event delivery |
| 3 | * |
| 4 | * Copyright (C) 2004 Red Hat, Inc. All rights reserved. |
| 5 | * Copyright (C) 2004 Novell, Inc. All rights reserved. |
| 6 | * Copyright (C) 2004 IBM, Inc. All rights reserved. |
| 7 | * |
| 8 | * Licensed under the GNU GPL v2. |
| 9 | * |
| 10 | * Authors: |
| 11 | * Robert Love <rml@novell.com> |
| 12 | * Kay Sievers <kay.sievers@vrfy.org> |
| 13 | * Arjan van de Ven <arjanv@redhat.com> |
| 14 | * Greg Kroah-Hartman <greg@kroah.com> |
| 15 | */ |
| 16 | |
| 17 | #include <linux/spinlock.h> |
| 18 | #include <linux/socket.h> |
| 19 | #include <linux/skbuff.h> |
| 20 | #include <linux/netlink.h> |
| 21 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/kobject.h> |
| 23 | #include <net/sock.h> |
| 24 | |
Benjamin Herrenschmidt | d87499e | 2006-01-25 10:21:32 +1100 | [diff] [blame] | 25 | #define BUFFER_SIZE 2048 /* buffer for the variables */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #define NUM_ENVP 32 /* number of env pointers */ |
| 27 | |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 28 | #if defined(CONFIG_HOTPLUG) |
Jun'ichi Nomura | 5110730 | 2006-03-15 08:28:55 -0500 | [diff] [blame] | 29 | u64 uevent_seqnum; |
| 30 | char uevent_helper[UEVENT_HELPER_PATH_LEN] = "/sbin/hotplug"; |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 31 | static DEFINE_SPINLOCK(sequence_lock); |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 32 | #if defined(CONFIG_NET) |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 33 | static struct sock *uevent_sock; |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 34 | #endif |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | static char *action_to_string(enum kobject_action action) |
| 37 | { |
| 38 | switch (action) { |
| 39 | case KOBJ_ADD: |
| 40 | return "add"; |
| 41 | case KOBJ_REMOVE: |
| 42 | return "remove"; |
| 43 | case KOBJ_CHANGE: |
| 44 | return "change"; |
Greg Kroah-Hartman | fa67576 | 2006-02-22 09:39:02 -0800 | [diff] [blame] | 45 | case KOBJ_MOUNT: |
| 46 | return "mount"; |
| 47 | case KOBJ_UMOUNT: |
| 48 | return "umount"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | case KOBJ_OFFLINE: |
| 50 | return "offline"; |
| 51 | case KOBJ_ONLINE: |
| 52 | return "online"; |
| 53 | default: |
| 54 | return NULL; |
| 55 | } |
| 56 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | /** |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 59 | * kobject_uevent - notify userspace by ending an uevent |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | * |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 61 | * @action: action that is happening (usually KOBJ_ADD and KOBJ_REMOVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | * @kobj: struct kobject that the action is happening to |
| 63 | */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 64 | void kobject_uevent(struct kobject *kobj, enum kobject_action action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 66 | char **envp; |
| 67 | char *buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | char *scratch; |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 69 | const char *action_string; |
| 70 | const char *devpath = NULL; |
| 71 | const char *subsystem; |
| 72 | struct kobject *top_kobj; |
| 73 | struct kset *kset; |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 74 | struct kset_uevent_ops *uevent_ops; |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 75 | u64 seq; |
| 76 | char *seq_buff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | int i = 0; |
| 78 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 80 | pr_debug("%s\n", __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | action_string = action_to_string(action); |
| 83 | if (!action_string) |
| 84 | return; |
| 85 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 86 | /* search the kset we belong to */ |
| 87 | top_kobj = kobj; |
| 88 | if (!top_kobj->kset && top_kobj->parent) { |
| 89 | do { |
| 90 | top_kobj = top_kobj->parent; |
| 91 | } while (!top_kobj->kset && top_kobj->parent); |
| 92 | } |
| 93 | if (!top_kobj->kset) |
| 94 | return; |
| 95 | |
| 96 | kset = top_kobj->kset; |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 97 | uevent_ops = kset->uevent_ops; |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 98 | |
| 99 | /* skip the event, if the filter returns zero. */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 100 | if (uevent_ops && uevent_ops->filter) |
| 101 | if (!uevent_ops->filter(kset, kobj)) |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 102 | return; |
| 103 | |
| 104 | /* environment index */ |
| 105 | envp = kzalloc(NUM_ENVP * sizeof (char *), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | if (!envp) |
| 107 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 109 | /* environment values */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL); |
| 111 | if (!buffer) |
| 112 | goto exit; |
| 113 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 114 | /* complete object path */ |
| 115 | devpath = kobject_get_path(kobj, GFP_KERNEL); |
| 116 | if (!devpath) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | goto exit; |
| 118 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 119 | /* originating subsystem */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 120 | if (uevent_ops && uevent_ops->name) |
| 121 | subsystem = uevent_ops->name(kset, kobj); |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 122 | else |
| 123 | subsystem = kobject_name(&kset->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 125 | /* event environemnt for helper process only */ |
| 126 | envp[i++] = "HOME=/"; |
| 127 | envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 129 | /* default keys */ |
| 130 | scratch = buffer; |
| 131 | envp [i++] = scratch; |
| 132 | scratch += sprintf(scratch, "ACTION=%s", action_string) + 1; |
| 133 | envp [i++] = scratch; |
| 134 | scratch += sprintf (scratch, "DEVPATH=%s", devpath) + 1; |
| 135 | envp [i++] = scratch; |
| 136 | scratch += sprintf(scratch, "SUBSYSTEM=%s", subsystem) + 1; |
| 137 | |
| 138 | /* just reserve the space, overwrite it after kset call has returned */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | envp[i++] = seq_buff = scratch; |
| 140 | scratch += strlen("SEQNUM=18446744073709551616") + 1; |
| 141 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 142 | /* let the kset specific function add its stuff */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 143 | if (uevent_ops && uevent_ops->uevent) { |
| 144 | retval = uevent_ops->uevent(kset, kobj, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | &envp[i], NUM_ENVP - i, scratch, |
| 146 | BUFFER_SIZE - (scratch - buffer)); |
| 147 | if (retval) { |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 148 | pr_debug ("%s - uevent() returned %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | __FUNCTION__, retval); |
| 150 | goto exit; |
| 151 | } |
| 152 | } |
| 153 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 154 | /* we will send an event, request a new sequence number */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | spin_lock(&sequence_lock); |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 156 | seq = ++uevent_seqnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | spin_unlock(&sequence_lock); |
| 158 | sprintf(seq_buff, "SEQNUM=%llu", (unsigned long long)seq); |
| 159 | |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 160 | #if defined(CONFIG_NET) |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 161 | /* send netlink message */ |
| 162 | if (uevent_sock) { |
| 163 | struct sk_buff *skb; |
| 164 | size_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 166 | /* allocate message with the maximum possible size */ |
| 167 | len = strlen(action_string) + strlen(devpath) + 2; |
| 168 | skb = alloc_skb(len + BUFFER_SIZE, GFP_KERNEL); |
| 169 | if (skb) { |
| 170 | /* add header */ |
| 171 | scratch = skb_put(skb, len); |
| 172 | sprintf(scratch, "%s@%s", action_string, devpath); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 174 | /* copy keys to our continuous event payload buffer */ |
| 175 | for (i = 2; envp[i]; i++) { |
| 176 | len = strlen(envp[i]) + 1; |
| 177 | scratch = skb_put(skb, len); |
| 178 | strcpy(scratch, envp[i]); |
| 179 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 181 | NETLINK_CB(skb).dst_group = 1; |
| 182 | netlink_broadcast(uevent_sock, skb, 0, 1, GFP_KERNEL); |
| 183 | } |
| 184 | } |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 185 | #endif |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 186 | |
| 187 | /* call uevent_helper, usually only enabled during early boot */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 188 | if (uevent_helper[0]) { |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 189 | char *argv [3]; |
| 190 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 191 | argv [0] = uevent_helper; |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 192 | argv [1] = (char *)subsystem; |
| 193 | argv [2] = NULL; |
| 194 | call_usermodehelper (argv[0], argv, envp, 0); |
| 195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
| 197 | exit: |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 198 | kfree(devpath); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | kfree(buffer); |
| 200 | kfree(envp); |
| 201 | return; |
| 202 | } |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 203 | EXPORT_SYMBOL_GPL(kobject_uevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
| 205 | /** |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 206 | * add_uevent_var - helper for creating event variables |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | * @envp: Pointer to table of environment variables, as passed into |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 208 | * uevent() method. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | * @num_envp: Number of environment variable slots available, as |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 210 | * passed into uevent() method. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | * @cur_index: Pointer to current index into @envp. It should be |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 212 | * initialized to 0 before the first call to add_uevent_var(), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | * and will be incremented on success. |
| 214 | * @buffer: Pointer to buffer for environment variables, as passed |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 215 | * into uevent() method. |
| 216 | * @buffer_size: Length of @buffer, as passed into uevent() method. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | * @cur_len: Pointer to current length of space used in @buffer. |
| 218 | * Should be initialized to 0 before the first call to |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 219 | * add_uevent_var(), and will be incremented on success. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | * @format: Format for creating environment variable (of the form |
| 221 | * "XXX=%x") for snprintf(). |
| 222 | * |
| 223 | * Returns 0 if environment variable was added successfully or -ENOMEM |
| 224 | * if no space was available. |
| 225 | */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 226 | int add_uevent_var(char **envp, int num_envp, int *cur_index, |
| 227 | char *buffer, int buffer_size, int *cur_len, |
| 228 | const char *format, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | { |
| 230 | va_list args; |
| 231 | |
| 232 | /* |
| 233 | * We check against num_envp - 1 to make sure there is at |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 234 | * least one slot left after we return, since kobject_uevent() |
| 235 | * needs to set the last slot to NULL. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | */ |
| 237 | if (*cur_index >= num_envp - 1) |
| 238 | return -ENOMEM; |
| 239 | |
| 240 | envp[*cur_index] = buffer + *cur_len; |
| 241 | |
| 242 | va_start(args, format); |
| 243 | *cur_len += vsnprintf(envp[*cur_index], |
| 244 | max(buffer_size - *cur_len, 0), |
| 245 | format, args) + 1; |
| 246 | va_end(args); |
| 247 | |
| 248 | if (*cur_len > buffer_size) |
| 249 | return -ENOMEM; |
| 250 | |
| 251 | (*cur_index)++; |
| 252 | return 0; |
| 253 | } |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 254 | EXPORT_SYMBOL_GPL(add_uevent_var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 256 | #if defined(CONFIG_NET) |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 257 | static int __init kobject_uevent_init(void) |
| 258 | { |
| 259 | uevent_sock = netlink_kernel_create(NETLINK_KOBJECT_UEVENT, 1, NULL, |
| 260 | THIS_MODULE); |
| 261 | |
| 262 | if (!uevent_sock) { |
| 263 | printk(KERN_ERR |
| 264 | "kobject_uevent: unable to create netlink socket!\n"); |
| 265 | return -ENODEV; |
| 266 | } |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | postcore_initcall(kobject_uevent_init); |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 272 | #endif |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | #endif /* CONFIG_HOTPLUG */ |