kobject.txt 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. The kobject Infrastructure
  2. Patrick Mochel <mochel@osdl.org>
  3. Updated: 3 June 2003
  4. Copyright (c) 2003 Patrick Mochel
  5. Copyright (c) 2003 Open Source Development Labs
  6. 0. Introduction
  7. The kobject infrastructure performs basic object management that larger
  8. data structures and subsystems can leverage, rather than reimplement
  9. similar functionality. This functionality primarily concerns:
  10. - Object reference counting.
  11. - Maintaining lists (sets) of objects.
  12. - Object set locking.
  13. - Userspace representation.
  14. The infrastructure consists of a number of object types to support
  15. this functionality. Their programming interfaces are described below
  16. in detail, and briefly here:
  17. - kobjects a simple object.
  18. - kset a set of objects of a certain type.
  19. - ktype a set of helpers for objects of a common type.
  20. The kobject infrastructure maintains a close relationship with the
  21. sysfs filesystem. Each kobject that is registered with the kobject
  22. core receives a directory in sysfs. Attributes about the kobject can
  23. then be exported. Please see Documentation/filesystems/sysfs.txt for
  24. more information.
  25. The kobject infrastructure provides a flexible programming interface,
  26. and allows kobjects and ksets to be used without being registered
  27. (i.e. with no sysfs representation). This is also described later.
  28. 1. kobjects
  29. 1.1 Description
  30. struct kobject is a simple data type that provides a foundation for
  31. more complex object types. It provides a set of basic fields that
  32. almost all complex data types share. kobjects are intended to be
  33. embedded in larger data structures and replace fields they duplicate.
  34. 1.2 Definition
  35. struct kobject {
  36. const char * k_name;
  37. struct kref kref;
  38. struct list_head entry;
  39. struct kobject * parent;
  40. struct kset * kset;
  41. struct kobj_type * ktype;
  42. struct sysfs_dirent * sd;
  43. wait_queue_head_t poll;
  44. };
  45. void kobject_init(struct kobject *);
  46. int kobject_add(struct kobject *);
  47. int kobject_register(struct kobject *);
  48. void kobject_del(struct kobject *);
  49. void kobject_unregister(struct kobject *);
  50. struct kobject * kobject_get(struct kobject *);
  51. void kobject_put(struct kobject *);
  52. 1.3 kobject Programming Interface
  53. kobjects may be dynamically added and removed from the kobject core
  54. using kobject_register() and kobject_unregister(). Registration
  55. includes inserting the kobject in the list of its dominant kset and
  56. creating a directory for it in sysfs.
  57. Alternatively, one may use a kobject without adding it to its kset's list
  58. or exporting it via sysfs, by simply calling kobject_init(). An
  59. initialized kobject may later be added to the object hierarchy by
  60. calling kobject_add(). An initialized kobject may be used for
  61. reference counting.
  62. Note: calling kobject_init() then kobject_add() is functionally
  63. equivalent to calling kobject_register().
  64. When a kobject is unregistered, it is removed from its kset's list,
  65. removed from the sysfs filesystem, and its reference count is decremented.
  66. List and sysfs removal happen in kobject_del(), and may be called
  67. manually. kobject_put() decrements the reference count, and may also
  68. be called manually.
  69. A kobject's reference count may be incremented with kobject_get(),
  70. which returns a valid reference to a kobject; and decremented with
  71. kobject_put(). An object's reference count may only be incremented if
  72. it is already positive.
  73. When a kobject's reference count reaches 0, the method struct
  74. kobj_type::release() (which the kobject's kset points to) is called.
  75. This allows any memory allocated for the object to be freed.
  76. NOTE!!!
  77. It is _imperative_ that you supply a destructor for dynamically
  78. allocated kobjects to free them if you are using kobject reference
  79. counts. The reference count controls the lifetime of the object.
  80. If it goes to 0, then it is assumed that the object will
  81. be freed and cannot be used.
  82. More importantly, you must free the object there, and not immediately
  83. after an unregister call. If someone else is referencing the object
  84. (e.g. through a sysfs file), they will obtain a reference to the
  85. object, assume it's valid and operate on it. If the object is
  86. unregistered and freed in the meantime, the operation will then
  87. reference freed memory and go boom.
  88. This can be prevented, in the simplest case, by defining a release
  89. method and freeing the object from there only. Note that this will not
  90. secure reference count/object management models that use a dual
  91. reference count or do other wacky things with the reference count
  92. (like the networking layer).
  93. 1.4 sysfs
  94. Each kobject receives a directory in sysfs. This directory is created
  95. under the kobject's parent directory.
  96. If a kobject does not have a parent when it is registered, its parent
  97. becomes its dominant kset.
  98. If a kobject does not have a parent nor a dominant kset, its directory
  99. is created at the top-level of the sysfs partition.
  100. 2. ksets
  101. 2.1 Description
  102. A kset is a set of kobjects that are embedded in the same type.
  103. struct kset {
  104. struct kobj_type * ktype;
  105. struct list_head list;
  106. struct kobject kobj;
  107. struct kset_uevent_ops * uevent_ops;
  108. };
  109. void kset_init(struct kset * k);
  110. int kset_add(struct kset * k);
  111. int kset_register(struct kset * k);
  112. void kset_unregister(struct kset * k);
  113. struct kset * kset_get(struct kset * k);
  114. void kset_put(struct kset * k);
  115. struct kobject * kset_find_obj(struct kset *, char *);
  116. The type that the kobjects are embedded in is described by the ktype
  117. pointer.
  118. A kset contains a kobject itself, meaning that it may be registered in
  119. the kobject hierarchy and exported via sysfs. More importantly, the
  120. kset may be embedded in a larger data type, and may be part of another
  121. kset (of that object type).
  122. For example, a block device is an object (struct gendisk) that is
  123. contained in a set of block devices. It may also contain a set of
  124. partitions (struct hd_struct) that have been found on the device. The
  125. following code snippet illustrates how to express this properly.
  126. struct gendisk * disk;
  127. ...
  128. disk->kset.kobj.kset = &block_kset;
  129. disk->kset.ktype = &partition_ktype;
  130. kset_register(&disk->kset);
  131. - The kset that the disk's embedded object belongs to is the
  132. block_kset, and is pointed to by disk->kset.kobj.kset.
  133. - The type of objects on the disk's _subordinate_ list are partitions,
  134. and is set in disk->kset.ktype.
  135. - The kset is then registered, which handles initializing and adding
  136. the embedded kobject to the hierarchy.
  137. 2.2 kset Programming Interface
  138. All kset functions, except kset_find_obj(), eventually forward the
  139. calls to their embedded kobjects after performing kset-specific
  140. operations. ksets offer a similar programming model to kobjects: they
  141. may be used after they are initialized, without registering them in
  142. the hierarchy.
  143. kset_find_obj() may be used to locate a kobject with a particular
  144. name. The kobject, if found, is returned.
  145. There are also some helper functions which names point to the formerly
  146. existing "struct subsystem", whose functions have been taken over by
  147. ksets.
  148. decl_subsys(name,type,uevent_ops)
  149. Declares a kset named '<name>_subsys' of type <type> with
  150. uevent_ops <uevent_ops>. For example,
  151. decl_subsys(devices, &ktype_device, &device_uevent_ops);
  152. is equivalent to doing:
  153. struct kset devices_subsys = {
  154. .ktype = &ktype_devices,
  155. .uevent_ops = &device_uevent_ops,
  156. };
  157. kobject_set_name(&devices_subsys, name);
  158. The objects that are registered with a subsystem that use the
  159. subsystem's default list must have their kset ptr set properly. These
  160. objects may have embedded kobjects or ksets. The
  161. following helper makes setting the kset easier:
  162. kobj_set_kset_s(obj,subsys)
  163. - Assumes that obj->kobj exists, and is a struct kobject.
  164. - Sets the kset of that kobject to the kset <subsys>.
  165. int subsystem_register(struct kset *s);
  166. void subsystem_unregister(struct kset *s);
  167. These are just wrappers around the respective kset_* functions.
  168. 2.3 sysfs
  169. ksets are represented in sysfs when their embedded kobjects are
  170. registered. They follow the same rules of parenting, with one
  171. exception. If a kset does not have a parent, nor is its embedded
  172. kobject part of another kset, the kset's parent becomes its dominant
  173. subsystem.
  174. If the kset does not have a parent, its directory is created at the
  175. sysfs root. This should only happen when the kset registered is
  176. embedded in a subsystem itself.
  177. 3. struct ktype
  178. 3.1. Description
  179. struct kobj_type {
  180. void (*release)(struct kobject *);
  181. struct sysfs_ops * sysfs_ops;
  182. struct attribute ** default_attrs;
  183. };
  184. Object types require specific functions for converting between the
  185. generic object and the more complex type. struct kobj_type provides
  186. the object-specific fields, which include:
  187. - release: Called when the kobject's reference count reaches 0. This
  188. should convert the object to the more complex type and free it.
  189. - sysfs_ops: Provides conversion functions for sysfs access. Please
  190. see the sysfs documentation for more information.
  191. - default_attrs: Default attributes to be exported via sysfs when the
  192. object is registered.Note that the last attribute has to be
  193. initialized to NULL ! You can find a complete implementation
  194. in block/genhd.c
  195. Instances of struct kobj_type are not registered; only referenced by
  196. the kset. A kobj_type may be referenced by an arbitrary number of
  197. ksets, as there may be disparate sets of identical objects.