kobject core: remove rwsem from struct subsystem
[powerpc.git] / include / linux / kobject.h
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>
23 #include <linux/compiler.h>
24 #include <linux/spinlock.h>
25 #include <linux/kref.h>
26 #include <linux/kernel.h>
27 #include <linux/wait.h>
28 #include <asm/atomic.h>
29
30 #define KOBJ_NAME_LEN                   20
31 #define UEVENT_HELPER_PATH_LEN          256
32
33 /* path to the userspace helper executed on an event */
34 extern char uevent_helper[];
35
36 /* counter to tag the uevent, read only except for the kobject core */
37 extern u64 uevent_seqnum;
38
39 /* the actions here must match the proper string in lib/kobject_uevent.c */
40 typedef int __bitwise kobject_action_t;
41 enum kobject_action {
42         KOBJ_ADD        = (__force kobject_action_t) 0x01,      /* exclusive to core */
43         KOBJ_REMOVE     = (__force kobject_action_t) 0x02,      /* exclusive to core */
44         KOBJ_CHANGE     = (__force kobject_action_t) 0x03,      /* device state change */
45         KOBJ_MOUNT      = (__force kobject_action_t) 0x04,      /* mount event for block devices (broken) */
46         KOBJ_UMOUNT     = (__force kobject_action_t) 0x05,      /* umount event for block devices (broken) */
47         KOBJ_OFFLINE    = (__force kobject_action_t) 0x06,      /* device offline */
48         KOBJ_ONLINE     = (__force kobject_action_t) 0x07,      /* device online */
49         KOBJ_MOVE       = (__force kobject_action_t) 0x08,      /* device move */
50 };
51
52 struct kobject {
53         const char              * k_name;
54         char                    name[KOBJ_NAME_LEN];
55         struct kref             kref;
56         struct list_head        entry;
57         struct kobject          * parent;
58         struct kset             * kset;
59         struct kobj_type        * ktype;
60         struct dentry           * dentry;
61         wait_queue_head_t       poll;
62 };
63
64 extern int kobject_set_name(struct kobject *, const char *, ...)
65         __attribute__((format(printf,2,3)));
66
67 static inline const char * kobject_name(const struct kobject * kobj)
68 {
69         return kobj->k_name;
70 }
71
72 extern void kobject_init(struct kobject *);
73 extern void kobject_cleanup(struct kobject *);
74
75 extern int __must_check kobject_add(struct kobject *);
76 extern int __must_check kobject_shadow_add(struct kobject *, struct dentry *);
77 extern void kobject_del(struct kobject *);
78
79 extern int __must_check kobject_rename(struct kobject *, const char *new_name);
80 extern int __must_check kobject_shadow_rename(struct kobject *kobj,
81                                                 struct dentry *new_parent,
82                                                 const char *new_name);
83 extern int __must_check kobject_move(struct kobject *, struct kobject *);
84
85 extern int __must_check kobject_register(struct kobject *);
86 extern void kobject_unregister(struct kobject *);
87
88 extern struct kobject * kobject_get(struct kobject *);
89 extern void kobject_put(struct kobject *);
90
91 extern struct kobject *kobject_kset_add_dir(struct kset *kset,
92                                             struct kobject *, const char *);
93 extern struct kobject *kobject_add_dir(struct kobject *, const char *);
94
95 extern char * kobject_get_path(struct kobject *, gfp_t);
96
97 struct kobj_type {
98         void (*release)(struct kobject *);
99         struct sysfs_ops        * sysfs_ops;
100         struct attribute        ** default_attrs;
101 };
102
103
104 /**
105  *      kset - a set of kobjects of a specific type, belonging
106  *      to a specific subsystem.
107  *
108  *      All kobjects of a kset should be embedded in an identical 
109  *      type. This type may have a descriptor, which the kset points
110  *      to. This allows there to exist sets of objects of the same
111  *      type in different subsystems.
112  *
113  *      A subsystem does not have to be a list of only one type 
114  *      of object; multiple ksets can belong to one subsystem. All 
115  *      ksets of a subsystem share the subsystem's lock.
116  *
117  *      Each kset can support specific event variables; it can
118  *      supress the event generation or add subsystem specific
119  *      variables carried with the event.
120  */
121 struct kset_uevent_ops {
122         int (*filter)(struct kset *kset, struct kobject *kobj);
123         const char *(*name)(struct kset *kset, struct kobject *kobj);
124         int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp,
125                         int num_envp, char *buffer, int buffer_size);
126 };
127
128 struct kset {
129         struct subsystem        * subsys;
130         struct kobj_type        * ktype;
131         struct list_head        list;
132         spinlock_t              list_lock;
133         struct kobject          kobj;
134         struct kset_uevent_ops  * uevent_ops;
135 };
136
137
138 extern void kset_init(struct kset * k);
139 extern int __must_check kset_add(struct kset * k);
140 extern int __must_check kset_register(struct kset * k);
141 extern void kset_unregister(struct kset * k);
142
143 static inline struct kset * to_kset(struct kobject * kobj)
144 {
145         return kobj ? container_of(kobj,struct kset,kobj) : NULL;
146 }
147
148 static inline struct kset * kset_get(struct kset * k)
149 {
150         return k ? to_kset(kobject_get(&k->kobj)) : NULL;
151 }
152
153 static inline void kset_put(struct kset * k)
154 {
155         kobject_put(&k->kobj);
156 }
157
158 static inline struct kobj_type * get_ktype(struct kobject * k)
159 {
160         if (k->kset && k->kset->ktype)
161                 return k->kset->ktype;
162         else 
163                 return k->ktype;
164 }
165
166 extern struct kobject * kset_find_obj(struct kset *, const char *);
167
168
169 /**
170  * Use this when initializing an embedded kset with no other 
171  * fields to initialize.
172  */
173 #define set_kset_name(str)      .kset = { .kobj = { .name = str } }
174
175
176
177 struct subsystem {
178         struct kset             kset;
179 };
180
181 #define decl_subsys(_name,_type,_uevent_ops) \
182 struct subsystem _name##_subsys = { \
183         .kset = { \
184                 .kobj = { .name = __stringify(_name) }, \
185                 .ktype = _type, \
186                 .uevent_ops =_uevent_ops, \
187         } \
188 }
189 #define decl_subsys_name(_varname,_name,_type,_uevent_ops) \
190 struct subsystem _varname##_subsys = { \
191         .kset = { \
192                 .kobj = { .name = __stringify(_name) }, \
193                 .ktype = _type, \
194                 .uevent_ops =_uevent_ops, \
195         } \
196 }
197
198 /* The global /sys/kernel/ subsystem for people to chain off of */
199 extern struct subsystem kernel_subsys;
200 /* The global /sys/hypervisor/ subsystem  */
201 extern struct subsystem hypervisor_subsys;
202
203 /**
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) \
219         (obj)->kobj.kset = &(subsys).kset
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) \
233         (obj)->kset.kobj.kset = &(subsys).kset
234
235 /**
236  *      subsys_set_kset(obj,subsys) - set kset for subsystem
237  *      @obj:           ptr to some object type.
238  *      @subsys:        a subsystem object (not a ptr).
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) \
246         (obj)->subsys.kset.kobj.kset = &(_subsys).kset
247
248 extern void subsystem_init(struct subsystem *);
249 extern int __must_check subsystem_register(struct subsystem *);
250 extern void subsystem_unregister(struct subsystem *);
251
252 static inline struct subsystem * subsys_get(struct subsystem * s)
253 {
254         return s ? container_of(kset_get(&s->kset),struct subsystem,kset) : NULL;
255 }
256
257 static inline void subsys_put(struct subsystem * s)
258 {
259         kset_put(&s->kset);
260 }
261
262 struct subsys_attribute {
263         struct attribute attr;
264         ssize_t (*show)(struct subsystem *, char *);
265         ssize_t (*store)(struct subsystem *, const char *, size_t); 
266 };
267
268 extern int __must_check subsys_create_file(struct subsystem * ,
269                                         struct subsys_attribute *);
270
271 #if defined(CONFIG_HOTPLUG)
272 int kobject_uevent(struct kobject *kobj, enum kobject_action action);
273 int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
274                         char *envp[]);
275
276 int add_uevent_var(char **envp, int num_envp, int *cur_index,
277                         char *buffer, int buffer_size, int *cur_len,
278                         const char *format, ...)
279         __attribute__((format (printf, 7, 8)));
280 #else
281 static inline int kobject_uevent(struct kobject *kobj, enum kobject_action action)
282 { return 0; }
283 static inline int kobject_uevent_env(struct kobject *kobj,
284                                       enum kobject_action action,
285                                       char *envp[])
286 { return 0; }
287
288 static inline int add_uevent_var(char **envp, int num_envp, int *cur_index,
289                                       char *buffer, int buffer_size, int *cur_len, 
290                                       const char *format, ...)
291 { return 0; }
292 #endif
293
294 #endif /* __KERNEL__ */
295 #endif /* _KOBJECT_H_ */