Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * kobject.h - generic kernel object infrastructure. |
| 3 | * |
| 4 | * Copyright (c) 2002-2003 Patrick Mochel |
| 5 | * Copyright (c) 2002-2003 Open Source Development Labs |
| 6 | * |
| 7 | * This file is released under the GPLv2. |
| 8 | * |
| 9 | * |
| 10 | * Please read Documentation/kobject.txt before using the kobject |
| 11 | * interface, ESPECIALLY the parts about reference counts and object |
| 12 | * destructors. |
| 13 | */ |
| 14 | |
| 15 | #ifndef _KOBJECT_H_ |
| 16 | #define _KOBJECT_H_ |
| 17 | |
| 18 | #ifdef __KERNEL__ |
| 19 | |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/list.h> |
| 22 | #include <linux/sysfs.h> |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 23 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/kref.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/kernel.h> |
NeilBrown | 4508a7a | 2006-03-20 17:53:53 +1100 | [diff] [blame] | 27 | #include <linux/wait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/atomic.h> |
| 29 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 30 | #define KOBJ_NAME_LEN 20 |
| 31 | #define UEVENT_HELPER_PATH_LEN 256 |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 32 | |
| 33 | /* path to the userspace helper executed on an event */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 34 | extern char uevent_helper[]; |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 35 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 36 | /* counter to tag the uevent, read only except for the kobject core */ |
| 37 | extern u64 uevent_seqnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Kay Sievers | 60a96a5 | 2007-07-08 22:29:26 +0200 | [diff] [blame] | 39 | /* |
| 40 | * The actions here must match the index to the string array |
| 41 | * in lib/kobject_uevent.c |
| 42 | * |
| 43 | * Do not add new actions here without checking with the driver-core |
| 44 | * maintainers. Action strings are not meant to express subsystem |
| 45 | * or device specific properties. In most cases you want to send a |
| 46 | * kobject_uevent_env(kobj, KOBJ_CHANGE, env) with additional event |
| 47 | * specific variables added to the event environment. |
| 48 | */ |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 49 | enum kobject_action { |
Kay Sievers | 60a96a5 | 2007-07-08 22:29:26 +0200 | [diff] [blame] | 50 | KOBJ_ADD, |
| 51 | KOBJ_REMOVE, |
| 52 | KOBJ_CHANGE, |
| 53 | KOBJ_MOVE, |
| 54 | KOBJ_ONLINE, |
| 55 | KOBJ_OFFLINE, |
| 56 | KOBJ_MAX |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 57 | }; |
| 58 | |
Greg Kroah-Hartman | ff2ee8c | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 59 | /* The list of strings defining the valid kobject actions as specified above */ |
| 60 | extern const char *kobject_actions[]; |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | struct kobject { |
Dmitry Torokhov | f3b4f3c | 2005-04-26 02:32:00 -0500 | [diff] [blame] | 63 | const char * k_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | char name[KOBJ_NAME_LEN]; |
| 65 | struct kref kref; |
| 66 | struct list_head entry; |
| 67 | struct kobject * parent; |
| 68 | struct kset * kset; |
| 69 | struct kobj_type * ktype; |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 70 | struct sysfs_dirent * sd; |
NeilBrown | 4508a7a | 2006-03-20 17:53:53 +1100 | [diff] [blame] | 71 | wait_queue_head_t poll; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | extern int kobject_set_name(struct kobject *, const char *, ...) |
| 75 | __attribute__((format(printf,2,3))); |
| 76 | |
Dmitry Torokhov | f3b4f3c | 2005-04-26 02:32:00 -0500 | [diff] [blame] | 77 | static inline const char * kobject_name(const struct kobject * kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
| 79 | return kobj->k_name; |
| 80 | } |
| 81 | |
| 82 | extern void kobject_init(struct kobject *); |
| 83 | extern void kobject_cleanup(struct kobject *); |
| 84 | |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 85 | extern int __must_check kobject_add(struct kobject *); |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 86 | extern int __must_check kobject_shadow_add(struct kobject *kobj, |
| 87 | struct sysfs_dirent *shadow_parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | extern void kobject_del(struct kobject *); |
| 89 | |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 90 | extern int __must_check kobject_rename(struct kobject *, const char *new_name); |
Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 91 | extern int __must_check kobject_shadow_rename(struct kobject *kobj, |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 92 | struct sysfs_dirent *new_parent, |
| 93 | const char *new_name); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 94 | extern int __must_check kobject_move(struct kobject *, struct kobject *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 96 | extern int __must_check kobject_register(struct kobject *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | extern void kobject_unregister(struct kobject *); |
| 98 | |
| 99 | extern struct kobject * kobject_get(struct kobject *); |
| 100 | extern void kobject_put(struct kobject *); |
| 101 | |
Kay Sievers | 8640624 | 2007-03-14 03:25:56 +0100 | [diff] [blame] | 102 | extern struct kobject *kobject_kset_add_dir(struct kset *kset, |
| 103 | struct kobject *, const char *); |
Jun'ichi Nomura | 7423172 | 2006-03-13 17:14:25 -0500 | [diff] [blame] | 104 | extern struct kobject *kobject_add_dir(struct kobject *, const char *); |
| 105 | |
Al Viro | fd4f2df | 2005-10-21 03:18:50 -0400 | [diff] [blame] | 106 | extern char * kobject_get_path(struct kobject *, gfp_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | struct kobj_type { |
| 109 | void (*release)(struct kobject *); |
| 110 | struct sysfs_ops * sysfs_ops; |
| 111 | struct attribute ** default_attrs; |
| 112 | }; |
| 113 | |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 114 | struct kset_uevent_ops { |
| 115 | int (*filter)(struct kset *kset, struct kobject *kobj); |
| 116 | const char *(*name)(struct kset *kset, struct kobject *kobj); |
| 117 | int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp, |
| 118 | int num_envp, char *buffer, int buffer_size); |
| 119 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 121 | /* |
| 122 | * struct kset - a set of kobjects of a specific type, belonging |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | * to a specific subsystem. |
| 124 | * |
| 125 | * All kobjects of a kset should be embedded in an identical |
| 126 | * type. This type may have a descriptor, which the kset points |
| 127 | * to. This allows there to exist sets of objects of the same |
| 128 | * type in different subsystems. |
| 129 | * |
| 130 | * A subsystem does not have to be a list of only one type |
| 131 | * of object; multiple ksets can belong to one subsystem. All |
| 132 | * ksets of a subsystem share the subsystem's lock. |
| 133 | * |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 134 | * Each kset can support specific event variables; it can |
| 135 | * supress the event generation or add subsystem specific |
| 136 | * variables carried with the event. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | struct kset { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | struct kobj_type * ktype; |
| 140 | struct list_head list; |
| 141 | spinlock_t list_lock; |
| 142 | struct kobject kobj; |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 143 | struct kset_uevent_ops * uevent_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | |
| 147 | extern void kset_init(struct kset * k); |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 148 | extern int __must_check kset_add(struct kset * k); |
| 149 | extern int __must_check kset_register(struct kset * k); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | extern void kset_unregister(struct kset * k); |
| 151 | |
| 152 | static inline struct kset * to_kset(struct kobject * kobj) |
| 153 | { |
| 154 | return kobj ? container_of(kobj,struct kset,kobj) : NULL; |
| 155 | } |
| 156 | |
| 157 | static inline struct kset * kset_get(struct kset * k) |
| 158 | { |
| 159 | return k ? to_kset(kobject_get(&k->kobj)) : NULL; |
| 160 | } |
| 161 | |
| 162 | static inline void kset_put(struct kset * k) |
| 163 | { |
| 164 | kobject_put(&k->kobj); |
| 165 | } |
| 166 | |
| 167 | static inline struct kobj_type * get_ktype(struct kobject * k) |
| 168 | { |
| 169 | if (k->kset && k->kset->ktype) |
| 170 | return k->kset->ktype; |
| 171 | else |
| 172 | return k->ktype; |
| 173 | } |
| 174 | |
| 175 | extern struct kobject * kset_find_obj(struct kset *, const char *); |
| 176 | |
| 177 | |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 178 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | * Use this when initializing an embedded kset with no other |
| 180 | * fields to initialize. |
| 181 | */ |
| 182 | #define set_kset_name(str) .kset = { .kobj = { .name = str } } |
| 183 | |
| 184 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 185 | #define decl_subsys(_name,_type,_uevent_ops) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 186 | struct kset _name##_subsys = { \ |
| 187 | .kobj = { .name = __stringify(_name) }, \ |
| 188 | .ktype = _type, \ |
| 189 | .uevent_ops =_uevent_ops, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 191 | #define decl_subsys_name(_varname,_name,_type,_uevent_ops) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 192 | struct kset _varname##_subsys = { \ |
| 193 | .kobj = { .name = __stringify(_name) }, \ |
| 194 | .ktype = _type, \ |
| 195 | .uevent_ops =_uevent_ops, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | /* The global /sys/kernel/ subsystem for people to chain off of */ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 199 | extern struct kset kernel_subsys; |
Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 200 | /* The global /sys/hypervisor/ subsystem */ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 201 | extern struct kset hypervisor_subsys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 203 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | * Helpers for setting the kset of registered objects. |
| 205 | * Often, a registered object belongs to a kset embedded in a |
| 206 | * subsystem. These do no magic, just make the resulting code |
| 207 | * easier to follow. |
| 208 | */ |
| 209 | |
| 210 | /** |
| 211 | * kobj_set_kset_s(obj,subsys) - set kset for embedded kobject. |
| 212 | * @obj: ptr to some object type. |
| 213 | * @subsys: a subsystem object (not a ptr). |
| 214 | * |
| 215 | * Can be used for any object type with an embedded ->kobj. |
| 216 | */ |
| 217 | |
| 218 | #define kobj_set_kset_s(obj,subsys) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 219 | (obj)->kobj.kset = &(subsys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | /** |
| 222 | * kset_set_kset_s(obj,subsys) - set kset for embedded kset. |
| 223 | * @obj: ptr to some object type. |
| 224 | * @subsys: a subsystem object (not a ptr). |
| 225 | * |
| 226 | * Can be used for any object type with an embedded ->kset. |
| 227 | * Sets the kset of @obj's embedded kobject (via its embedded |
| 228 | * kset) to @subsys.kset. This makes @obj a member of that |
| 229 | * kset. |
| 230 | */ |
| 231 | |
| 232 | #define kset_set_kset_s(obj,subsys) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 233 | (obj)->kset.kobj.kset = &(subsys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | /** |
| 236 | * subsys_set_kset(obj,subsys) - set kset for subsystem |
| 237 | * @obj: ptr to some object type. |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 238 | * @_subsys: a subsystem object (not a ptr). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | * |
| 240 | * Can be used for any object type with an embedded ->subsys. |
| 241 | * Sets the kset of @obj's kobject to @subsys.kset. This makes |
| 242 | * the object a member of that kset. |
| 243 | */ |
| 244 | |
| 245 | #define subsys_set_kset(obj,_subsys) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 246 | (obj)->subsys.kobj.kset = &(_subsys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 248 | extern void subsystem_init(struct kset *); |
| 249 | extern int __must_check subsystem_register(struct kset *); |
| 250 | extern void subsystem_unregister(struct kset *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 252 | static inline struct kset *subsys_get(struct kset *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 254 | if (s) |
| 255 | return kset_get(s); |
| 256 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 259 | static inline void subsys_put(struct kset *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | { |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 261 | kset_put(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | struct subsys_attribute { |
| 265 | struct attribute attr; |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 266 | ssize_t (*show)(struct kset *, char *); |
| 267 | ssize_t (*store)(struct kset *, const char *, size_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | }; |
| 269 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 270 | extern int __must_check subsys_create_file(struct kset *, |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 271 | struct subsys_attribute *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 273 | #if defined(CONFIG_HOTPLUG) |
Aneesh Kumar K.V | 542cfce | 2006-12-19 13:01:27 -0800 | [diff] [blame] | 274 | int kobject_uevent(struct kobject *kobj, enum kobject_action action); |
| 275 | int kobject_uevent_env(struct kobject *kobj, enum kobject_action action, |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 276 | char *envp[]); |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 277 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 278 | int add_uevent_var(char **envp, int num_envp, int *cur_index, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | char *buffer, int buffer_size, int *cur_len, |
| 280 | const char *format, ...) |
| 281 | __attribute__((format (printf, 7, 8))); |
| 282 | #else |
Aneesh Kumar K.V | 542cfce | 2006-12-19 13:01:27 -0800 | [diff] [blame] | 283 | static inline int kobject_uevent(struct kobject *kobj, enum kobject_action action) |
| 284 | { return 0; } |
| 285 | static inline int kobject_uevent_env(struct kobject *kobj, |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 286 | enum kobject_action action, |
| 287 | char *envp[]) |
Aneesh Kumar K.V | 542cfce | 2006-12-19 13:01:27 -0800 | [diff] [blame] | 288 | { return 0; } |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 289 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 290 | static inline int add_uevent_var(char **envp, int num_envp, int *cur_index, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | char *buffer, int buffer_size, int *cur_len, |
| 292 | const char *format, ...) |
| 293 | { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | #endif |
| 295 | |
| 296 | #endif /* __KERNEL__ */ |
| 297 | #endif /* _KOBJECT_H_ */ |