Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * kobject.h - generic kernel object infrastructure. |
| 3 | * |
Greg Kroah-Hartman | f0e7e1b | 2007-09-27 14:48:53 -0700 | [diff] [blame] | 4 | * Copyright (c) 2002-2003 Patrick Mochel |
| 5 | * Copyright (c) 2002-2003 Open Source Development Labs |
| 6 | * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com> |
| 7 | * Copyright (c) 2006-2007 Novell Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * This file is released under the GPLv2. |
| 10 | * |
| 11 | * |
| 12 | * Please read Documentation/kobject.txt before using the kobject |
| 13 | * interface, ESPECIALLY the parts about reference counts and object |
| 14 | * destructors. |
| 15 | */ |
| 16 | |
| 17 | #ifndef _KOBJECT_H_ |
| 18 | #define _KOBJECT_H_ |
| 19 | |
| 20 | #ifdef __KERNEL__ |
| 21 | |
| 22 | #include <linux/types.h> |
| 23 | #include <linux/list.h> |
| 24 | #include <linux/sysfs.h> |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 25 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/kref.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/kernel.h> |
NeilBrown | 4508a7a | 2006-03-20 17:53:53 +1100 | [diff] [blame] | 29 | #include <linux/wait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/atomic.h> |
| 31 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 32 | #define KOBJ_NAME_LEN 20 |
| 33 | #define UEVENT_HELPER_PATH_LEN 256 |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 34 | #define UEVENT_NUM_ENVP 32 /* number of env pointers */ |
| 35 | #define UEVENT_BUFFER_SIZE 2048 /* buffer for the variables */ |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 36 | |
| 37 | /* path to the userspace helper executed on an event */ |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 38 | extern char uevent_helper[]; |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 39 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 40 | /* counter to tag the uevent, read only except for the kobject core */ |
| 41 | extern u64 uevent_seqnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Kay Sievers | 60a96a5 | 2007-07-08 22:29:26 +0200 | [diff] [blame] | 43 | /* |
| 44 | * The actions here must match the index to the string array |
| 45 | * in lib/kobject_uevent.c |
| 46 | * |
| 47 | * Do not add new actions here without checking with the driver-core |
| 48 | * maintainers. Action strings are not meant to express subsystem |
| 49 | * or device specific properties. In most cases you want to send a |
| 50 | * kobject_uevent_env(kobj, KOBJ_CHANGE, env) with additional event |
| 51 | * specific variables added to the event environment. |
| 52 | */ |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 53 | enum kobject_action { |
Kay Sievers | 60a96a5 | 2007-07-08 22:29:26 +0200 | [diff] [blame] | 54 | KOBJ_ADD, |
| 55 | KOBJ_REMOVE, |
| 56 | KOBJ_CHANGE, |
| 57 | KOBJ_MOVE, |
| 58 | KOBJ_ONLINE, |
| 59 | KOBJ_OFFLINE, |
| 60 | KOBJ_MAX |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 61 | }; |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | struct kobject { |
Dmitry Torokhov | f3b4f3c | 2005-04-26 02:32:00 -0500 | [diff] [blame] | 64 | const char * k_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | extern int kobject_set_name(struct kobject *, const char *, ...) |
| 74 | __attribute__((format(printf,2,3))); |
| 75 | |
Dmitry Torokhov | f3b4f3c | 2005-04-26 02:32:00 -0500 | [diff] [blame] | 76 | static inline const char * kobject_name(const struct kobject * kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
| 78 | return kobj->k_name; |
| 79 | } |
| 80 | |
| 81 | extern void kobject_init(struct kobject *); |
Greg Kroah-Hartman | e86000d | 2007-12-03 21:31:08 -0800 | [diff] [blame] | 82 | extern void kobject_init_ng(struct kobject *kobj, struct kobj_type *ktype); |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 83 | extern int __must_check kobject_add(struct kobject *); |
Greg Kroah-Hartman | 244f6ce | 2007-12-03 21:31:08 -0800 | [diff] [blame] | 84 | extern int __must_check kobject_add_ng(struct kobject *kobj, |
| 85 | struct kobject *parent, |
| 86 | const char *fmt, ...); |
Greg Kroah-Hartman | c11c415 | 2007-12-03 21:31:08 -0800 | [diff] [blame] | 87 | extern int __must_check kobject_init_and_add(struct kobject *kobj, |
| 88 | struct kobj_type *ktype, |
| 89 | struct kobject *parent, |
| 90 | const char *fmt, ...); |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | extern void kobject_del(struct kobject *); |
| 93 | |
Greg Kroah-Hartman | 43968d2 | 2007-11-05 22:24:43 -0800 | [diff] [blame^] | 94 | extern struct kobject * __must_check kobject_create(void); |
Greg Kroah-Hartman | 3f9e3ee | 2007-11-05 13:16:15 -0800 | [diff] [blame] | 95 | extern struct kobject * __must_check kobject_create_and_add(const char *name, |
| 96 | struct kobject *parent); |
| 97 | |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 98 | extern int __must_check kobject_rename(struct kobject *, const char *new_name); |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 99 | extern int __must_check kobject_move(struct kobject *, struct kobject *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 101 | extern int __must_check kobject_register(struct kobject *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | extern void kobject_unregister(struct kobject *); |
| 103 | |
| 104 | extern struct kobject * kobject_get(struct kobject *); |
| 105 | extern void kobject_put(struct kobject *); |
| 106 | |
Al Viro | fd4f2df | 2005-10-21 03:18:50 -0400 | [diff] [blame] | 107 | extern char * kobject_get_path(struct kobject *, gfp_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | struct kobj_type { |
| 110 | void (*release)(struct kobject *); |
| 111 | struct sysfs_ops * sysfs_ops; |
| 112 | struct attribute ** default_attrs; |
| 113 | }; |
| 114 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 115 | struct kobj_uevent_env { |
| 116 | char *envp[UEVENT_NUM_ENVP]; |
| 117 | int envp_idx; |
| 118 | char buf[UEVENT_BUFFER_SIZE]; |
| 119 | int buflen; |
| 120 | }; |
| 121 | |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 122 | struct kset_uevent_ops { |
| 123 | int (*filter)(struct kset *kset, struct kobject *kobj); |
| 124 | const char *(*name)(struct kset *kset, struct kobject *kobj); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 125 | int (*uevent)(struct kset *kset, struct kobject *kobj, |
| 126 | struct kobj_uevent_env *env); |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 127 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Greg Kroah-Hartman | 6adf755 | 2007-09-27 14:48:53 -0700 | [diff] [blame] | 129 | /** |
| 130 | * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | * |
Greg Kroah-Hartman | 6adf755 | 2007-09-27 14:48:53 -0700 | [diff] [blame] | 132 | * A kset defines a group of kobjects. They can be individually |
| 133 | * different "types" but overall these kobjects all want to be grouped |
| 134 | * together and operated on in the same manner. ksets are used to |
| 135 | * define the attribute callbacks and other common events that happen to |
| 136 | * a kobject. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | * |
Greg Kroah-Hartman | 6adf755 | 2007-09-27 14:48:53 -0700 | [diff] [blame] | 138 | * @list: the list of all kobjects for this kset |
| 139 | * @list_lock: a lock for iterating over the kobjects |
| 140 | * @kobj: the embedded kobject for this kset (recursion, isn't it fun...) |
| 141 | * @uevent_ops: the set of uevent operations for this kset. These are |
| 142 | * called whenever a kobject has something happen to it so that the kset |
| 143 | * can add new environment variables, or filter out the uevents if so |
| 144 | * desired. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | struct kset { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | struct list_head list; |
| 148 | spinlock_t list_lock; |
| 149 | struct kobject kobj; |
Greg Kroah-Hartman | 6adf755 | 2007-09-27 14:48:53 -0700 | [diff] [blame] | 150 | struct kset_uevent_ops *uevent_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | extern void kset_init(struct kset * k); |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 154 | extern int __must_check kset_add(struct kset * k); |
| 155 | extern int __must_check kset_register(struct kset * k); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | extern void kset_unregister(struct kset * k); |
Greg Kroah-Hartman | b727c70 | 2007-09-27 14:48:53 -0700 | [diff] [blame] | 157 | extern struct kset * __must_check kset_create_and_add(const char *name, |
| 158 | struct kset_uevent_ops *u, |
| 159 | struct kobject *parent_kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | static inline struct kset * to_kset(struct kobject * kobj) |
| 162 | { |
| 163 | return kobj ? container_of(kobj,struct kset,kobj) : NULL; |
| 164 | } |
| 165 | |
| 166 | static inline struct kset * kset_get(struct kset * k) |
| 167 | { |
| 168 | return k ? to_kset(kobject_get(&k->kobj)) : NULL; |
| 169 | } |
| 170 | |
| 171 | static inline void kset_put(struct kset * k) |
| 172 | { |
| 173 | kobject_put(&k->kobj); |
| 174 | } |
| 175 | |
Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 176 | static inline struct kobj_type *get_ktype(struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 178 | return kobj->ktype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | extern struct kobject * kset_find_obj(struct kset *, const char *); |
| 182 | |
| 183 | |
Randy Dunlap | a561564 | 2007-07-27 09:36:26 -0700 | [diff] [blame] | 184 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | * Use this when initializing an embedded kset with no other |
| 186 | * fields to initialize. |
| 187 | */ |
Greg Kroah-Hartman | ce2c9cb | 2007-09-12 15:06:57 -0700 | [diff] [blame] | 188 | #define set_kset_name(str) .kset = { .kobj = { .k_name = str } } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | |
Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 191 | #define decl_subsys(_name,_uevent_ops) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 192 | struct kset _name##_subsys = { \ |
Greg Kroah-Hartman | ce2c9cb | 2007-09-12 15:06:57 -0700 | [diff] [blame] | 193 | .kobj = { .k_name = __stringify(_name) }, \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 194 | .uevent_ops =_uevent_ops, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
Greg Kroah-Hartman | 3514fac | 2007-10-16 10:11:44 -0600 | [diff] [blame] | 196 | #define decl_subsys_name(_varname,_name,_uevent_ops) \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 197 | struct kset _varname##_subsys = { \ |
Greg Kroah-Hartman | ce2c9cb | 2007-09-12 15:06:57 -0700 | [diff] [blame] | 198 | .kobj = { .k_name = __stringify(_name) }, \ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 199 | .uevent_ops =_uevent_ops, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /* The global /sys/kernel/ subsystem for people to chain off of */ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 203 | extern struct kset kernel_subsys; |
Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 204 | /* The global /sys/hypervisor/ subsystem */ |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 205 | extern struct kset hypervisor_subsys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 207 | extern int __must_check subsystem_register(struct kset *); |
| 208 | extern void subsystem_unregister(struct kset *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | struct subsys_attribute { |
| 211 | struct attribute attr; |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 212 | ssize_t (*show)(struct kset *, char *); |
| 213 | ssize_t (*store)(struct kset *, const char *, size_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | }; |
| 215 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 216 | extern int __must_check subsys_create_file(struct kset *, |
Andrew Morton | 4a7fb63 | 2006-08-14 22:43:17 -0700 | [diff] [blame] | 217 | struct subsys_attribute *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Kay Sievers | 4d17ffd | 2006-04-25 15:37:26 +0200 | [diff] [blame] | 219 | #if defined(CONFIG_HOTPLUG) |
Aneesh Kumar K.V | 542cfce | 2006-12-19 13:01:27 -0800 | [diff] [blame] | 220 | int kobject_uevent(struct kobject *kobj, enum kobject_action action); |
| 221 | int kobject_uevent_env(struct kobject *kobj, enum kobject_action action, |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 222 | char *envp[]); |
Kay Sievers | 0296b22 | 2005-11-11 05:33:52 +0100 | [diff] [blame] | 223 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 224 | int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...) |
| 225 | __attribute__((format (printf, 2, 3))); |
Kay Sievers | 5c5daf6 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 226 | |
| 227 | int kobject_action_type(const char *buf, size_t count, |
| 228 | enum kobject_action *type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | #else |
Aneesh Kumar K.V | 542cfce | 2006-12-19 13:01:27 -0800 | [diff] [blame] | 230 | static inline int kobject_uevent(struct kobject *kobj, enum kobject_action action) |
| 231 | { return 0; } |
| 232 | static inline int kobject_uevent_env(struct kobject *kobj, |
Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 233 | enum kobject_action action, |
| 234 | char *envp[]) |
Aneesh Kumar K.V | 542cfce | 2006-12-19 13:01:27 -0800 | [diff] [blame] | 235 | { return 0; } |
Kay Sievers | 5f123fb | 2005-11-11 14:43:07 +0100 | [diff] [blame] | 236 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 237 | static inline int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { return 0; } |
Kay Sievers | 5c5daf6 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 239 | |
| 240 | static inline int kobject_action_type(const char *buf, size_t count, |
| 241 | enum kobject_action *type) |
| 242 | { return -EINVAL; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | #endif |
| 244 | |
| 245 | #endif /* __KERNEL__ */ |
| 246 | #endif /* _KOBJECT_H_ */ |