| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * kobject.h - generic kernel object infrastructure. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-09-27 14:48:53 -07:00
										 |  |  |  * Copyright (c) 2002-2003 Patrick Mochel | 
					
						
							|  |  |  |  * Copyright (c) 2002-2003 Open Source Development Labs | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  |  * Copyright (c) 2006-2008 Greg Kroah-Hartman <greg@kroah.com> | 
					
						
							|  |  |  |  * Copyright (c) 2006-2008 Novell Inc. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  |  * destructors. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _KOBJECT_H_
 | 
					
						
							|  |  |  | #define _KOBJECT_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/list.h>
 | 
					
						
							|  |  |  | #include <linux/sysfs.h>
 | 
					
						
							| 
									
										
										
										
											2006-08-14 22:43:17 -07:00
										 |  |  | #include <linux/compiler.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/spinlock.h>
 | 
					
						
							|  |  |  | #include <linux/kref.h>
 | 
					
						
							| 
									
										
										
										
											2010-08-11 15:01:02 +01:00
										 |  |  | #include <linux/kobject_ns.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/kernel.h>
 | 
					
						
							| 
									
										
										
										
											2006-03-20 17:53:53 +11:00
										 |  |  | #include <linux/wait.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-26 16:09:06 -07:00
										 |  |  | #include <linux/atomic.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-16 09:00:00 +01:00
										 |  |  | #define UEVENT_HELPER_PATH_LEN		256
 | 
					
						
							| 
									
										
										
										
											2007-08-14 15:15:12 +02:00
										 |  |  | #define UEVENT_NUM_ENVP			32	/* number of env pointers */
 | 
					
						
							|  |  |  | #define UEVENT_BUFFER_SIZE		2048	/* buffer for the variables */
 | 
					
						
							| 
									
										
										
										
											2005-11-11 05:33:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* path to the userspace helper executed on an event */ | 
					
						
							| 
									
										
										
										
											2005-11-16 09:00:00 +01:00
										 |  |  | extern char uevent_helper[]; | 
					
						
							| 
									
										
										
										
											2005-11-11 05:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-16 09:00:00 +01:00
										 |  |  | /* counter to tag the uevent, read only except for the kobject core */ | 
					
						
							|  |  |  | extern u64 uevent_seqnum; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-08 22:29:26 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-11 05:33:52 +01:00
										 |  |  | enum kobject_action { | 
					
						
							| 
									
										
										
										
											2007-07-08 22:29:26 +02:00
										 |  |  | 	KOBJ_ADD, | 
					
						
							|  |  |  | 	KOBJ_REMOVE, | 
					
						
							|  |  |  | 	KOBJ_CHANGE, | 
					
						
							|  |  |  | 	KOBJ_MOVE, | 
					
						
							|  |  |  | 	KOBJ_ONLINE, | 
					
						
							|  |  |  | 	KOBJ_OFFLINE, | 
					
						
							|  |  |  | 	KOBJ_MAX | 
					
						
							| 
									
										
										
										
											2005-11-11 05:33:52 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct kobject { | 
					
						
							| 
									
										
										
										
											2007-12-20 02:09:39 +01:00
										 |  |  | 	const char		*name; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct list_head	entry; | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | 	struct kobject		*parent; | 
					
						
							|  |  |  | 	struct kset		*kset; | 
					
						
							|  |  |  | 	struct kobj_type	*ktype; | 
					
						
							|  |  |  | 	struct sysfs_dirent	*sd; | 
					
						
							| 
									
										
										
										
											2008-06-02 11:07:25 +01:00
										 |  |  | 	struct kref		kref; | 
					
						
							| 
									
										
										
										
											2007-12-19 01:40:42 +01:00
										 |  |  | 	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; | 
					
						
							| 
									
										
										
										
											2009-03-01 21:10:49 +08:00
										 |  |  | 	unsigned int uevent_suppress:1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-31 17:11:33 -07:00
										 |  |  | extern __printf(2, 3) | 
					
						
							|  |  |  | int kobject_set_name(struct kobject *kobj, const char *name, ...); | 
					
						
							| 
									
										
										
										
											2009-01-25 15:17:37 +01:00
										 |  |  | extern int kobject_set_name_vargs(struct kobject *kobj, const char *fmt, | 
					
						
							|  |  |  | 				  va_list vargs); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | static inline const char *kobject_name(const struct kobject *kobj) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-12-20 02:09:39 +01:00
										 |  |  | 	return kobj->name; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-17 23:05:35 -07:00
										 |  |  | extern void kobject_init(struct kobject *kobj, struct kobj_type *ktype); | 
					
						
							| 
									
										
										
										
											2011-10-31 17:11:33 -07:00
										 |  |  | 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, ...); | 
					
						
							| 
									
										
										
										
											2007-12-03 21:31:08 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | extern void kobject_del(struct kobject *kobj); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-05 22:24:43 -08:00
										 |  |  | extern struct kobject * __must_check kobject_create(void); | 
					
						
							| 
									
										
										
										
											2007-11-05 13:16:15 -08:00
										 |  |  | extern struct kobject * __must_check kobject_create_and_add(const char *name, | 
					
						
							|  |  |  | 						struct kobject *parent); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-14 22:43:17 -07:00
										 |  |  | extern int __must_check kobject_rename(struct kobject *, const char *new_name); | 
					
						
							| 
									
										
										
										
											2006-11-20 17:07:51 +01:00
										 |  |  | extern int __must_check kobject_move(struct kobject *, struct kobject *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | extern struct kobject *kobject_get(struct kobject *kobj); | 
					
						
							|  |  |  | extern void kobject_put(struct kobject *kobj); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | extern char *kobject_get_path(struct kobject *kobj, gfp_t flag); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct kobj_type { | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | 	void (*release)(struct kobject *kobj); | 
					
						
							| 
									
										
										
										
											2010-01-19 02:58:23 +01:00
										 |  |  | 	const struct sysfs_ops *sysfs_ops; | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | 	struct attribute **default_attrs; | 
					
						
							| 
									
										
										
										
											2010-03-30 11:31:25 -07:00
										 |  |  | 	const struct kobj_ns_type_operations *(*child_ns_type)(struct kobject *kobj); | 
					
						
							|  |  |  | 	const void *(*namespace)(struct kobject *kobj); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-14 15:15:12 +02:00
										 |  |  | struct kobj_uevent_env { | 
					
						
							|  |  |  | 	char *envp[UEVENT_NUM_ENVP]; | 
					
						
							|  |  |  | 	int envp_idx; | 
					
						
							|  |  |  | 	char buf[UEVENT_BUFFER_SIZE]; | 
					
						
							|  |  |  | 	int buflen; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-27 09:36:26 -07:00
										 |  |  | struct kset_uevent_ops { | 
					
						
							| 
									
										
										
										
											2009-12-31 14:52:51 +01:00
										 |  |  | 	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, | 
					
						
							| 
									
										
										
										
											2007-08-14 15:15:12 +02:00
										 |  |  | 		      struct kobj_uevent_env *env); | 
					
						
							| 
									
										
										
										
											2007-07-27 09:36:26 -07:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-02 13:47:53 +01:00
										 |  |  | 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); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 02:58:23 +01:00
										 |  |  | extern const struct sysfs_ops kobj_sysfs_ops; | 
					
						
							| 
									
										
										
										
											2007-11-02 13:47:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-30 11:31:25 -07:00
										 |  |  | struct sock; | 
					
						
							| 
									
										
										
										
											2010-05-03 16:23:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-27 14:48:53 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-09-27 14:48:53 -07:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-09-27 14:48:53 -07:00
										 |  |  |  * @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. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct kset { | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | 	struct list_head list; | 
					
						
							|  |  |  | 	spinlock_t list_lock; | 
					
						
							|  |  |  | 	struct kobject kobj; | 
					
						
							| 
									
										
										
										
											2009-12-31 14:52:51 +01:00
										 |  |  | 	const struct kset_uevent_ops *uevent_ops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | extern void kset_init(struct kset *kset); | 
					
						
							|  |  |  | extern int __must_check kset_register(struct kset *kset); | 
					
						
							|  |  |  | extern void kset_unregister(struct kset *kset); | 
					
						
							| 
									
										
										
										
											2007-09-27 14:48:53 -07:00
										 |  |  | extern struct kset * __must_check kset_create_and_add(const char *name, | 
					
						
							| 
									
										
										
										
											2009-12-31 14:52:51 +01:00
										 |  |  | 						const struct kset_uevent_ops *u, | 
					
						
							| 
									
										
										
										
											2007-09-27 14:48:53 -07:00
										 |  |  | 						struct kobject *parent_kobj); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | static inline struct kset *to_kset(struct kobject *kobj) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | 	return kobj ? container_of(kobj, struct kset, kobj) : NULL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | static inline struct kset *kset_get(struct kset *k) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return k ? to_kset(kobject_get(&k->kobj)) : NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | static inline void kset_put(struct kset *k) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	kobject_put(&k->kobj); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-16 10:11:44 -06:00
										 |  |  | static inline struct kobj_type *get_ktype(struct kobject *kobj) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-16 10:11:44 -06:00
										 |  |  | 	return kobj->ktype; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-24 21:27:06 -08:00
										 |  |  | extern struct kobject *kset_find_obj(struct kset *, const char *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-06 10:36:58 -08:00
										 |  |  | /* The global /sys/kernel/ kobject for people to chain off of */ | 
					
						
							|  |  |  | extern struct kobject *kernel_kobj; | 
					
						
							| 
									
										
										
										
											2008-07-23 21:27:39 -07:00
										 |  |  | /* The global /sys/kernel/mm/ kobject for people to chain off of */ | 
					
						
							|  |  |  | extern struct kobject *mm_kobj; | 
					
						
							| 
									
										
										
										
											2007-11-01 09:29:06 -06:00
										 |  |  | /* The global /sys/hypervisor/ kobject for people to chain off of */ | 
					
						
							|  |  |  | extern struct kobject *hypervisor_kobj; | 
					
						
							| 
									
										
										
										
											2007-11-27 11:28:26 -08:00
										 |  |  | /* The global /sys/power/ kobject for people to chain off of */ | 
					
						
							|  |  |  | extern struct kobject *power_kobj; | 
					
						
							| 
									
										
										
										
											2007-11-05 13:16:15 -08:00
										 |  |  | /* The global /sys/firmware/ kobject for people to chain off of */ | 
					
						
							|  |  |  | extern struct kobject *firmware_kobj; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-19 13:01:27 -08:00
										 |  |  | int kobject_uevent(struct kobject *kobj, enum kobject_action action); | 
					
						
							|  |  |  | int kobject_uevent_env(struct kobject *kobj, enum kobject_action action, | 
					
						
							| 
									
										
										
										
											2006-11-20 17:07:51 +01:00
										 |  |  | 			char *envp[]); | 
					
						
							| 
									
										
										
										
											2005-11-11 05:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-31 17:11:33 -07:00
										 |  |  | __printf(2, 3) | 
					
						
							|  |  |  | int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...); | 
					
						
							| 
									
										
										
										
											2007-08-12 20:43:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | int kobject_action_type(const char *buf, size_t count, | 
					
						
							|  |  |  | 			enum kobject_action *type); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* _KOBJECT_H_ */
 |