notifier.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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. int (*notifier_call)(struct notifier_block *, unsigned long, void *);
  49. struct notifier_block *next;
  50. int priority;
  51. };
  52. struct atomic_notifier_head {
  53. spinlock_t lock;
  54. struct notifier_block *head;
  55. };
  56. struct blocking_notifier_head {
  57. struct rw_semaphore rwsem;
  58. struct notifier_block *head;
  59. };
  60. struct raw_notifier_head {
  61. struct notifier_block *head;
  62. };
  63. struct srcu_notifier_head {
  64. struct mutex mutex;
  65. struct srcu_struct srcu;
  66. struct notifier_block *head;
  67. };
  68. #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { \
  69. spin_lock_init(&(name)->lock); \
  70. (name)->head = NULL; \
  71. } while (0)
  72. #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { \
  73. init_rwsem(&(name)->rwsem); \
  74. (name)->head = NULL; \
  75. } while (0)
  76. #define RAW_INIT_NOTIFIER_HEAD(name) do { \
  77. (name)->head = NULL; \
  78. } while (0)
  79. /* srcu_notifier_heads must be initialized and cleaned up dynamically */
  80. extern void srcu_init_notifier_head(struct srcu_notifier_head *nh);
  81. #define srcu_cleanup_notifier_head(name) \
  82. cleanup_srcu_struct(&(name)->srcu);
  83. #define ATOMIC_NOTIFIER_INIT(name) { \
  84. .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
  85. .head = NULL }
  86. #define BLOCKING_NOTIFIER_INIT(name) { \
  87. .rwsem = __RWSEM_INITIALIZER((name).rwsem), \
  88. .head = NULL }
  89. #define RAW_NOTIFIER_INIT(name) { \
  90. .head = NULL }
  91. /* srcu_notifier_heads cannot be initialized statically */
  92. #define ATOMIC_NOTIFIER_HEAD(name) \
  93. struct atomic_notifier_head name = \
  94. ATOMIC_NOTIFIER_INIT(name)
  95. #define BLOCKING_NOTIFIER_HEAD(name) \
  96. struct blocking_notifier_head name = \
  97. BLOCKING_NOTIFIER_INIT(name)
  98. #define RAW_NOTIFIER_HEAD(name) \
  99. struct raw_notifier_head name = \
  100. RAW_NOTIFIER_INIT(name)
  101. #ifdef __KERNEL__
  102. extern int atomic_notifier_chain_register(struct atomic_notifier_head *nh,
  103. struct notifier_block *nb);
  104. extern int blocking_notifier_chain_register(struct blocking_notifier_head *nh,
  105. struct notifier_block *nb);
  106. extern int raw_notifier_chain_register(struct raw_notifier_head *nh,
  107. struct notifier_block *nb);
  108. extern int srcu_notifier_chain_register(struct srcu_notifier_head *nh,
  109. struct notifier_block *nb);
  110. extern int blocking_notifier_chain_cond_register(
  111. struct blocking_notifier_head *nh,
  112. struct notifier_block *nb);
  113. extern int atomic_notifier_chain_unregister(struct atomic_notifier_head *nh,
  114. struct notifier_block *nb);
  115. extern int blocking_notifier_chain_unregister(struct blocking_notifier_head *nh,
  116. struct notifier_block *nb);
  117. extern int raw_notifier_chain_unregister(struct raw_notifier_head *nh,
  118. struct notifier_block *nb);
  119. extern int srcu_notifier_chain_unregister(struct srcu_notifier_head *nh,
  120. struct notifier_block *nb);
  121. extern int atomic_notifier_call_chain(struct atomic_notifier_head *nh,
  122. unsigned long val, void *v);
  123. extern int __atomic_notifier_call_chain(struct atomic_notifier_head *nh,
  124. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  125. extern int blocking_notifier_call_chain(struct blocking_notifier_head *nh,
  126. unsigned long val, void *v);
  127. extern int __blocking_notifier_call_chain(struct blocking_notifier_head *nh,
  128. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  129. extern int raw_notifier_call_chain(struct raw_notifier_head *nh,
  130. unsigned long val, void *v);
  131. extern int __raw_notifier_call_chain(struct raw_notifier_head *nh,
  132. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  133. extern int srcu_notifier_call_chain(struct srcu_notifier_head *nh,
  134. unsigned long val, void *v);
  135. extern int __srcu_notifier_call_chain(struct srcu_notifier_head *nh,
  136. unsigned long val, void *v, int nr_to_call, int *nr_calls);
  137. #define NOTIFY_DONE 0x0000 /* Don't care */
  138. #define NOTIFY_OK 0x0001 /* Suits me */
  139. #define NOTIFY_STOP_MASK 0x8000 /* Don't call further */
  140. #define NOTIFY_BAD (NOTIFY_STOP_MASK|0x0002)
  141. /* Bad/Veto action */
  142. /*
  143. * Clean way to return from the notifier and stop further calls.
  144. */
  145. #define NOTIFY_STOP (NOTIFY_OK|NOTIFY_STOP_MASK)
  146. /* Encapsulate (negative) errno value (in particular, NOTIFY_BAD <=> EPERM). */
  147. static inline int notifier_from_errno(int err)
  148. {
  149. return NOTIFY_STOP_MASK | (NOTIFY_OK - err);
  150. }
  151. /* Restore (negative) errno value from notify return value. */
  152. static inline int notifier_to_errno(int ret)
  153. {
  154. ret &= ~NOTIFY_STOP_MASK;
  155. return ret > NOTIFY_OK ? NOTIFY_OK - ret : 0;
  156. }
  157. /*
  158. * Declared notifiers so far. I can imagine quite a few more chains
  159. * over time (eg laptop power reset chains, reboot chain (to clean
  160. * device units up), device [un]mount chain, module load/unload chain,
  161. * low memory chain, screenblank chain (for plug in modular screenblankers)
  162. * VC switch chains (for loadable kernel svgalib VC switch helpers) etc...
  163. */
  164. /* netdevice notifier chain */
  165. #define NETDEV_UP 0x0001 /* For now you can't veto a device up/down */
  166. #define NETDEV_DOWN 0x0002
  167. #define NETDEV_REBOOT 0x0003 /* Tell a protocol stack a network interface
  168. detected a hardware crash and restarted
  169. - we can use this eg to kick tcp sessions
  170. once done */
  171. #define NETDEV_CHANGE 0x0004 /* Notify device state change */
  172. #define NETDEV_REGISTER 0x0005
  173. #define NETDEV_UNREGISTER 0x0006
  174. #define NETDEV_CHANGEMTU 0x0007
  175. #define NETDEV_CHANGEADDR 0x0008
  176. #define NETDEV_GOING_DOWN 0x0009
  177. #define NETDEV_CHANGENAME 0x000A
  178. #define NETDEV_FEAT_CHANGE 0x000B
  179. #define NETDEV_BONDING_FAILOVER 0x000C
  180. #define NETDEV_PRE_UP 0x000D
  181. #define NETDEV_BONDING_OLDTYPE 0x000E
  182. #define NETDEV_BONDING_NEWTYPE 0x000F
  183. #define SYS_DOWN 0x0001 /* Notify of system down */
  184. #define SYS_RESTART SYS_DOWN
  185. #define SYS_HALT 0x0002 /* Notify of system halt */
  186. #define SYS_POWER_OFF 0x0003 /* Notify of system power off */
  187. #define NETLINK_URELEASE 0x0001 /* Unicast netlink socket released */
  188. #define CPU_ONLINE 0x0002 /* CPU (unsigned)v is up */
  189. #define CPU_UP_PREPARE 0x0003 /* CPU (unsigned)v coming up */
  190. #define CPU_UP_CANCELED 0x0004 /* CPU (unsigned)v NOT coming up */
  191. #define CPU_DOWN_PREPARE 0x0005 /* CPU (unsigned)v going down */
  192. #define CPU_DOWN_FAILED 0x0006 /* CPU (unsigned)v NOT going down */
  193. #define CPU_DEAD 0x0007 /* CPU (unsigned)v dead */
  194. #define CPU_DYING 0x0008 /* CPU (unsigned)v not running any task,
  195. * not handling interrupts, soon dead.
  196. * Called on the dying cpu, interrupts
  197. * are already disabled. Must not
  198. * sleep, must not fail */
  199. #define CPU_POST_DEAD 0x0009 /* CPU (unsigned)v dead, cpu_hotplug
  200. * lock is dropped */
  201. #define CPU_STARTING 0x000A /* CPU (unsigned)v soon running.
  202. * Called on the new cpu, just before
  203. * enabling interrupts. Must not sleep,
  204. * must not fail */
  205. /* Used for CPU hotplug events occuring while tasks are frozen due to a suspend
  206. * operation in progress
  207. */
  208. #define CPU_TASKS_FROZEN 0x0010
  209. #define CPU_ONLINE_FROZEN (CPU_ONLINE | CPU_TASKS_FROZEN)
  210. #define CPU_UP_PREPARE_FROZEN (CPU_UP_PREPARE | CPU_TASKS_FROZEN)
  211. #define CPU_UP_CANCELED_FROZEN (CPU_UP_CANCELED | CPU_TASKS_FROZEN)
  212. #define CPU_DOWN_PREPARE_FROZEN (CPU_DOWN_PREPARE | CPU_TASKS_FROZEN)
  213. #define CPU_DOWN_FAILED_FROZEN (CPU_DOWN_FAILED | CPU_TASKS_FROZEN)
  214. #define CPU_DEAD_FROZEN (CPU_DEAD | CPU_TASKS_FROZEN)
  215. #define CPU_DYING_FROZEN (CPU_DYING | CPU_TASKS_FROZEN)
  216. #define CPU_STARTING_FROZEN (CPU_STARTING | CPU_TASKS_FROZEN)
  217. /* Hibernation and suspend events */
  218. #define PM_HIBERNATION_PREPARE 0x0001 /* Going to hibernate */
  219. #define PM_POST_HIBERNATION 0x0002 /* Hibernation finished */
  220. #define PM_SUSPEND_PREPARE 0x0003 /* Going to suspend the system */
  221. #define PM_POST_SUSPEND 0x0004 /* Suspend finished */
  222. #define PM_RESTORE_PREPARE 0x0005 /* Going to restore a saved image */
  223. #define PM_POST_RESTORE 0x0006 /* Restore failed */
  224. /* Console keyboard events.
  225. * Note: KBD_KEYCODE is always sent before KBD_UNBOUND_KEYCODE, KBD_UNICODE and
  226. * KBD_KEYSYM. */
  227. #define KBD_KEYCODE 0x0001 /* Keyboard keycode, called before any other */
  228. #define KBD_UNBOUND_KEYCODE 0x0002 /* Keyboard keycode which is not bound to any other */
  229. #define KBD_UNICODE 0x0003 /* Keyboard unicode */
  230. #define KBD_KEYSYM 0x0004 /* Keyboard keysym */
  231. #define KBD_POST_KEYSYM 0x0005 /* Called after keyboard keysym interpretation */
  232. extern struct blocking_notifier_head reboot_notifier_list;
  233. /* Virtual Terminal events. */
  234. #define VT_ALLOCATE 0x0001 /* Console got allocated */
  235. #define VT_DEALLOCATE 0x0002 /* Console will be deallocated */
  236. #define VT_WRITE 0x0003 /* A char got output */
  237. #define VT_UPDATE 0x0004 /* A bigger update occurred */
  238. #define VT_PREWRITE 0x0005 /* A char is about to be written to the console */
  239. #endif /* __KERNEL__ */
  240. #endif /* _LINUX_NOTIFIER_H */