blob: 49a08f84d7c38370425cb7f821db652524433a3e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Morton4a7fb632006-08-14 22:43:17 -070023#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kref.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
NeilBrown4508a7a2006-03-20 17:53:53 +110027#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/atomic.h>
29
Kay Sievers312c0042005-11-16 09:00:00 +010030#define KOBJ_NAME_LEN 20
31#define UEVENT_HELPER_PATH_LEN 256
Kay Sievers0296b222005-11-11 05:33:52 +010032
33/* path to the userspace helper executed on an event */
Kay Sievers312c0042005-11-16 09:00:00 +010034extern char uevent_helper[];
Kay Sievers0296b222005-11-11 05:33:52 +010035
Kay Sievers312c0042005-11-16 09:00:00 +010036/* counter to tag the uevent, read only except for the kobject core */
37extern u64 uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Kay Sievers60a96a52007-07-08 22:29:26 +020039/*
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 Sievers0296b222005-11-11 05:33:52 +010049enum kobject_action {
Kay Sievers60a96a52007-07-08 22:29:26 +020050 KOBJ_ADD,
51 KOBJ_REMOVE,
52 KOBJ_CHANGE,
53 KOBJ_MOVE,
54 KOBJ_ONLINE,
55 KOBJ_OFFLINE,
56 KOBJ_MAX
Kay Sievers0296b222005-11-11 05:33:52 +010057};
58
Greg Kroah-Hartmanff2ee8c2002-04-09 12:14:34 -070059/* The list of strings defining the valid kobject actions as specified above */
60extern const char *kobject_actions[];
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062struct kobject {
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -050063 const char * k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 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 Heo608e2662007-06-14 04:27:22 +090070 struct sysfs_dirent * sd;
NeilBrown4508a7a2006-03-20 17:53:53 +110071 wait_queue_head_t poll;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74extern int kobject_set_name(struct kobject *, const char *, ...)
75 __attribute__((format(printf,2,3)));
76
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -050077static inline const char * kobject_name(const struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 return kobj->k_name;
80}
81
82extern void kobject_init(struct kobject *);
83extern void kobject_cleanup(struct kobject *);
84
Andrew Morton4a7fb632006-08-14 22:43:17 -070085extern int __must_check kobject_add(struct kobject *);
Tejun Heo608e2662007-06-14 04:27:22 +090086extern int __must_check kobject_shadow_add(struct kobject *kobj,
87 struct sysfs_dirent *shadow_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088extern void kobject_del(struct kobject *);
89
Andrew Morton4a7fb632006-08-14 22:43:17 -070090extern int __must_check kobject_rename(struct kobject *, const char *new_name);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070091extern int __must_check kobject_shadow_rename(struct kobject *kobj,
Tejun Heo608e2662007-06-14 04:27:22 +090092 struct sysfs_dirent *new_parent,
93 const char *new_name);
Cornelia Huck8a824722006-11-20 17:07:51 +010094extern int __must_check kobject_move(struct kobject *, struct kobject *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Andrew Morton4a7fb632006-08-14 22:43:17 -070096extern int __must_check kobject_register(struct kobject *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097extern void kobject_unregister(struct kobject *);
98
99extern struct kobject * kobject_get(struct kobject *);
100extern void kobject_put(struct kobject *);
101
Kay Sievers86406242007-03-14 03:25:56 +0100102extern struct kobject *kobject_kset_add_dir(struct kset *kset,
103 struct kobject *, const char *);
Jun'ichi Nomura74231722006-03-13 17:14:25 -0500104extern struct kobject *kobject_add_dir(struct kobject *, const char *);
105
Al Virofd4f2df2005-10-21 03:18:50 -0400106extern char * kobject_get_path(struct kobject *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108struct kobj_type {
109 void (*release)(struct kobject *);
110 struct sysfs_ops * sysfs_ops;
111 struct attribute ** default_attrs;
112};
113
114
115/**
116 * kset - a set of kobjects of a specific type, belonging
117 * to a specific subsystem.
118 *
119 * All kobjects of a kset should be embedded in an identical
120 * type. This type may have a descriptor, which the kset points
121 * to. This allows there to exist sets of objects of the same
122 * type in different subsystems.
123 *
124 * A subsystem does not have to be a list of only one type
125 * of object; multiple ksets can belong to one subsystem. All
126 * ksets of a subsystem share the subsystem's lock.
127 *
Kay Sievers312c0042005-11-16 09:00:00 +0100128 * Each kset can support specific event variables; it can
129 * supress the event generation or add subsystem specific
130 * variables carried with the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Kay Sievers312c0042005-11-16 09:00:00 +0100132struct kset_uevent_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int (*filter)(struct kset *kset, struct kobject *kobj);
Dmitry Torokhov419cab32005-04-26 02:32:54 -0500134 const char *(*name)(struct kset *kset, struct kobject *kobj);
Kay Sievers312c0042005-11-16 09:00:00 +0100135 int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 int num_envp, char *buffer, int buffer_size);
137};
138
139struct kset {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct kobj_type * ktype;
141 struct list_head list;
142 spinlock_t list_lock;
143 struct kobject kobj;
Kay Sievers312c0042005-11-16 09:00:00 +0100144 struct kset_uevent_ops * uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
147
148extern void kset_init(struct kset * k);
Andrew Morton4a7fb632006-08-14 22:43:17 -0700149extern int __must_check kset_add(struct kset * k);
150extern int __must_check kset_register(struct kset * k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151extern void kset_unregister(struct kset * k);
152
153static inline struct kset * to_kset(struct kobject * kobj)
154{
155 return kobj ? container_of(kobj,struct kset,kobj) : NULL;
156}
157
158static inline struct kset * kset_get(struct kset * k)
159{
160 return k ? to_kset(kobject_get(&k->kobj)) : NULL;
161}
162
163static inline void kset_put(struct kset * k)
164{
165 kobject_put(&k->kobj);
166}
167
168static inline struct kobj_type * get_ktype(struct kobject * k)
169{
170 if (k->kset && k->kset->ktype)
171 return k->kset->ktype;
172 else
173 return k->ktype;
174}
175
176extern struct kobject * kset_find_obj(struct kset *, const char *);
177
178
179/**
180 * Use this when initializing an embedded kset with no other
181 * fields to initialize.
182 */
183#define set_kset_name(str) .kset = { .kobj = { .name = str } }
184
185
Kay Sievers312c0042005-11-16 09:00:00 +0100186#define decl_subsys(_name,_type,_uevent_ops) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700187struct kset _name##_subsys = { \
188 .kobj = { .name = __stringify(_name) }, \
189 .ktype = _type, \
190 .uevent_ops =_uevent_ops, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Kay Sievers312c0042005-11-16 09:00:00 +0100192#define decl_subsys_name(_varname,_name,_type,_uevent_ops) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700193struct kset _varname##_subsys = { \
194 .kobj = { .name = __stringify(_name) }, \
195 .ktype = _type, \
196 .uevent_ops =_uevent_ops, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/* The global /sys/kernel/ subsystem for people to chain off of */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700200extern struct kset kernel_subsys;
Michael Holzheu40394832006-05-09 12:53:49 +0200201/* The global /sys/hypervisor/ subsystem */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700202extern struct kset hypervisor_subsys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204/**
205 * Helpers for setting the kset of registered objects.
206 * Often, a registered object belongs to a kset embedded in a
207 * subsystem. These do no magic, just make the resulting code
208 * easier to follow.
209 */
210
211/**
212 * kobj_set_kset_s(obj,subsys) - set kset for embedded kobject.
213 * @obj: ptr to some object type.
214 * @subsys: a subsystem object (not a ptr).
215 *
216 * Can be used for any object type with an embedded ->kobj.
217 */
218
219#define kobj_set_kset_s(obj,subsys) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700220 (obj)->kobj.kset = &(subsys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/**
223 * kset_set_kset_s(obj,subsys) - set kset for embedded kset.
224 * @obj: ptr to some object type.
225 * @subsys: a subsystem object (not a ptr).
226 *
227 * Can be used for any object type with an embedded ->kset.
228 * Sets the kset of @obj's embedded kobject (via its embedded
229 * kset) to @subsys.kset. This makes @obj a member of that
230 * kset.
231 */
232
233#define kset_set_kset_s(obj,subsys) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700234 (obj)->kset.kobj.kset = &(subsys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/**
237 * subsys_set_kset(obj,subsys) - set kset for subsystem
238 * @obj: ptr to some object type.
239 * @subsys: a subsystem object (not a ptr).
240 *
241 * Can be used for any object type with an embedded ->subsys.
242 * Sets the kset of @obj's kobject to @subsys.kset. This makes
243 * the object a member of that kset.
244 */
245
246#define subsys_set_kset(obj,_subsys) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700247 (obj)->subsys.kobj.kset = &(_subsys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700249extern void subsystem_init(struct kset *);
250extern int __must_check subsystem_register(struct kset *);
251extern void subsystem_unregister(struct kset *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700253static inline struct kset *subsys_get(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700255 if (s)
256 return kset_get(s);
257 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700260static inline void subsys_put(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700262 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265struct subsys_attribute {
266 struct attribute attr;
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700267 ssize_t (*show)(struct kset *, char *);
268 ssize_t (*store)(struct kset *, const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700271extern int __must_check subsys_create_file(struct kset *,
Andrew Morton4a7fb632006-08-14 22:43:17 -0700272 struct subsys_attribute *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200274#if defined(CONFIG_HOTPLUG)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800275int kobject_uevent(struct kobject *kobj, enum kobject_action action);
276int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Cornelia Huck8a824722006-11-20 17:07:51 +0100277 char *envp[]);
Kay Sievers0296b222005-11-11 05:33:52 +0100278
Kay Sievers312c0042005-11-16 09:00:00 +0100279int add_uevent_var(char **envp, int num_envp, int *cur_index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 char *buffer, int buffer_size, int *cur_len,
281 const char *format, ...)
282 __attribute__((format (printf, 7, 8)));
283#else
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800284static inline int kobject_uevent(struct kobject *kobj, enum kobject_action action)
285{ return 0; }
286static inline int kobject_uevent_env(struct kobject *kobj,
Cornelia Huck8a824722006-11-20 17:07:51 +0100287 enum kobject_action action,
288 char *envp[])
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800289{ return 0; }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100290
Kay Sievers312c0042005-11-16 09:00:00 +0100291static inline int add_uevent_var(char **envp, int num_envp, int *cur_index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 char *buffer, int buffer_size, int *cur_len,
293 const char *format, ...)
294{ return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#endif
296
297#endif /* __KERNEL__ */
298#endif /* _KOBJECT_H_ */