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