kobject.h 6.9 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 25
#include <linux/spinlock.h>
#include <linux/kref.h>
#include <linux/kernel.h>
26
#include <linux/wait.h>
L
Linus Torvalds 已提交
27 28
#include <asm/atomic.h>

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

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

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

39 40 41 42 43 44 45 46 47 48
/*
 * 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.
 */
49
enum kobject_action {
50 51 52 53 54 55 56
	KOBJ_ADD,
	KOBJ_REMOVE,
	KOBJ_CHANGE,
	KOBJ_MOVE,
	KOBJ_ONLINE,
	KOBJ_OFFLINE,
	KOBJ_MAX
57 58
};

L
Linus Torvalds 已提交
59
struct kobject {
60
	const char		*name;
L
Linus Torvalds 已提交
61
	struct list_head	entry;
62 63 64 65
	struct kobject		*parent;
	struct kset		*kset;
	struct kobj_type	*ktype;
	struct sysfs_dirent	*sd;
66
	struct kref		kref;
67 68 69 70
	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;
71
	unsigned int uevent_suppress:1;
L
Linus Torvalds 已提交
72 73
};

74 75
extern int kobject_set_name(struct kobject *kobj, const char *name, ...)
			    __attribute__((format(printf, 2, 3)));
76 77
extern int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
				  va_list vargs);
L
Linus Torvalds 已提交
78

79
static inline const char *kobject_name(const struct kobject *kobj)
L
Linus Torvalds 已提交
80
{
81
	return kobj->name;
L
Linus Torvalds 已提交
82 83
}

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

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

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

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

102 103
extern struct kobject *kobject_get(struct kobject *kobj);
extern void kobject_put(struct kobject *kobj);
L
Linus Torvalds 已提交
104

105
extern char *kobject_get_path(struct kobject *kobj, gfp_t flag);
L
Linus Torvalds 已提交
106 107

struct kobj_type {
108 109 110
	void (*release)(struct kobject *kobj);
	struct sysfs_ops *sysfs_ops;
	struct attribute **default_attrs;
L
Linus Torvalds 已提交
111 112
};

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

R
Randy Dunlap 已提交
120
struct kset_uevent_ops {
121 122 123
	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,
124
		      struct kobj_uevent_env *env);
R
Randy Dunlap 已提交
125
};
L
Linus Torvalds 已提交
126

127 128 129 130 131 132 133 134 135 136
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);
};

extern struct sysfs_ops kobj_sysfs_ops;

137 138
/**
 * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem.
L
Linus Torvalds 已提交
139
 *
140 141 142 143 144
 * 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 已提交
145
 *
146 147 148 149 150 151 152
 * @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 已提交
153 154
 */
struct kset {
155 156 157
	struct list_head list;
	spinlock_t list_lock;
	struct kobject kobj;
158
	const struct kset_uevent_ops *uevent_ops;
L
Linus Torvalds 已提交
159 160
};

161 162 163
extern void kset_init(struct kset *kset);
extern int __must_check kset_register(struct kset *kset);
extern void kset_unregister(struct kset *kset);
164
extern struct kset * __must_check kset_create_and_add(const char *name,
165
						const struct kset_uevent_ops *u,
166
						struct kobject *parent_kobj);
L
Linus Torvalds 已提交
167

168
static inline struct kset *to_kset(struct kobject *kobj)
L
Linus Torvalds 已提交
169
{
170
	return kobj ? container_of(kobj, struct kset, kobj) : NULL;
L
Linus Torvalds 已提交
171 172
}

173
static inline struct kset *kset_get(struct kset *k)
L
Linus Torvalds 已提交
174 175 176 177
{
	return k ? to_kset(kobject_get(&k->kobj)) : NULL;
}

178
static inline void kset_put(struct kset *k)
L
Linus Torvalds 已提交
179 180 181 182
{
	kobject_put(&k->kobj);
}

183
static inline struct kobj_type *get_ktype(struct kobject *kobj)
L
Linus Torvalds 已提交
184
{
185
	return kobj->ktype;
L
Linus Torvalds 已提交
186 187
}

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

190 191
/* The global /sys/kernel/ kobject for people to chain off of */
extern struct kobject *kernel_kobj;
N
Nishanth Aravamudan 已提交
192 193
/* The global /sys/kernel/mm/ kobject for people to chain off of */
extern struct kobject *mm_kobj;
194 195
/* The global /sys/hypervisor/ kobject for people to chain off of */
extern struct kobject *hypervisor_kobj;
196 197
/* The global /sys/power/ kobject for people to chain off of */
extern struct kobject *power_kobj;
198 199
/* The global /sys/firmware/ kobject for people to chain off of */
extern struct kobject *firmware_kobj;
L
Linus Torvalds 已提交
200

K
Kay Sievers 已提交
201
#if defined(CONFIG_HOTPLUG)
202 203
int kobject_uevent(struct kobject *kobj, enum kobject_action action);
int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
204
			char *envp[]);
205

206 207
int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
	__attribute__((format (printf, 2, 3)));
208 209 210

int kobject_action_type(const char *buf, size_t count,
			enum kobject_action *type);
L
Linus Torvalds 已提交
211
#else
212 213
static inline int kobject_uevent(struct kobject *kobj,
				 enum kobject_action action)
214 215
{ return 0; }
static inline int kobject_uevent_env(struct kobject *kobj,
216 217
				      enum kobject_action action,
				      char *envp[])
218
{ return 0; }
219

220 221
static inline int add_uevent_var(struct kobj_uevent_env *env,
				 const char *format, ...)
L
Linus Torvalds 已提交
222
{ return 0; }
223 224

static inline int kobject_action_type(const char *buf, size_t count,
225
				      enum kobject_action *type)
226
{ return -EINVAL; }
L
Linus Torvalds 已提交
227 228 229
#endif

#endif /* _KOBJECT_H_ */