notifier.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*
  2. * Routines to manage notifier chains for passing status changes to any
  3. * interested routines. We need this instead of hard coded call lists so
  4. * that modules can poke their nose into the innards. The network devices
  5. * needed them so here they are for the rest of you.
  6. *
  7. * Alan Cox <Alan.Cox@linux.org>
  8. */
  9. #ifndef _LINUX_NOTIFIER_H
  10. #define _LINUX_NOTIFIER_H
  11. #include <linux/errno.h>
  12. #include <linux/mutex.h>
  13. #include <linux/rwsem.h>
  14. #include <linux/srcu.h>
  15. /*
  16. * Notifier chains are of four types:
  17. *
  18. * Atomic notifier chains: Chain callbacks run in interrupt/atomic
  19. * context. Callouts are not allowed to block.
  20. * Blocking notifier chains: Chain callbacks run in process context.
  21. * Callouts are allowed to block.
  22. * Raw notifier chains: There are no restrictions on callbacks,
  23. * registration, or unregistration. All locking and protection
  24. * must be provided by the caller.
  25. * SRCU notifier chains: A variant of blocking notifier chains, with
  26. * the same restrictions.
  27. *
  28. * atomic_notifier_chain_register() may be called from an atomic context,
  29. * but blocking_notifier_chain_register() and srcu_notifier_chain_register()
  30. * must be called from a process context. Ditto for the corresponding
  31. * _unregister() routines.
  32. *
  33. * atomic_notifier_chain_unregister(), blocking_notifier_chain_unregister(),
  34. * and srcu_notifier_chain_unregister() _must not_ be called from within
  35. * the call chain.
  36. *
  37. * SRCU notifier chains are an alternative form of blocking notifier chains.
  38. * They use SRCU (Sleepable Read-Copy Update) instead of rw-semaphores for
  39. * protection of the chain links. This means there is _very_ low overhead
  40. * in srcu_notifier_call_chain(): no cache bounces and no memory barriers.
  41. * As compensation, srcu_notifier_chain_unregister() is rather expensive.
  42. * SRCU notifier chains should be used when the chain will be called very
  43. * often but notifier_blocks will seldom be removed. Also, SRCU notifier
  44. * chains are slightly more difficult to use because they require special
  45. * runtime initialization.
  46. */
  47. struct notifier_block;
  48. typedef int (*notifier_fn_t)(struct notifier_block *nb,
  49. unsigned long action, void *data);
  50. struct notifier_block {
  51. notifier_fn_t notifier_call;
  52. struct notifier_block __rcu *next;
  53. int priority;
  54. };
  55. struct atomic_notifier_head {
  56. spinlock_t lock;
  57. struct notifier_block __rcu *head;
  58. };
  59. struct blocking_notifier_head {
  60. struct rw_semaphore rwsem;
  61. struct notifier_block __rcu *head;
  62. };
  63. struct raw_notifier_head {
  64. struct notifier_block __rcu *head;
  65. };
  66. struct srcu_notifier_head {
  67. struct mutex mutex;
  68. struct srcu_struct srcu;
  69. struct notifier_block __rcu *head;
  70. };
  71. #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { \
  72. spin_lock_init(&(name)->lock); \
  73. (name)->head = NULL; \
  74. } while (0)
  75. #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { \
  76. init_rwsem(&(name)->rwsem); \
  77. (name)->head = NULL; \
  78. } while (0)
  79. #define RAW_INIT_NOTIFIER_HEAD(name) do { \
  80. (name)->head = NULL; \
  81. } while (0)
  82. /* srcu_notifier_heads must be initialized and cleaned up dynamically */
  83. extern void srcu_init_notifier_head(struct srcu_notifier_head *nh);
  84. #define srcu_cleanup_notifier_head(name) \
  85. cleanup_srcu_struct(&(name)->srcu);
  86. #define ATOMIC_NOTIFIER_INIT(name) { \
  87. .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
  88. .head = NULL }
  89. #define BLOCKING_NOTIFIER_INIT(name) { \
  90. .rwsem = __RWSEM_INITIALIZER((name).rwsem), \
  91. .head = NULL }
  92. #define RAW_NOTIFIER_INIT(name) { \
  93. .head = NULL }
  94. /* srcu_notifier_heads cannot be initialized statically */
  95. #define ATOMIC_NOTIFIER_HEAD(name) \
  96. struct atomic_notifier_head name = \
  97. ATOMIC_NOTIFIER_INIT(name)
  98. #define BLOCKING_NOTIFIER_HEAD(name) \
  99. struct blocking_notifier_head name = \
  100. BLOCKING_NOTIFIER_INIT(name)
  101. #define RAW_NOTIFIER_HEAD(name) \
  102. struct raw_notifier_head name = \
  103. RAW_NOTIFIER_INIT(name)
  104. #ifdef __KERNEL__
  105. extern int atomic_notifier_chain_register(struct atomic_notifier_head *nh,
  106. struct notifier_block *nb);
  107. extern int blocking_notifier_chain_register(struct blocking_notifier_head *nh,
  108. struct notifier_block *nb);
  109. extern int raw_notifier_chain_register(struct raw_notifier_head *nh,
  110. struct notifier_block *nb);
  111. extern int srcu_notifier_chain_register(struct srcu_notifier_head *nh,
  112. struct notifier_block *nb);
  113. extern int blocking_notifier_chain_cond_register(
  114. struct blocking_notifier_head *nh,
  115. struct notifier_block *nb);
  116. extern int atomic_notifier_chain_unregister(struct atomic_notifier_head *nh,
  117. struct notifier_block *nb);
  118. extern int blocking_notifier_chain_unregister(struct blocking_notifier_head *nh,
  119. struct notifier_block *nb);
  120. extern int raw_notifier_chain_unregister(struct raw_notifier_head *nh,
  121. struct notifier_block *nb);
  122. extern int srcu_notifier_chain_unregister(struct srcu_notifier_head *nh,
  123. struct notifier_block *nb);
  124. extern int atomic_notifier_call_chain(struct atomic_notifier_head *nh,
  125. unsigned long val, void *v);
  126. extern int __atomic_notifier_call_chain(struct atomic_notifier_head *nh,
  127. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  128. extern int blocking_notifier_call_chain(struct blocking_notifier_head *nh,
  129. unsigned long val, void *v);
  130. extern int __blocking_notifier_call_chain(struct blocking_notifier_head *nh,
  131. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  132. extern int raw_notifier_call_chain(struct raw_notifier_head *nh,
  133. unsigned long val, void *v);
  134. extern int __raw_notifier_call_chain(struct raw_notifier_head *nh,
  135. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  136. extern int srcu_notifier_call_chain(struct srcu_notifier_head *nh,
  137. unsigned long val, void *v);
  138. extern int __srcu_notifier_call_chain(struct srcu_notifier_head *nh,
  139. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  140. #define NOTIFY_DONE 0x0000 /* Don't care */
  141. #define NOTIFY_OK 0x0001 /* Suits me */
  142. #define NOTIFY_STOP_MASK 0x8000 /* Don't call further */
  143. #define NOTIFY_BAD (NOTIFY_STOP_MASK|0x0002)
  144. /* Bad/Veto action */
  145. /*
  146. * Clean way to return from the notifier and stop further calls.
  147. */
  148. #define NOTIFY_STOP (NOTIFY_OK|NOTIFY_STOP_MASK)
  149. /* Encapsulate (negative) errno value (in particular, NOTIFY_BAD <=> EPERM). */
  150. static inline int notifier_from_errno(int err)
  151. {
  152. if (err)
  153. return NOTIFY_STOP_MASK | (NOTIFY_OK - err);
  154. return NOTIFY_OK;
  155. }
  156. /* Restore (negative) errno value from notify return value. */
  157. static inline int notifier_to_errno(int ret)
  158. {
  159. ret &= ~NOTIFY_STOP_MASK;
  160. return ret > NOTIFY_OK ? NOTIFY_OK - ret : 0;
  161. }
  162. /*
  163. * Declared notifiers so far. I can imagine quite a few more chains
  164. * over time (eg laptop power reset chains, reboot chain (to clean
  165. * device units up), device [un]mount chain, module load/unload chain,
  166. * low memory chain, screenblank chain (for plug in modular screenblankers)
  167. * VC switch chains (for loadable kernel svgalib VC switch helpers) etc...
  168. */
  169. /* CPU notfiers are defined in include/linux/cpu.h. */
  170. /* netdevice notifiers are defined in include/linux/netdevice.h */
  171. /* reboot notifiers are defined in include/linux/reboot.h. */
  172. /* Hibernation and suspend events are defined in include/linux/suspend.h. */
  173. /* Virtual Terminal events are defined in include/linux/vt.h. */
  174. #define NETLINK_URELEASE 0x0001 /* Unicast netlink socket released */
  175. /* Console keyboard events.
  176. * Note: KBD_KEYCODE is always sent before KBD_UNBOUND_KEYCODE, KBD_UNICODE and
  177. * KBD_KEYSYM. */
  178. #define KBD_KEYCODE 0x0001 /* Keyboard keycode, called before any other */
  179. #define KBD_UNBOUND_KEYCODE 0x0002 /* Keyboard keycode which is not bound to any other */
  180. #define KBD_UNICODE 0x0003 /* Keyboard unicode */
  181. #define KBD_KEYSYM 0x0004 /* Keyboard keysym */
  182. #define KBD_POST_KEYSYM 0x0005 /* Called after keyboard keysym interpretation */
  183. extern struct blocking_notifier_head reboot_notifier_list;
  184. #endif /* __KERNEL__ */
  185. #endif /* _LINUX_NOTIFIER_H */