linux-kernel.bell 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // SPDX-License-Identifier: GPL-2.0+
  2. (*
  3. * Copyright (C) 2015 Jade Alglave <j.alglave@ucl.ac.uk>,
  4. * Copyright (C) 2016 Luc Maranget <luc.maranget@inria.fr> for Inria
  5. * Copyright (C) 2017 Alan Stern <stern@rowland.harvard.edu>,
  6. * Andrea Parri <parri.andrea@gmail.com>
  7. *
  8. * An earlier version of this file appeared in the companion webpage for
  9. * "Frightening small children and disconcerting grown-ups: Concurrency
  10. * in the Linux kernel" by Alglave, Maranget, McKenney, Parri, and Stern,
  11. * which appeared in ASPLOS 2018.
  12. *)
  13. "Linux-kernel memory consistency model"
  14. enum Accesses = 'once (*READ_ONCE,WRITE_ONCE*) ||
  15. 'release (*smp_store_release*) ||
  16. 'acquire (*smp_load_acquire*) ||
  17. 'noreturn (* R of non-return RMW *)
  18. instructions R[{'once,'acquire,'noreturn}]
  19. instructions W[{'once,'release}]
  20. instructions RMW[{'once,'acquire,'release}]
  21. enum Barriers = 'wmb (*smp_wmb*) ||
  22. 'rmb (*smp_rmb*) ||
  23. 'mb (*smp_mb*) ||
  24. 'barrier (*barrier*) ||
  25. 'rcu-lock (*rcu_read_lock*) ||
  26. 'rcu-unlock (*rcu_read_unlock*) ||
  27. 'sync-rcu (*synchronize_rcu*) ||
  28. 'before-atomic (*smp_mb__before_atomic*) ||
  29. 'after-atomic (*smp_mb__after_atomic*) ||
  30. 'after-spinlock (*smp_mb__after_spinlock*) ||
  31. 'after-unlock-lock (*smp_mb__after_unlock_lock*) ||
  32. 'after-srcu-read-unlock (*smp_mb__after_srcu_read_unlock*)
  33. instructions F[Barriers]
  34. (* SRCU *)
  35. enum SRCU = 'srcu-lock || 'srcu-unlock || 'sync-srcu
  36. instructions SRCU[SRCU]
  37. (* All srcu events *)
  38. let Srcu = Srcu-lock | Srcu-unlock | Sync-srcu
  39. (* Compute matching pairs of nested Rcu-lock and Rcu-unlock *)
  40. let rcu-rscs = let rec
  41. unmatched-locks = Rcu-lock \ domain(matched)
  42. and unmatched-unlocks = Rcu-unlock \ range(matched)
  43. and unmatched = unmatched-locks | unmatched-unlocks
  44. and unmatched-po = [unmatched] ; po ; [unmatched]
  45. and unmatched-locks-to-unlocks =
  46. [unmatched-locks] ; po ; [unmatched-unlocks]
  47. and matched = matched | (unmatched-locks-to-unlocks \
  48. (unmatched-po ; unmatched-po))
  49. in matched
  50. (* Validate nesting *)
  51. flag ~empty Rcu-lock \ domain(rcu-rscs) as unmatched-rcu-lock
  52. flag ~empty Rcu-unlock \ range(rcu-rscs) as unmatched-rcu-unlock
  53. (* Compute matching pairs of nested Srcu-lock and Srcu-unlock *)
  54. let carry-srcu-data = (data ; [~ Srcu-unlock] ; rf)*
  55. let srcu-rscs = ([Srcu-lock] ; carry-srcu-data ; data ; [Srcu-unlock]) & loc
  56. (* Validate nesting *)
  57. flag ~empty Srcu-lock \ domain(srcu-rscs) as unmatched-srcu-lock
  58. flag ~empty Srcu-unlock \ range(srcu-rscs) as unmatched-srcu-unlock
  59. flag ~empty (srcu-rscs^-1 ; srcu-rscs) \ id as multiple-srcu-matches
  60. (* Check for use of synchronize_srcu() inside an RCU critical section *)
  61. flag ~empty rcu-rscs & (po ; [Sync-srcu] ; po) as invalid-sleep
  62. (* Validate SRCU dynamic match *)
  63. flag ~empty different-values(srcu-rscs) as srcu-bad-value-match
  64. (* Compute marked and plain memory accesses *)
  65. let Marked = (~M) | IW | Once | Release | Acquire | domain(rmw) | range(rmw) |
  66. LKR | LKW | UL | LF | RL | RU | Srcu-lock | Srcu-unlock
  67. let Plain = M \ Marked
  68. (* Redefine dependencies to include those carried through plain accesses *)
  69. let carry-dep = (data ; [~ Srcu-unlock] ; rfi)*
  70. let addr = carry-dep ; addr
  71. let ctrl = carry-dep ; ctrl
  72. let data = carry-dep ; data