kobject.h 7.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * kobject.h - generic kernel object infrastructure.
 *
4 5 6 7
 * Copyright (c) 2002-2003 Patrick Mochel
 * Copyright (c) 2002-2003 Open Source Development Labs
 * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com>
 * Copyright (c) 2006-2007 Novell Inc.
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * This file is released under the GPLv2.
 *
 * 
 * Please read Documentation/kobject.txt before using the kobject
 * interface, ESPECIALLY the parts about reference counts and object
 * destructors. 
 */

#ifndef _KOBJECT_H_
#define _KOBJECT_H_

#ifdef __KERNEL__

#include <linux/types.h>
#include <linux/list.h>
#include <linux/sysfs.h>
25
#include <linux/compiler.h>
L
Linus Torvalds 已提交
26 27 28
#include <linux/spinlock.h>
#include <linux/kref.h>
#include <linux/kernel.h>
29
#include <linux/wait.h>
L
Linus Torvalds 已提交
30 31
#include <asm/atomic.h>

32 33
#define KOBJ_NAME_LEN			20
#define UEVENT_HELPER_PATH_LEN		256
34 35
#define UEVENT_NUM_ENVP			32	/* number of env pointers */
#define UEVENT_BUFFER_SIZE		2048	/* buffer for the variables */
36 37

/* path to the userspace helper executed on an event */
38
extern char uevent_helper[];
39

40 41
/* counter to tag the uevent, read only except for the kobject core */
extern u64 uevent_seqnum;
L
Linus Torvalds 已提交
42

43 44 45 46 47 48 49 50 51 52
/*
 * The actions here must match the index to the string array
 * in lib/kobject_uevent.c
 *
 * Do not add new actions here without checking with the driver-core
 * maintainers. Action strings are not meant to express subsystem
 * or device specific properties. In most cases you want to send a
 * kobject_uevent_env(kobj, KOBJ_CHANGE, env) with additional event
 * specific variables added to the event environment.
 */
53
enum kobject_action {
54 55 56 57 58 59 60
	KOBJ_ADD,
	KOBJ_REMOVE,
	KOBJ_CHANGE,
	KOBJ_MOVE,
	KOBJ_ONLINE,
	KOBJ_OFFLINE,
	KOBJ_MAX
61 62
};

L
Linus Torvalds 已提交
63
struct kobject {
64
	const char		* k_name;
L
Linus Torvalds 已提交
65 66 67 68 69
	struct kref		kref;
	struct list_head	entry;
	struct kobject		* parent;
	struct kset		* kset;
	struct kobj_type	* ktype;
70
	struct sysfs_dirent	* sd;
L
Linus Torvalds 已提交
71 72 73 74 75
};

extern int kobject_set_name(struct kobject *, const char *, ...)
	__attribute__((format(printf,2,3)));

76
static inline const char * kobject_name(const struct kobject * kobj)
L
Linus Torvalds 已提交
77 78 79 80 81
{
	return kobj->k_name;
}

extern void kobject_init(struct kobject *);
82
extern void kobject_init_ng(struct kobject *kobj, struct kobj_type *ktype);
83
extern int __must_check kobject_add(struct kobject *);
84 85 86
extern int __must_check kobject_add_ng(struct kobject *kobj,
				       struct kobject *parent,
				       const char *fmt, ...);
87 88 89 90 91
extern int __must_check kobject_init_and_add(struct kobject *kobj,
					     struct kobj_type *ktype,
					     struct kobject *parent,
					     const char *fmt, ...);

L
Linus Torvalds 已提交
92 93
extern void kobject_del(struct kobject *);

94
extern struct kobject * __must_check kobject_create(void);
95 96 97
extern struct kobject * __must_check kobject_create_and_add(const char *name,
						struct kobject *parent);

98
extern int __must_check kobject_rename(struct kobject *, const char *new_name);
99
extern int __must_check kobject_move(struct kobject *, struct kobject *);
L
Linus Torvalds 已提交
100

101
extern int __must_check kobject_register(struct kobject *);
L
Linus Torvalds 已提交
102 103 104 105 106
extern void kobject_unregister(struct kobject *);

extern struct kobject * kobject_get(struct kobject *);
extern void kobject_put(struct kobject *);

A
Al Viro 已提交
107
extern char * kobject_get_path(struct kobject *, gfp_t);
L
Linus Torvalds 已提交
108 109 110 111 112 113 114

struct kobj_type {
	void (*release)(struct kobject *);
	struct sysfs_ops	* sysfs_ops;
	struct attribute	** default_attrs;
};

115 116 117 118 119 120 121
struct kobj_uevent_env {
	char *envp[UEVENT_NUM_ENVP];
	int envp_idx;
	char buf[UEVENT_BUFFER_SIZE];
	int buflen;
};

R
Randy Dunlap 已提交
122 123 124
struct kset_uevent_ops {
	int (*filter)(struct kset *kset, struct kobject *kobj);
	const char *(*name)(struct kset *kset, struct kobject *kobj);
125 126
	int (*uevent)(struct kset *kset, struct kobject *kobj,
		      struct kobj_uevent_env *env);
R
Randy Dunlap 已提交
127
};
L
Linus Torvalds 已提交
128

129 130
/**
 * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem.
L
Linus Torvalds 已提交
131
 *
132 133 134 135 136
 * A kset defines a group of kobjects.  They can be individually
 * different "types" but overall these kobjects all want to be grouped
 * together and operated on in the same manner.  ksets are used to
 * define the attribute callbacks and other common events that happen to
 * a kobject.
L
Linus Torvalds 已提交
137
 *
138 139 140 141 142 143 144
 * @list: the list of all kobjects for this kset
 * @list_lock: a lock for iterating over the kobjects
 * @kobj: the embedded kobject for this kset (recursion, isn't it fun...)
 * @uevent_ops: the set of uevent operations for this kset.  These are
 * called whenever a kobject has something happen to it so that the kset
 * can add new environment variables, or filter out the uevents if so
 * desired.
L
Linus Torvalds 已提交
145 146 147 148 149
 */
struct kset {
	struct list_head	list;
	spinlock_t		list_lock;
	struct kobject		kobj;
150
	struct kset_uevent_ops	*uevent_ops;
L
Linus Torvalds 已提交
151 152 153
};

extern void kset_init(struct kset * k);
154 155
extern int __must_check kset_add(struct kset * k);
extern int __must_check kset_register(struct kset * k);
L
Linus Torvalds 已提交
156
extern void kset_unregister(struct kset * k);
157 158 159
extern struct kset * __must_check kset_create_and_add(const char *name,
						struct kset_uevent_ops *u,
						struct kobject *parent_kobj);
L
Linus Torvalds 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175

static inline struct kset * to_kset(struct kobject * kobj)
{
	return kobj ? container_of(kobj,struct kset,kobj) : NULL;
}

static inline struct kset * kset_get(struct kset * k)
{
	return k ? to_kset(kobject_get(&k->kobj)) : NULL;
}

static inline void kset_put(struct kset * k)
{
	kobject_put(&k->kobj);
}

176
static inline struct kobj_type *get_ktype(struct kobject *kobj)
L
Linus Torvalds 已提交
177
{
178
	return kobj->ktype;
L
Linus Torvalds 已提交
179 180 181 182 183
}

extern struct kobject * kset_find_obj(struct kset *, const char *);


R
Randy Dunlap 已提交
184
/*
L
Linus Torvalds 已提交
185 186 187
 * Use this when initializing an embedded kset with no other 
 * fields to initialize.
 */
188
#define set_kset_name(str)	.kset = { .kobj = { .k_name = str } }
L
Linus Torvalds 已提交
189 190


191
#define decl_subsys(_name,_uevent_ops) \
192
struct kset _name##_subsys = { \
193
	.kobj = { .k_name = __stringify(_name) }, \
194
	.uevent_ops =_uevent_ops, \
L
Linus Torvalds 已提交
195 196
}

197 198
/* The global /sys/kernel/ kset for people to chain off of */
extern struct kset *kernel_kset;
199 200
/* The global /sys/hypervisor/ kobject for people to chain off of */
extern struct kobject *hypervisor_kobj;
201 202
/* The global /sys/power/ kset for people to chain off of */
extern struct kset *power_kset;
L
Linus Torvalds 已提交
203

204 205
extern int __must_check subsystem_register(struct kset *);
extern void subsystem_unregister(struct kset *);
L
Linus Torvalds 已提交
206 207 208

struct subsys_attribute {
	struct attribute attr;
209 210
	ssize_t (*show)(struct kset *, char *);
	ssize_t (*store)(struct kset *, const char *, size_t);
L
Linus Torvalds 已提交
211 212
};

213
extern int __must_check subsys_create_file(struct kset *,
214
					struct subsys_attribute *);
L
Linus Torvalds 已提交
215

K
Kay Sievers 已提交
216
#if defined(CONFIG_HOTPLUG)
217 218
int kobject_uevent(struct kobject *kobj, enum kobject_action action);
int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
219
			char *envp[]);
220

221 222
int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
	__attribute__((format (printf, 2, 3)));
223 224 225

int kobject_action_type(const char *buf, size_t count,
			enum kobject_action *type);
L
Linus Torvalds 已提交
226
#else
227 228 229
static inline int kobject_uevent(struct kobject *kobj, enum kobject_action action)
{ return 0; }
static inline int kobject_uevent_env(struct kobject *kobj,
230 231
				      enum kobject_action action,
				      char *envp[])
232
{ return 0; }
233

234
static inline int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
L
Linus Torvalds 已提交
235
{ return 0; }
236 237 238 239

static inline int kobject_action_type(const char *buf, size_t count,
			enum kobject_action *type)
{ return -EINVAL; }
L
Linus Torvalds 已提交
240 241 242 243
#endif

#endif /* __KERNEL__ */
#endif /* _KOBJECT_H_ */