kobject.h 8.2 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
	void (*release)(struct kobject *kobj);
109
	const struct sysfs_ops *sysfs_ops;
110
	struct attribute **default_attrs;
111 112
	const struct kobj_ns_type_operations *(*child_ns_type)(struct kobject *kobj);
	const void *(*namespace)(struct kobject *kobj);
L
Linus Torvalds 已提交
113 114
};

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

137
extern const struct sysfs_ops kobj_sysfs_ops;
138

139 140 141 142
/*
 * Namespace types which are used to tag kobjects and sysfs entries.
 * Network namespace will likely be the first.
 */
143 144
enum kobj_ns_type {
	KOBJ_NS_TYPE_NONE = 0,
145
	KOBJ_NS_TYPE_NET,
146 147 148 149
	KOBJ_NS_TYPES
};

struct sock;
150 151 152 153 154 155 156

/*
 * Callbacks so sysfs can determine namespaces
 *   @current_ns: return calling task's namespace
 *   @netlink_ns: return namespace to which a sock belongs (right?)
 *   @initial_ns: return the initial namespace (i.e. init_net_ns)
 */
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
struct kobj_ns_type_operations {
	enum kobj_ns_type type;
	const void *(*current_ns)(void);
	const void *(*netlink_ns)(struct sock *sk);
	const void *(*initial_ns)(void);
};

int kobj_ns_type_register(const struct kobj_ns_type_operations *ops);
int kobj_ns_type_registered(enum kobj_ns_type type);
const struct kobj_ns_type_operations *kobj_child_ns_ops(struct kobject *parent);
const struct kobj_ns_type_operations *kobj_ns_ops(struct kobject *kobj);

const void *kobj_ns_current(enum kobj_ns_type type);
const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk);
const void *kobj_ns_initial(enum kobj_ns_type type);
void kobj_ns_exit(enum kobj_ns_type type, const void *ns);


175 176
/**
 * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem.
L
Linus Torvalds 已提交
177
 *
178 179 180 181 182
 * 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 已提交
183
 *
184 185 186 187 188 189 190
 * @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 已提交
191 192
 */
struct kset {
193 194 195
	struct list_head list;
	spinlock_t list_lock;
	struct kobject kobj;
196
	const struct kset_uevent_ops *uevent_ops;
L
Linus Torvalds 已提交
197 198
};

199 200 201
extern void kset_init(struct kset *kset);
extern int __must_check kset_register(struct kset *kset);
extern void kset_unregister(struct kset *kset);
202
extern struct kset * __must_check kset_create_and_add(const char *name,
203
						const struct kset_uevent_ops *u,
204
						struct kobject *parent_kobj);
L
Linus Torvalds 已提交
205

206
static inline struct kset *to_kset(struct kobject *kobj)
L
Linus Torvalds 已提交
207
{
208
	return kobj ? container_of(kobj, struct kset, kobj) : NULL;
L
Linus Torvalds 已提交
209 210
}

211
static inline struct kset *kset_get(struct kset *k)
L
Linus Torvalds 已提交
212 213 214 215
{
	return k ? to_kset(kobject_get(&k->kobj)) : NULL;
}

216
static inline void kset_put(struct kset *k)
L
Linus Torvalds 已提交
217 218 219 220
{
	kobject_put(&k->kobj);
}

221
static inline struct kobj_type *get_ktype(struct kobject *kobj)
L
Linus Torvalds 已提交
222
{
223
	return kobj->ktype;
L
Linus Torvalds 已提交
224 225
}

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

228 229
/* The global /sys/kernel/ kobject for people to chain off of */
extern struct kobject *kernel_kobj;
N
Nishanth Aravamudan 已提交
230 231
/* The global /sys/kernel/mm/ kobject for people to chain off of */
extern struct kobject *mm_kobj;
232 233
/* The global /sys/hypervisor/ kobject for people to chain off of */
extern struct kobject *hypervisor_kobj;
234 235
/* The global /sys/power/ kobject for people to chain off of */
extern struct kobject *power_kobj;
236 237
/* The global /sys/firmware/ kobject for people to chain off of */
extern struct kobject *firmware_kobj;
L
Linus Torvalds 已提交
238

K
Kay Sievers 已提交
239
#if defined(CONFIG_HOTPLUG)
240 241
int kobject_uevent(struct kobject *kobj, enum kobject_action action);
int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
242
			char *envp[]);
243

244 245
int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
	__attribute__((format (printf, 2, 3)));
246 247 248

int kobject_action_type(const char *buf, size_t count,
			enum kobject_action *type);
L
Linus Torvalds 已提交
249
#else
250 251
static inline int kobject_uevent(struct kobject *kobj,
				 enum kobject_action action)
252 253
{ return 0; }
static inline int kobject_uevent_env(struct kobject *kobj,
254 255
				      enum kobject_action action,
				      char *envp[])
256
{ return 0; }
257

258 259
static inline int add_uevent_var(struct kobj_uevent_env *env,
				 const char *format, ...)
L
Linus Torvalds 已提交
260
{ return 0; }
261 262

static inline int kobject_action_type(const char *buf, size_t count,
263
				      enum kobject_action *type)
264
{ return -EINVAL; }
L
Linus Torvalds 已提交
265 266 267
#endif

#endif /* _KOBJECT_H_ */