kobject.h 6.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * kobject.h - generic kernel object infrastructure.
 *
4 5
 * Copyright (c) 2002-2003 Patrick Mochel
 * Copyright (c) 2002-2003 Open Source Development Labs
6 7
 * Copyright (c) 2006-2008 Greg Kroah-Hartman <greg@kroah.com>
 * Copyright (c) 2006-2008 Novell Inc.
L
Linus Torvalds 已提交
8 9 10 11 12
 *
 * 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
13
 * destructors.
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21
 */

#ifndef _KOBJECT_H_
#define _KOBJECT_H_

#include <linux/types.h>
#include <linux/list.h>
#include <linux/sysfs.h>
22
#include <linux/compiler.h>
L
Linus Torvalds 已提交
23 24
#include <linux/spinlock.h>
#include <linux/kref.h>
25
#include <linux/kobject_ns.h>
L
Linus Torvalds 已提交
26
#include <linux/kernel.h>
27
#include <linux/wait.h>
A
Arun Sharma 已提交
28
#include <linux/atomic.h>
29
#include <linux/workqueue.h>
L
Linus Torvalds 已提交
30

31
#define UEVENT_HELPER_PATH_LEN		256
32 33
#define UEVENT_NUM_ENVP			32	/* number of env pointers */
#define UEVENT_BUFFER_SIZE		2048	/* buffer for the variables */
34

35
#ifdef CONFIG_UEVENT_HELPER
36
/* path to the userspace helper executed on an event */
37
extern char uevent_helper[];
38
#endif
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		*name;
L
Linus Torvalds 已提交
65
	struct list_head	entry;
66 67 68
	struct kobject		*parent;
	struct kset		*kset;
	struct kobj_type	*ktype;
69
	struct kernfs_node	*sd;
70
	struct kref		kref;
71 72 73
#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
	struct delayed_work	release;
#endif
74 75 76 77
	unsigned int state_initialized:1;
	unsigned int state_in_sysfs:1;
	unsigned int state_add_uevent_sent:1;
	unsigned int state_remove_uevent_sent:1;
78
	unsigned int uevent_suppress:1;
L
Linus Torvalds 已提交
79 80
};

81 82
extern __printf(2, 3)
int kobject_set_name(struct kobject *kobj, const char *name, ...);
83 84 85
extern __printf(2, 0)
int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
			   va_list vargs);
L
Linus Torvalds 已提交
86

87
static inline const char *kobject_name(const struct kobject *kobj)
L
Linus Torvalds 已提交
88
{
89
	return kobj->name;
L
Linus Torvalds 已提交
90 91
}

92
extern void kobject_init(struct kobject *kobj, struct kobj_type *ktype);
93 94 95 96 97 98 99
extern __printf(3, 4) __must_check
int kobject_add(struct kobject *kobj, struct kobject *parent,
		const char *fmt, ...);
extern __printf(4, 5) __must_check
int kobject_init_and_add(struct kobject *kobj,
			 struct kobj_type *ktype, struct kobject *parent,
			 const char *fmt, ...);
100

101
extern void kobject_del(struct kobject *kobj);
L
Linus Torvalds 已提交
102

103
extern struct kobject * __must_check kobject_create(void);
104 105 106
extern struct kobject * __must_check kobject_create_and_add(const char *name,
						struct kobject *parent);

107
extern int __must_check kobject_rename(struct kobject *, const char *new_name);
108
extern int __must_check kobject_move(struct kobject *, struct kobject *);
L
Linus Torvalds 已提交
109

110 111
extern struct kobject *kobject_get(struct kobject *kobj);
extern void kobject_put(struct kobject *kobj);
L
Linus Torvalds 已提交
112

113
extern const void *kobject_namespace(struct kobject *kobj);
114
extern char *kobject_get_path(struct kobject *kobj, gfp_t flag);
L
Linus Torvalds 已提交
115 116

struct kobj_type {
117
	void (*release)(struct kobject *kobj);
118
	const struct sysfs_ops *sysfs_ops;
119
	struct attribute **default_attrs;
120 121
	const struct kobj_ns_type_operations *(*child_ns_type)(struct kobject *kobj);
	const void *(*namespace)(struct kobject *kobj);
L
Linus Torvalds 已提交
122 123
};

124
struct kobj_uevent_env {
125
	char *argv[3];
126 127 128 129 130 131
	char *envp[UEVENT_NUM_ENVP];
	int envp_idx;
	char buf[UEVENT_BUFFER_SIZE];
	int buflen;
};

R
Randy Dunlap 已提交
132
struct kset_uevent_ops {
133 134 135
	int (* const filter)(struct kset *kset, struct kobject *kobj);
	const char *(* const name)(struct kset *kset, struct kobject *kobj);
	int (* const uevent)(struct kset *kset, struct kobject *kobj,
136
		      struct kobj_uevent_env *env);
R
Randy Dunlap 已提交
137
};
L
Linus Torvalds 已提交
138

139 140 141 142 143 144 145 146
struct kobj_attribute {
	struct attribute attr;
	ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,
			char *buf);
	ssize_t (*store)(struct kobject *kobj, struct kobj_attribute *attr,
			 const char *buf, size_t count);
};

147
extern const struct sysfs_ops kobj_sysfs_ops;
148

149
struct sock;
150

151 152
/**
 * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem.
L
Linus Torvalds 已提交
153
 *
154 155 156 157 158
 * 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 已提交
159
 *
160 161 162 163 164 165 166
 * @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 已提交
167 168
 */
struct kset {
169 170 171
	struct list_head list;
	spinlock_t list_lock;
	struct kobject kobj;
172
	const struct kset_uevent_ops *uevent_ops;
L
Linus Torvalds 已提交
173 174
};

175 176 177
extern void kset_init(struct kset *kset);
extern int __must_check kset_register(struct kset *kset);
extern void kset_unregister(struct kset *kset);
178
extern struct kset * __must_check kset_create_and_add(const char *name,
179
						const struct kset_uevent_ops *u,
180
						struct kobject *parent_kobj);
L
Linus Torvalds 已提交
181

182
static inline struct kset *to_kset(struct kobject *kobj)
L
Linus Torvalds 已提交
183
{
184
	return kobj ? container_of(kobj, struct kset, kobj) : NULL;
L
Linus Torvalds 已提交
185 186
}

187
static inline struct kset *kset_get(struct kset *k)
L
Linus Torvalds 已提交
188 189 190 191
{
	return k ? to_kset(kobject_get(&k->kobj)) : NULL;
}

192
static inline void kset_put(struct kset *k)
L
Linus Torvalds 已提交
193 194 195 196
{
	kobject_put(&k->kobj);
}

197
static inline struct kobj_type *get_ktype(struct kobject *kobj)
L
Linus Torvalds 已提交
198
{
199
	return kobj->ktype;
L
Linus Torvalds 已提交
200 201
}

202
extern struct kobject *kset_find_obj(struct kset *, const char *);
L
Linus Torvalds 已提交
203

204 205
/* The global /sys/kernel/ kobject for people to chain off of */
extern struct kobject *kernel_kobj;
N
Nishanth Aravamudan 已提交
206 207
/* The global /sys/kernel/mm/ kobject for people to chain off of */
extern struct kobject *mm_kobj;
208 209
/* The global /sys/hypervisor/ kobject for people to chain off of */
extern struct kobject *hypervisor_kobj;
210 211
/* The global /sys/power/ kobject for people to chain off of */
extern struct kobject *power_kobj;
212 213
/* The global /sys/firmware/ kobject for people to chain off of */
extern struct kobject *firmware_kobj;
L
Linus Torvalds 已提交
214

215 216
int kobject_uevent(struct kobject *kobj, enum kobject_action action);
int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
217
			char *envp[]);
218

219 220
__printf(2, 3)
int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...);
221 222 223

int kobject_action_type(const char *buf, size_t count,
			enum kobject_action *type);
L
Linus Torvalds 已提交
224 225

#endif /* _KOBJECT_H_ */