blob: c374b5fa8d3bbd0c48392c7b6207346efe510113 [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>
23#include <linux/spinlock.h>
24#include <linux/rwsem.h>
25#include <linux/kref.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <asm/atomic.h>
28
Kay Sievers312c0042005-11-16 09:00:00 +010029#define KOBJ_NAME_LEN 20
30#define UEVENT_HELPER_PATH_LEN 256
Kay Sievers0296b222005-11-11 05:33:52 +010031
32/* path to the userspace helper executed on an event */
Kay Sievers312c0042005-11-16 09:00:00 +010033extern char uevent_helper[];
Kay Sievers0296b222005-11-11 05:33:52 +010034
Kay Sievers312c0042005-11-16 09:00:00 +010035/* counter to tag the uevent, read only except for the kobject core */
36extern u64 uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Kay Sievers0296b222005-11-11 05:33:52 +010038/* the actions here must match the proper string in lib/kobject_uevent.c */
39typedef int __bitwise kobject_action_t;
40enum kobject_action {
Kay Sievers5f123fb2005-11-11 14:43:07 +010041 KOBJ_ADD = (__force kobject_action_t) 0x01, /* exclusive to core */
42 KOBJ_REMOVE = (__force kobject_action_t) 0x02, /* exclusive to core */
43 KOBJ_CHANGE = (__force kobject_action_t) 0x03, /* device state change */
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -080044 KOBJ_MOUNT = (__force kobject_action_t) 0x04, /* mount event for block devices (broken) */
45 KOBJ_UMOUNT = (__force kobject_action_t) 0x05, /* umount event for block devices (broken) */
46 KOBJ_OFFLINE = (__force kobject_action_t) 0x06, /* device offline */
47 KOBJ_ONLINE = (__force kobject_action_t) 0x07, /* device online */
Kay Sievers0296b222005-11-11 05:33:52 +010048};
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050struct kobject {
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -050051 const char * k_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 char name[KOBJ_NAME_LEN];
53 struct kref kref;
54 struct list_head entry;
55 struct kobject * parent;
56 struct kset * kset;
57 struct kobj_type * ktype;
58 struct dentry * dentry;
59};
60
61extern int kobject_set_name(struct kobject *, const char *, ...)
62 __attribute__((format(printf,2,3)));
63
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -050064static inline const char * kobject_name(const struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 return kobj->k_name;
67}
68
69extern void kobject_init(struct kobject *);
70extern void kobject_cleanup(struct kobject *);
71
72extern int kobject_add(struct kobject *);
73extern void kobject_del(struct kobject *);
74
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -050075extern int kobject_rename(struct kobject *, const char *new_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77extern int kobject_register(struct kobject *);
78extern void kobject_unregister(struct kobject *);
79
80extern struct kobject * kobject_get(struct kobject *);
81extern void kobject_put(struct kobject *);
82
Al Virofd4f2df2005-10-21 03:18:50 -040083extern char * kobject_get_path(struct kobject *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85struct kobj_type {
86 void (*release)(struct kobject *);
87 struct sysfs_ops * sysfs_ops;
88 struct attribute ** default_attrs;
89};
90
91
92/**
93 * kset - a set of kobjects of a specific type, belonging
94 * to a specific subsystem.
95 *
96 * All kobjects of a kset should be embedded in an identical
97 * type. This type may have a descriptor, which the kset points
98 * to. This allows there to exist sets of objects of the same
99 * type in different subsystems.
100 *
101 * A subsystem does not have to be a list of only one type
102 * of object; multiple ksets can belong to one subsystem. All
103 * ksets of a subsystem share the subsystem's lock.
104 *
Kay Sievers312c0042005-11-16 09:00:00 +0100105 * Each kset can support specific event variables; it can
106 * supress the event generation or add subsystem specific
107 * variables carried with the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Kay Sievers312c0042005-11-16 09:00:00 +0100109struct kset_uevent_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 int (*filter)(struct kset *kset, struct kobject *kobj);
Dmitry Torokhov419cab32005-04-26 02:32:54 -0500111 const char *(*name)(struct kset *kset, struct kobject *kobj);
Kay Sievers312c0042005-11-16 09:00:00 +0100112 int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int num_envp, char *buffer, int buffer_size);
114};
115
116struct kset {
117 struct subsystem * subsys;
118 struct kobj_type * ktype;
119 struct list_head list;
120 spinlock_t list_lock;
121 struct kobject kobj;
Kay Sievers312c0042005-11-16 09:00:00 +0100122 struct kset_uevent_ops * uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
125
126extern void kset_init(struct kset * k);
127extern int kset_add(struct kset * k);
128extern int kset_register(struct kset * k);
129extern void kset_unregister(struct kset * k);
130
131static inline struct kset * to_kset(struct kobject * kobj)
132{
133 return kobj ? container_of(kobj,struct kset,kobj) : NULL;
134}
135
136static inline struct kset * kset_get(struct kset * k)
137{
138 return k ? to_kset(kobject_get(&k->kobj)) : NULL;
139}
140
141static inline void kset_put(struct kset * k)
142{
143 kobject_put(&k->kobj);
144}
145
146static inline struct kobj_type * get_ktype(struct kobject * k)
147{
148 if (k->kset && k->kset->ktype)
149 return k->kset->ktype;
150 else
151 return k->ktype;
152}
153
154extern struct kobject * kset_find_obj(struct kset *, const char *);
155
156
157/**
158 * Use this when initializing an embedded kset with no other
159 * fields to initialize.
160 */
161#define set_kset_name(str) .kset = { .kobj = { .name = str } }
162
163
164
165struct subsystem {
166 struct kset kset;
167 struct rw_semaphore rwsem;
168};
169
Kay Sievers312c0042005-11-16 09:00:00 +0100170#define decl_subsys(_name,_type,_uevent_ops) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171struct subsystem _name##_subsys = { \
172 .kset = { \
173 .kobj = { .name = __stringify(_name) }, \
174 .ktype = _type, \
Kay Sievers312c0042005-11-16 09:00:00 +0100175 .uevent_ops =_uevent_ops, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 } \
177}
Kay Sievers312c0042005-11-16 09:00:00 +0100178#define decl_subsys_name(_varname,_name,_type,_uevent_ops) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179struct subsystem _varname##_subsys = { \
180 .kset = { \
181 .kobj = { .name = __stringify(_name) }, \
182 .ktype = _type, \
Kay Sievers312c0042005-11-16 09:00:00 +0100183 .uevent_ops =_uevent_ops, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 } \
185}
186
187/* The global /sys/kernel/ subsystem for people to chain off of */
188extern struct subsystem kernel_subsys;
189
190/**
191 * Helpers for setting the kset of registered objects.
192 * Often, a registered object belongs to a kset embedded in a
193 * subsystem. These do no magic, just make the resulting code
194 * easier to follow.
195 */
196
197/**
198 * kobj_set_kset_s(obj,subsys) - set kset for embedded kobject.
199 * @obj: ptr to some object type.
200 * @subsys: a subsystem object (not a ptr).
201 *
202 * Can be used for any object type with an embedded ->kobj.
203 */
204
205#define kobj_set_kset_s(obj,subsys) \
206 (obj)->kobj.kset = &(subsys).kset
207
208/**
209 * kset_set_kset_s(obj,subsys) - set kset for embedded kset.
210 * @obj: ptr to some object type.
211 * @subsys: a subsystem object (not a ptr).
212 *
213 * Can be used for any object type with an embedded ->kset.
214 * Sets the kset of @obj's embedded kobject (via its embedded
215 * kset) to @subsys.kset. This makes @obj a member of that
216 * kset.
217 */
218
219#define kset_set_kset_s(obj,subsys) \
220 (obj)->kset.kobj.kset = &(subsys).kset
221
222/**
223 * subsys_set_kset(obj,subsys) - set kset for subsystem
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 ->subsys.
228 * Sets the kset of @obj's kobject to @subsys.kset. This makes
229 * the object a member of that kset.
230 */
231
232#define subsys_set_kset(obj,_subsys) \
233 (obj)->subsys.kset.kobj.kset = &(_subsys).kset
234
235extern void subsystem_init(struct subsystem *);
236extern int subsystem_register(struct subsystem *);
237extern void subsystem_unregister(struct subsystem *);
238
239static inline struct subsystem * subsys_get(struct subsystem * s)
240{
241 return s ? container_of(kset_get(&s->kset),struct subsystem,kset) : NULL;
242}
243
244static inline void subsys_put(struct subsystem * s)
245{
246 kset_put(&s->kset);
247}
248
249struct subsys_attribute {
250 struct attribute attr;
251 ssize_t (*show)(struct subsystem *, char *);
252 ssize_t (*store)(struct subsystem *, const char *, size_t);
253};
254
255extern int subsys_create_file(struct subsystem * , struct subsys_attribute *);
256extern void subsys_remove_file(struct subsystem * , struct subsys_attribute *);
257
akpm@osdl.orgf743ca52005-11-22 23:36:13 -0800258#if defined(CONFIG_HOTPLUG) & defined(CONFIG_NET)
Kay Sievers312c0042005-11-16 09:00:00 +0100259void kobject_uevent(struct kobject *kobj, enum kobject_action action);
Kay Sievers0296b222005-11-11 05:33:52 +0100260
Kay Sievers312c0042005-11-16 09:00:00 +0100261int add_uevent_var(char **envp, int num_envp, int *cur_index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 char *buffer, int buffer_size, int *cur_len,
263 const char *format, ...)
264 __attribute__((format (printf, 7, 8)));
265#else
Kay Sievers312c0042005-11-16 09:00:00 +0100266static inline void kobject_uevent(struct kobject *kobj, enum kobject_action action) { }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100267
Kay Sievers312c0042005-11-16 09:00:00 +0100268static inline int add_uevent_var(char **envp, int num_envp, int *cur_index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 char *buffer, int buffer_size, int *cur_len,
270 const char *format, ...)
271{ return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272#endif
273
274#endif /* __KERNEL__ */
275#endif /* _KOBJECT_H_ */