kobject.h 6.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4
/*
 * kobject.h - generic kernel object infrastructure.
 *
5 6
 * Copyright (c) 2002-2003 Patrick Mochel
 * Copyright (c) 2002-2003 Open Source Development Labs
7 8
 * Copyright (c) 2006-2008 Greg Kroah-Hartman <greg@kroah.com>
 * Copyright (c) 2006-2008 Novell Inc.
L
Linus Torvalds 已提交
9 10 11
 *
 * Please read Documentation/kobject.txt before using the kobject
 * interface, ESPECIALLY the parts about reference counts and object
12
 * destructors.
L
Linus Torvalds 已提交
13 14 15 16 17 18 19 20
 */

#ifndef _KOBJECT_H_
#define _KOBJECT_H_

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

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

34
#ifdef CONFIG_UEVENT_HELPER
35
/* path to the userspace helper executed on an event */
36
extern char uevent_helper[];
37
#endif
38

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

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

L
Linus Torvalds 已提交
64
struct kobject {
65
	const char		*name;
L
Linus Torvalds 已提交
66
	struct list_head	entry;
67 68 69
	struct kobject		*parent;
	struct kset		*kset;
	struct kobj_type	*ktype;
70
	struct kernfs_node	*sd; /* sysfs directory entry */
71
	struct kref		kref;
72 73 74
#ifdef CONFIG_DEBUG_KOBJECT_RELEASE
	struct delayed_work	release;
#endif
75 76 77 78
	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;
79
	unsigned int uevent_suppress:1;
L
Linus Torvalds 已提交
80 81
};

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

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

93
extern void kobject_init(struct kobject *kobj, struct kobj_type *ktype);
94 95 96 97 98 99 100
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, ...);
101

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

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

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

111
extern struct kobject *kobject_get(struct kobject *kobj);
112 113
extern struct kobject * __must_check kobject_get_unless_zero(
						struct kobject *kobj);
114
extern void kobject_put(struct kobject *kobj);
L
Linus Torvalds 已提交
115

116
extern const void *kobject_namespace(struct kobject *kobj);
117
extern char *kobject_get_path(struct kobject *kobj, gfp_t flag);
L
Linus Torvalds 已提交
118 119

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

127
struct kobj_uevent_env {
128
	char *argv[3];
129 130 131 132 133 134
	char *envp[UEVENT_NUM_ENVP];
	int envp_idx;
	char buf[UEVENT_BUFFER_SIZE];
	int buflen;
};

R
Randy Dunlap 已提交
135
struct kset_uevent_ops {
136 137 138
	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,
139
		      struct kobj_uevent_env *env);
R
Randy Dunlap 已提交
140
};
L
Linus Torvalds 已提交
141

142 143 144 145 146 147 148 149
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);
};

150
extern const struct sysfs_ops kobj_sysfs_ops;
151

152
struct sock;
153

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

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

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

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

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

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

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

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

218 219
int kobject_uevent(struct kobject *kobj, enum kobject_action action);
int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
220
			char *envp[]);
221
int kobject_synth_uevent(struct kobject *kobj, const char *buf, size_t count);
222

223 224
__printf(2, 3)
int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...);
225

L
Linus Torvalds 已提交
226
#endif /* _KOBJECT_H_ */