blob: 06cbf41d32d258e464fb5263ab1be91e11cf4b43 [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 Sievers0296b222005-11-11 05:33:52 +010039/* the actions here must match the proper string in lib/kobject_uevent.c */
40typedef int __bitwise kobject_action_t;
41enum kobject_action {
Kay Sievers5f123fb2005-11-11 14:43:07 +010042 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 */
Adrian Bunk3106d462007-04-06 12:21:45 +020045 KOBJ_OFFLINE = (__force kobject_action_t) 0x04, /* device offline */
46 KOBJ_ONLINE = (__force kobject_action_t) 0x05, /* device online */
47 KOBJ_MOVE = (__force kobject_action_t) 0x06, /* device move */
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;
Tejun Heo608e2662007-06-14 04:27:22 +090058 struct sysfs_dirent * sd;
NeilBrown4508a7a2006-03-20 17:53:53 +110059 wait_queue_head_t poll;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62extern int kobject_set_name(struct kobject *, const char *, ...)
63 __attribute__((format(printf,2,3)));
64
Dmitry Torokhovf3b4f3c2005-04-26 02:32:00 -050065static inline const char * kobject_name(const struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 return kobj->k_name;
68}
69
70extern void kobject_init(struct kobject *);
71extern void kobject_cleanup(struct kobject *);
72
Andrew Morton4a7fb632006-08-14 22:43:17 -070073extern int __must_check kobject_add(struct kobject *);
Tejun Heo608e2662007-06-14 04:27:22 +090074extern int __must_check kobject_shadow_add(struct kobject *kobj,
75 struct sysfs_dirent *shadow_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076extern void kobject_del(struct kobject *);
77
Andrew Morton4a7fb632006-08-14 22:43:17 -070078extern int __must_check kobject_rename(struct kobject *, const char *new_name);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070079extern int __must_check kobject_shadow_rename(struct kobject *kobj,
Tejun Heo608e2662007-06-14 04:27:22 +090080 struct sysfs_dirent *new_parent,
81 const char *new_name);
Cornelia Huck8a824722006-11-20 17:07:51 +010082extern int __must_check kobject_move(struct kobject *, struct kobject *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Andrew Morton4a7fb632006-08-14 22:43:17 -070084extern int __must_check kobject_register(struct kobject *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085extern void kobject_unregister(struct kobject *);
86
87extern struct kobject * kobject_get(struct kobject *);
88extern void kobject_put(struct kobject *);
89
Kay Sievers86406242007-03-14 03:25:56 +010090extern struct kobject *kobject_kset_add_dir(struct kset *kset,
91 struct kobject *, const char *);
Jun'ichi Nomura74231722006-03-13 17:14:25 -050092extern struct kobject *kobject_add_dir(struct kobject *, const char *);
93
Al Virofd4f2df2005-10-21 03:18:50 -040094extern char * kobject_get_path(struct kobject *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96struct kobj_type {
97 void (*release)(struct kobject *);
98 struct sysfs_ops * sysfs_ops;
99 struct attribute ** default_attrs;
100};
101
102
103/**
104 * kset - a set of kobjects of a specific type, belonging
105 * to a specific subsystem.
106 *
107 * All kobjects of a kset should be embedded in an identical
108 * type. This type may have a descriptor, which the kset points
109 * to. This allows there to exist sets of objects of the same
110 * type in different subsystems.
111 *
112 * A subsystem does not have to be a list of only one type
113 * of object; multiple ksets can belong to one subsystem. All
114 * ksets of a subsystem share the subsystem's lock.
115 *
Kay Sievers312c0042005-11-16 09:00:00 +0100116 * Each kset can support specific event variables; it can
117 * supress the event generation or add subsystem specific
118 * variables carried with the event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
Kay Sievers312c0042005-11-16 09:00:00 +0100120struct kset_uevent_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 int (*filter)(struct kset *kset, struct kobject *kobj);
Dmitry Torokhov419cab32005-04-26 02:32:54 -0500122 const char *(*name)(struct kset *kset, struct kobject *kobj);
Kay Sievers312c0042005-11-16 09:00:00 +0100123 int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 int num_envp, char *buffer, int buffer_size);
125};
126
127struct kset {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct kobj_type * ktype;
129 struct list_head list;
130 spinlock_t list_lock;
131 struct kobject kobj;
Kay Sievers312c0042005-11-16 09:00:00 +0100132 struct kset_uevent_ops * uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
135
136extern void kset_init(struct kset * k);
Andrew Morton4a7fb632006-08-14 22:43:17 -0700137extern int __must_check kset_add(struct kset * k);
138extern int __must_check kset_register(struct kset * k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139extern void kset_unregister(struct kset * k);
140
141static inline struct kset * to_kset(struct kobject * kobj)
142{
143 return kobj ? container_of(kobj,struct kset,kobj) : NULL;
144}
145
146static inline struct kset * kset_get(struct kset * k)
147{
148 return k ? to_kset(kobject_get(&k->kobj)) : NULL;
149}
150
151static inline void kset_put(struct kset * k)
152{
153 kobject_put(&k->kobj);
154}
155
156static inline struct kobj_type * get_ktype(struct kobject * k)
157{
158 if (k->kset && k->kset->ktype)
159 return k->kset->ktype;
160 else
161 return k->ktype;
162}
163
164extern struct kobject * kset_find_obj(struct kset *, const char *);
165
166
167/**
168 * Use this when initializing an embedded kset with no other
169 * fields to initialize.
170 */
171#define set_kset_name(str) .kset = { .kobj = { .name = str } }
172
173
Kay Sievers312c0042005-11-16 09:00:00 +0100174#define decl_subsys(_name,_type,_uevent_ops) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700175struct kset _name##_subsys = { \
176 .kobj = { .name = __stringify(_name) }, \
177 .ktype = _type, \
178 .uevent_ops =_uevent_ops, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
Kay Sievers312c0042005-11-16 09:00:00 +0100180#define decl_subsys_name(_varname,_name,_type,_uevent_ops) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700181struct kset _varname##_subsys = { \
182 .kobj = { .name = __stringify(_name) }, \
183 .ktype = _type, \
184 .uevent_ops =_uevent_ops, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187/* The global /sys/kernel/ subsystem for people to chain off of */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700188extern struct kset kernel_subsys;
Michael Holzheu40394832006-05-09 12:53:49 +0200189/* The global /sys/hypervisor/ subsystem */
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700190extern struct kset hypervisor_subsys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/**
193 * Helpers for setting the kset of registered objects.
194 * Often, a registered object belongs to a kset embedded in a
195 * subsystem. These do no magic, just make the resulting code
196 * easier to follow.
197 */
198
199/**
200 * kobj_set_kset_s(obj,subsys) - set kset for embedded kobject.
201 * @obj: ptr to some object type.
202 * @subsys: a subsystem object (not a ptr).
203 *
204 * Can be used for any object type with an embedded ->kobj.
205 */
206
207#define kobj_set_kset_s(obj,subsys) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700208 (obj)->kobj.kset = &(subsys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/**
211 * kset_set_kset_s(obj,subsys) - set kset for embedded kset.
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 ->kset.
216 * Sets the kset of @obj's embedded kobject (via its embedded
217 * kset) to @subsys.kset. This makes @obj a member of that
218 * kset.
219 */
220
221#define kset_set_kset_s(obj,subsys) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700222 (obj)->kset.kobj.kset = &(subsys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224/**
225 * subsys_set_kset(obj,subsys) - set kset for subsystem
226 * @obj: ptr to some object type.
227 * @subsys: a subsystem object (not a ptr).
228 *
229 * Can be used for any object type with an embedded ->subsys.
230 * Sets the kset of @obj's kobject to @subsys.kset. This makes
231 * the object a member of that kset.
232 */
233
234#define subsys_set_kset(obj,_subsys) \
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700235 (obj)->subsys.kobj.kset = &(_subsys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700237extern void subsystem_init(struct kset *);
238extern int __must_check subsystem_register(struct kset *);
239extern void subsystem_unregister(struct kset *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700241static inline struct kset *subsys_get(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700243 if (s)
244 return kset_get(s);
245 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700248static inline void subsys_put(struct kset *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700250 kset_put(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253struct subsys_attribute {
254 struct attribute attr;
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700255 ssize_t (*show)(struct kset *, char *);
256 ssize_t (*store)(struct kset *, const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
258
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700259extern int __must_check subsys_create_file(struct kset *,
Andrew Morton4a7fb632006-08-14 22:43:17 -0700260 struct subsys_attribute *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200262#if defined(CONFIG_HOTPLUG)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800263int kobject_uevent(struct kobject *kobj, enum kobject_action action);
264int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Cornelia Huck8a824722006-11-20 17:07:51 +0100265 char *envp[]);
Kay Sievers0296b222005-11-11 05:33:52 +0100266
Kay Sievers312c0042005-11-16 09:00:00 +0100267int add_uevent_var(char **envp, int num_envp, int *cur_index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 char *buffer, int buffer_size, int *cur_len,
269 const char *format, ...)
270 __attribute__((format (printf, 7, 8)));
271#else
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800272static inline int kobject_uevent(struct kobject *kobj, enum kobject_action action)
273{ return 0; }
274static inline int kobject_uevent_env(struct kobject *kobj,
Cornelia Huck8a824722006-11-20 17:07:51 +0100275 enum kobject_action action,
276 char *envp[])
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800277{ return 0; }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100278
Kay Sievers312c0042005-11-16 09:00:00 +0100279static inline int 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{ return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283#endif
284
285#endif /* __KERNEL__ */
286#endif /* _KOBJECT_H_ */