Notes On Distributed Systems
Notes On Distributed Systems
James Aspnes
2014-05-02 18:02
Contents
Table of contents
List of figures
xi
List of tables
xii
List of algorithms
xiii
Preface
xvii
Syllabus
xviii
Lecture schedule
xxi
1 Introduction
Message passing
2 Model
2.1 Basic message-passing model . . . . . . .
2.1.1 Formal details . . . . . . . . . . .
2.1.2 Network structure . . . . . . . . .
2.2 Asynchronous systems . . . . . . . . . . .
2.2.1 Example: client-server computing .
2.3 Synchronous systems . . . . . . . . . . . .
2.4 Complexity measures . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
6
6
6
8
8
8
10
10
3 Coordinated attack
12
3.1 Formal description . . . . . . . . . . . . . . . . . . . . . . . . 12
3.2 Impossibility proof . . . . . . . . . . . . . . . . . . . . . . . . 13
i
CONTENTS
3.3
ii
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
14
15
16
17
.
.
.
.
.
.
18
18
18
20
21
22
23
31
32
33
33
34
34
35
35
36
38
38
39
40
7 Synchronous agreement
7.1 Problem definition . . . . . . . . .
7.2 Lower bound on rounds . . . . . .
7.3 Solutions . . . . . . . . . . . . . .
7.3.1 Flooding . . . . . . . . . . .
7.4 Exponential information gathering
7.4.1 Basic invariants . . . . . . .
7.4.2 Stronger facts . . . . . . . .
43
43
44
46
46
47
48
49
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
CONTENTS
7.5
iii
49
49
49
8 Byzantine agreement
8.1 Lower bounds . . . . . . . . . . . . . . . . . . . . . . . . .
8.1.1 Minimum number of rounds . . . . . . . . . . . . .
8.1.2 Minimum number of processes . . . . . . . . . . .
8.1.3 Minimum connectivity . . . . . . . . . . . . . . . .
8.1.4 Weak Byzantine agreement . . . . . . . . . . . . .
8.2 Upper bounds . . . . . . . . . . . . . . . . . . . . . . . . .
8.2.1 Exponential information gathering gets n = 3f + 1
8.2.1.1 Proof of correctness . . . . . . . . . . . .
8.2.2 Phase king gets constant-size messages . . . . . . .
8.2.2.1 The algorithm . . . . . . . . . . . . . . .
8.2.2.2 Proof of correctness . . . . . . . . . . . .
8.2.2.3 Performance of phase king . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
50
50
50
50
52
53
54
55
55
57
57
59
59
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
61
62
62
62
63
63
64
65
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
10 Paxos
10.1 Motivation: replicated state machines .
10.2 The Paxos algorithm . . . . . . . . . . .
10.3 Informal analysis: how information flows
10.4 Safety properties . . . . . . . . . . . . .
10.5 Learning the results . . . . . . . . . . .
10.6 Liveness properties . . . . . . . . . . . .
. . . . .
. . . . .
between
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
rounds
. . . . .
. . . . .
. . . . .
.
.
.
.
.
.
.
.
.
.
.
.
66
66
67
69
69
71
71
11 Failure detectors
11.1 How to build a failure detector .
11.2 Classification of failure detectors
11.2.1 Degrees of completeness .
11.2.2 Degrees of accuracy . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
73
74
74
74
74
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
CONTENTS
iv
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
75
76
77
78
79
81
82
83
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
85
85
87
87
88
89
89
89
91
91
13 Synchronizers
13.1 Definitions . . . . . . . . . . . . . . . . . . . . . . . . . . .
13.2 Implementations . . . . . . . . . . . . . . . . . . . . . . .
13.2.1 The alpha synchronizer . . . . . . . . . . . . . . .
13.2.2 The beta synchronizer . . . . . . . . . . . . . . . .
13.2.3 The gamma synchronizer . . . . . . . . . . . . . .
13.3 Applications . . . . . . . . . . . . . . . . . . . . . . . . . .
13.4 Limitations of synchronizers . . . . . . . . . . . . . . . . .
13.4.1 Impossibility with crash failures . . . . . . . . . .
13.4.2 Unavoidable slowdown with global synchronization
13.5 Outline of the proof . . . . . . . . . . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
93
93
94
95
95
96
97
97
97
97
98
14 Quorum systems
14.1 Basics . . . . . . . . . . . . .
14.2 Simple quorum systems . . .
14.3 Goals . . . . . . . . . . . . .
14.4 Paths system . . . . . . . . .
14.5 Byzantine quorum systems .
14.6 Probabilistic quorum systems
14.6.1 Example . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
100
100
100
101
102
103
104
105
11.3
11.4
11.5
11.6
12 Logical clocks
12.1 Causal ordering . . . . . . . . . .
12.2 Implementations . . . . . . . . .
12.2.1 Lamport clock . . . . . .
12.2.2 Neiger-Toueg-Welch clock
12.2.3 Vector clocks . . . . . . .
12.3 Applications . . . . . . . . . . . .
12.3.1 Consistent snapshots . . .
12.3.1.1 Property testing
12.3.2 Replicated state machines
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
CONTENTS
II
Shared memory
107
15 Model
15.1 Atomic registers . . . . . . . . . . . . . .
15.2 Single-writer versus multi-writer registers
15.3 Fairness and crashes . . . . . . . . . . . .
15.4 Concurrent executions . . . . . . . . . . .
15.5 Consistency properties . . . . . . . . . . .
15.6 Complexity measures . . . . . . . . . . . .
15.7 Fancier registers . . . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
108
. 108
. 109
. 110
. 110
. 111
. 112
. 113
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
121
. 121
. 121
. 122
. 122
. 123
. 124
. 125
. 125
. 126
. 129
. 129
. 132
. 133
. 135
. 135
. 136
.
.
.
.
.
.
.
.
.
.
.
.
17 Mutual exclusion
17.1 The problem . . . . . . . . . . . . . . . . . . . . . . .
17.2 Goals . . . . . . . . . . . . . . . . . . . . . . . . . . .
17.3 Mutual exclusion using strong primitives . . . . . . . .
17.3.1 Test and set . . . . . . . . . . . . . . . . . . . .
17.3.2 A lockout-free algorithm using an atomic queue
17.3.2.1 Reducing space complexity . . . . . .
17.4 Mutual exclusion using only atomic registers . . . . .
17.4.1 Petersons tournament algorithm . . . . . . . .
17.4.1.1 Correctness of Petersons protocol . .
17.4.1.2 Generalization to n processes . . . . .
17.4.2 Fast mutual exclusion . . . . . . . . . . . . . .
17.4.3 Lamports Bakery algorithm . . . . . . . . . .
17.4.4 Lower bound on the number of registers . . . .
17.5 RMR complexity . . . . . . . . . . . . . . . . . . . . .
17.5.1 Cache-coherence vs. distributed shared memory
17.5.2 RMR complexity of Petersons algorithm . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
115
116
116
118
119
119
120
CONTENTS
vi
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
140
141
142
143
145
146
148
149
150
19 Atomic snapshots
19.1 The basic trick: two identical collects equals a snapshot
19.2 The Gang of Six algorithm . . . . . . . . . . . . . . . .
19.2.1 Linearizability . . . . . . . . . . . . . . . . . . .
19.2.2 Using bounded registers . . . . . . . . . . . . . .
19.3 Faster snapshots using lattice agreement . . . . . . . . .
19.3.1 Lattice agreement . . . . . . . . . . . . . . . . .
19.3.2 Connection to vector clocks . . . . . . . . . . . .
19.3.3 The full reduction . . . . . . . . . . . . . . . . .
19.3.4 Why this works . . . . . . . . . . . . . . . . . . .
19.3.5 Implementing lattice agreement . . . . . . . . . .
19.4 Practical snapshots using LL/SC . . . . . . . . . . . . .
19.4.1 Details of the single-scanner snapshot . . . . . .
19.4.2 Extension to multiple scanners . . . . . . . . . .
19.5 Applications . . . . . . . . . . . . . . . . . . . . . . . . .
19.5.1 Multi-writer registers from single-writer registers
19.5.2 Counters and accumulators . . . . . . . . . . . .
19.5.3 Resilient snapshot objects . . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
153
153
154
155
156
159
159
160
160
162
163
167
168
170
170
170
171
171
.
.
.
.
.
.
.
.
registers
. . . . .
. . . . .
. . . . .
. . . . .
173
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
176
176
178
179
179
180
CONTENTS
vii
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
192
192
194
194
195
196
196
197
199
201
201
203
205
24 Renaming
24.1 Renaming . . . . . . . . . . . . . . . . . . . . . . . .
24.2 Performance . . . . . . . . . . . . . . . . . . . . . . .
24.3 Order-preserving renaming . . . . . . . . . . . . . .
24.4 Deterministic renaming . . . . . . . . . . . . . . . .
24.4.1 Wait-free renaming with 2n 1 names . . . .
24.4.2 Long-lived renaming . . . . . . . . . . . . . .
24.4.3 Renaming without snapshots . . . . . . . . .
24.4.3.1 Splitters . . . . . . . . . . . . . . . .
24.4.3.2 Splitters in a grid . . . . . . . . . .
24.4.4 Getting to 2n 1 names in polynomial space
24.4.5 Renaming with test-and-set . . . . . . . . . .
24.5 Randomized renaming . . . . . . . . . . . . . . . . .
24.5.1 Randomized splitters . . . . . . . . . . . . . .
24.5.2 Randomized test-and-set plus sampling . . .
24.5.3 Renaming with sorting networks . . . . . . .
24.5.3.1 Sorting networks . . . . . . . . . . .
24.5.3.2 Renaming networks . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
207
207
208
209
209
210
211
212
212
213
215
216
216
217
217
218
218
219
CONTENTS
viii
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
222
. 223
. 223
. 224
. 225
. 225
. 226
. 226
. 227
. 227
. 228
26 Obstruction-freedom
26.1 Why build obstruction-free algorithms? . . .
26.2 Examples . . . . . . . . . . . . . . . . . . . .
26.2.1 Lock-free implementations . . . . . . .
26.2.2 Double-collect snapshots . . . . . . . .
26.2.3 Software transactional memory . . . .
26.2.4 Obstruction-free test-and-set . . . . .
26.2.5 An obstruction-free deque . . . . . . .
26.3 Boosting obstruction-freedom to wait-freedom
26.3.1 Cost . . . . . . . . . . . . . . . . . . .
26.4 Lower bounds for lock-free protocols . . . . .
26.4.1 Contention . . . . . . . . . . . . . . .
26.4.2 The class G . . . . . . . . . . . . . . .
26.4.3 The lower bound proof . . . . . . . . .
26.4.4 Consequences . . . . . . . . . . . . . .
26.4.5 More lower bounds . . . . . . . . . . .
26.5 Practical considerations . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
229
. 230
. 230
. 230
. 230
. 231
. 231
. 233
. 235
. 239
. 240
. 240
. 241
. 243
. 247
. 247
. 247
27 BG
27.1
27.2
27.3
27.4
27.5
27.6
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
simulation
Safe agreement . . . . . . . . .
The basic simulation algorithm
Effect of failures . . . . . . . .
Inputs and outputs . . . . . . .
Correctness of the simulation .
BG simulation and consensus .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
248
248
250
251
251
252
253
CONTENTS
28 Topological methods
28.1 Basic idea . . . . . . . . . . . . . . . . . . . . . . . . .
28.2 k-set agreement . . . . . . . . . . . . . . . . . . . . . .
28.3 Representing distributed computations using topology
28.3.1 Simplicial complexes and process states . . . .
28.3.2 Subdivisions . . . . . . . . . . . . . . . . . . .
28.4 Impossibility of k-set agreement . . . . . . . . . . . . .
28.5 Simplicial maps and specifications . . . . . . . . . . .
28.5.1 Mapping inputs to outputs . . . . . . . . . . .
28.6 The asynchronous computability theorem . . . . . . .
28.6.1 The participating set protocol . . . . . . . . . .
28.7 Proving impossibility results . . . . . . . . . . . . . . .
28.7.1 k-connectivity . . . . . . . . . . . . . . . . . . .
28.7.2 Impossibility proofs for specific problems . . .
ix
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
254
. 254
. 255
. 256
. 256
. 260
. 264
. 265
. 266
. 267
. 268
. 270
. 270
. 271
29 Approximate agreement
273
29.1 Algorithms for approximate agreement . . . . . . . . . . . . . 273
29.2 Lower bound on step complexity . . . . . . . . . . . . . . . . 276
Appendix
A Assignments
A.1 Assignment 1: due Wednesday, 2014-01-29, at 5:00pm
A.1.1 Counting evil processes . . . . . . . . . . . . .
A.1.2 Avoiding expensive processes . . . . . . . . . .
A.2 Assignment 2: due Wednesday, 2014-02-12, at 5:00pm
A.2.1 Synchronous agreement with weak failures . . .
A.2.2 Byzantine agreement with contiguous faults . .
A.3 Assignment 3: due Wednesday, 2014-02-26, at 5:00pm
A.3.1 Among the elect . . . . . . . . . . . . . . . . .
A.3.2 Failure detectors on the cheap . . . . . . . . . .
A.4 Assignment 4: due Wednesday, 2014-03-26, at 5:00pm
A.4.1 A global synchronizer with a global clock . . .
A.4.2 A message-passing counter . . . . . . . . . . .
A.5 Assignment 5: due Wednesday, 2014-04-09, at 5:00pm
A.5.1 A concurrency detector . . . . . . . . . . . . .
A.5.2 Two-writer sticky bits . . . . . . . . . . . . . .
A.6 Assignment 6: due Wednesday, 2014-04-23, at 5:00pm
A.6.1 A rotate register . . . . . . . . . . . . . . . . .
279
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
279
279
279
280
282
282
283
284
284
285
286
286
287
287
287
289
290
290
CONTENTS
A.6.2 A randomized two-process test-and-set
A.7 CS465/CS565 Final Exam, May 2nd, 2014 . .
A.7.1 Maxima (20 points) . . . . . . . . . .
A.7.2 Historyless objects (20 points) . . . .
A.7.3 Hams (20 points) . . . . . . . . . . . .
A.7.4 Mutexes (20 points) . . . . . . . . . .
x
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
291
294
294
295
296
297
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
299
. 299
. 299
. 300
. 301
. 302
. 302
. 303
. 305
. 306
. 306
. 307
. 308
. 309
. 309
. 310
. 311
. 312
CONTENTS
xi
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
325
. 325
. 325
. 326
. 326
. 327
. 327
. 328
. 328
. 329
. 329
. 329
. 330
. 331
. 331
. 332
. 332
. 333
Bibliography
334
Index
351
List of Figures
6.1
42
8.1
8.2
51
52
77
xii
List of Tables
18.1 Position of various types in the wait-free hierarchy . . . . . . 142
xiii
List of Algorithms
2.1
2.2
4.1
4.2
4.3
4.4
.
.
.
.
19
20
22
24
5.1
26
6.1
6.2
34
37
8.1
58
75
78
80
17.1
17.2
17.3
17.4
17.5
17.6
17.7
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
. . . . . . . .
. . . . . . . .
. . . . . . . .
two processes
. . . . . . . .
. . . . . . . .
. . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
9
9
123
124
125
126
130
132
137
LIST OF ALGORITHMS
19.2
19.3
19.4
19.5
19.6
xv
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
161
162
165
168
168
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
187
187
188
190
191
23.1
23.2
23.3
23.4
23.5
23.6
23.7
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
195
197
197
199
202
203
204
.
.
.
.
.
.
.
.
.
.
.
.
.
.
LIST OF ALGORITHMS
xvi
Resettable fetch-and-increment . . . . . . . . . . . .
Consensus using a lockable register . . . . . . . . .
Timestamps with n 3 and one Byzantine process .
Counter from set object . . . . . . . . . . . . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
308
309
311
312
Preface
These are notes for the Spring 2014 semester version of the Yale course CPSC
465/565 Theory of Distributed Systems. This document also incorporates
the lecture schedule and assignments, as well as some sample assignments
from previous semesters. Because this is a work in progress, it will be
updated frequently over the course of the semester.
Notes from Fall 2011 can be found at http://www.cs.yale.edu/homes/
aspnes/classes/469/notes-2011.pdf.
Notes from earlier semesters can be found at http://pine.cs.yale.
edu/pinewiki/465/.
Much of the structure of the course follows the textbook, Attiya and
Welchs Distributed Computing [AW04], with some topics based on Lynchs
Distributed Algorithms [Lyn96] and additional readings from the research
literature. In most cases youll find these materials contain much more
detail than what is presented here, so it is better to consider this document
a supplement to them than to treat it as your primary source of information.
Acknowledgments
Many parts of these notes were improved by feedback from students taking
various versions of this course. Id like to thank Mike Marmar and Hao Pan
in particular for suggesting improvements to some of the posted solutions.
Id also like to apologize to the many other students who should be thanked
here but whose names I didnt keep track of in the past.
xvii
Syllabus
Description
Models of asynchronous distributed computing systems. Fundamental concepts of concurrency and synchronization, communication, reliability, topological and geometric constraints, time and space complexity, and distributed
algorithms.
Meeting times
Lectures are MW 11:3512:50 in AKW 200.
Staff
The instructor for the course is James Aspnes. Office: AKW 401. Email:
james.aspnes@gmail.com. URL: http://www.cs.yale.edu/homes/aspnes/.
The teaching fellow is Ennan Zhai. Office: AKW 404. Email: ennan.zhai@yale.edu.
Office hours can be found in the course calendar at Google Calendar,
which can also be reached through James Aspness web page.
xviii
SYLLABUS
xix
Textbook
Hagit Attiya and Jennifer Welch, Distributed Computing: Fundamentals,
Simulations, and Advanced Topics, second edition. Wiley, 2004. QA76.9.D5
A75X 2004 (LC). ISBN 0471453242.
On-line version: http://dx.doi.org/10.1002/0471478210. (This may
not work outside Yale.)
Errata: http://www.cs.technion.ac.il/~hagit/DC/2nd-errata.html.
Course requirements
Six homework assignments (60% of the semester grade) plus a final exam
(40%).
SYLLABUS
xx
Late assignments
Late assignments will not be accepted without a Deans Excuse.
Lecture schedule
As always, the future is uncertain, so you should take parts of the schedule
that havent happened yet with a grain of salt. Readings refer to chapters
or sections in the course notes, except for those specified as in AW, which
refer to the course textbook Attiya and Welch [AW04].
2014-01-13 Distributed systems vs. classical and parallel systems. Nondeterminism and the adversary. Message-passing vs. shared-memory.
Basic message-passing model: states, outbufs, inbufs; computation and
delivery events; executions. Synchrony and asynchrony. Fairness and
admissible executions. Performance measures. Proof of correctness
for a simple client-server interaction. Impossibility proof for the Two
Generals problem using indistinguishability. Sketch of algorithm using randomization. Readings: Chapter 1, Chapter 2, Chapter 3 except
3.3.3; AW Chapter 1.
2014-01-15 Flooding and convergecast algorithms. A simple distributed
breadth-first search protocol. Readings: Chapter 4, 5.1; AW Chapter
2
2014-01-17 In AKW 000 for this lecture only. More distributed
breadth-first search. Start of leader election. Readings: Rest of Chapter 5, 6.16.2; AW 3.13.3.2, 3.4.1.1.
2014-01-22 More leader election algorithms. Lower bounds on message
complexity. Readings: Rest of Chapter 6, AW rest of 3.3 and 3.4.
2014-01-27 Synchronous agreement: lower bounds and algorithms for the
crash-failure model. Impossibility of Byzantine agreement with n
3f . Readings: Chapter 7, 8.1.2; AW 5.1, 5.2.15.2.3.
2014-01-29 More Byzantine agreement: additional impossibility results,
the exponential information gathering algorithm. Readings: 8.1.3
8.2.1; AW 5.2.4.
xxi
LECTURE SCHEDULE
xxii
2014-02-03 Phase king algorithm for Byzantine agreement. Bivalence arguments and the Fischer-Lynch-Paterson impossibility proof for asynchronous agreement with one crash failure. Doing asynchronous agreement anyway using Paxos. Readings: 8.2.2, Chapter 9, Chapter 10;
AW 5.2.55.3, [Lam01].
2014-02-05 No lecture due to weather.
2014-02-10 Failure detectors: classification of failure detectors, consensus
using S and S. Readings: Chapter 11 up through 11.4; [CT96].
2014-02-12 Impossibility results for failure detectors. Logical clocks: Lamport clocks, Neiger-Toueg-Welch clocks, Readings: 11.511.6, Chapter 12 through 12.2.2; AW 6.1.16.1.2.
2014-02-17 More logical clocks: vector clocks, applications. Synchronizers
and the session problem. Readings: 12.2.3 and 12.3, Chapter 13;
AW 6.1.3 and 6.2, Chapter 11.
2014-02-19 Shared memory and distributed shared memory. Readings:
Chapter 15, Chapter 16; AW 9.1 and 9.3.
2014-02-24 Quorum systems. Readings: Chapter 14; [NW98].
2014-02-26 Start of mutual exclusion: problem definition, algorithms for
strong primitives, Petersons tournament algorithm. A bit about splitters and fast mutex, although I ran over before getting to the punchline
(see 17.4.2). Readings: Chapter 17 through 17.4.2; AW 4.14.3.2,
4.4.24.4.3, 4.4.5.
2014-03-03 More mutex: return of the splitters, Lamports bakery algorithm, Burns-Lynch lower bound on space, RMR complexity. Readings: 17.4.217.5.2. AW 4.4.4, [YA95].
2014-03-05 End of mutex: The Yang-Anderson algorithm for low RMR
mutex in the distributed shared memory model, a few more comments
on lower bounds. Wait-free computation and universality of consensus. Readings: 17.5.3, 17.5.4, and 18.2, also a bit of the start of
Chapter 18; [Her91b].
2014-03-24 The wait-free hierarchy: consensus number of various objects.
Readings: rest of Chapter 18 (except 18.1.4).
LECTURE SCHEDULE
xxiii
LECTURE SCHEDULE
xxiv
Chapter 1
Introduction
Distributed computing systems are characterized by their structure: a
typical distributed computing system will consist of some large number of
interacting devices that each run their own programs but that are affected by
receiving messages or observing shared-memory updates from other devices.
Examples of distributed computing systems range from simple systems in
which a single client talks to a single server to huge amorphous networks
like the Internet as a whole.
As distributed systems get larger, it becomes harder and harder to predict or even understand their behavior. Part of the reason for this is that we
as programmers have not yet developed the kind of tools for managing complexity (like subroutines or objects with narrow interfaces, or even simple
structured programming mechanisms like loops or if/then statements) that
are standard in sequential programming. Part of the reason is that large
distributed systems bring with them large amounts of inherent nondeterminismunpredictable events like delays in message arrivals, the sudden
failure of components, or in extreme cases the nefarious actions of faulty or
malicious machines opposed to the goals of the system as a whole. Because
of the unpredictability and scale of large distributed systems, it can often
be difficult to test or simulate them adequately. Thus there is a need for
theoretical tools that allow us to prove properties of these systems that will
let us use them with confidence.
The first task of any theory of distributed systems is modeling: defining a
mathematical structure that abstracts out all relevant properties of a large
distributed system. There are many foundational models for distributed
systems, but for this class we will follow [AW04] and use simple automatonbased models. Here we think of the system as a whole as passing from one
CHAPTER 1. INTRODUCTION
CHAPTER 1. INTRODUCTION
Well see many of these at some point in this course, and examine which
of them can simulate each other under various conditions.
Properties we might want to prove about a model include:
Safety properties, of the form nothing bad ever happens or more
precisely there are no bad reachable states of the system. These
include things like at most one of the traffic lights at the intersection
of Busy and Main is ever green. Such properties are typically proved
using invariants, properties of the state of the system that are true
initially and that are preserved by all transitions; this is essentially a
disguised induction proof.
Liveness properties, of the form something good eventually happens. An example might be my email is eventually either delivered or
returned to me. These are not properties of particular states (I might
unhappily await the eventual delivery of my email for decades without violating the liveness property just described), but of executions,
where the property must hold starting at some finite time. Liveness
properties are generally proved either from other liveness properties
(e.g., all messages in this message-passing system are eventually delivered) or from a combination of such properties and some sort of
timer argument where some progress metric improves with every transition and guarantees the desirable state when it reaches some bound
(also a disguised induction proof).
Fairness properties are a strong kind of liveness property of the form
something good eventually happens to everybody. Such properties
exclude starvation, a situation where most of the kids are happily
chowing down at the orphanage (some kid eventually eats something
is a liveness property) but poor Oliver Twist is dying for lack of gruel
in the corner.
Simulations show how to build one kind of system from another, such
as a reliable message-passing system built on top of an unreliable system (TCP), a shared-memory system built on top of a message-passing
system (distributed shared-memory), or a synchronous system build
on top of an asynchronous system (synchronizerssee Chapter 13).
Impossibility results describe things we cant do. For example, the
classic Two Generals impossibility result (Chapter 3) says that its
impossible to guarantee agreement between two processes across an
CHAPTER 1. INTRODUCTION
1
An exception might be lower bounds for data structures, which also rely on a processs
ignorance.
Part I
Message passing
Chapter 2
Model
See [AW04, Chapter 2] for details. Well just give the basic overview here.
2.1
2.1.1
Formal details
Each process i has, in addition to its state statei , a variable inbuf i [j] for each
process j it can receive messages from and outbuf i [j] for each process j it
CHAPTER 2. MODEL
can send messages to. We assume each process has a transition function
that maps tuples consisting of the inbuf values and the current state to
a new state plus zero or one messages to be added to each outbuf (note
that this means that the processs behavior cant depend on which of its
previous messages have been delivered or not). A computation event comp(i)
applies the transition function for i, emptying out all of is inbuf variables,
updating its state, and adding any outgoing messages to is outbuf variables.
A delivery event del(i, j, m) moves message m from outbuf i [j] to inbuf j [i].
Some implicit features in this definition:
A process cant tell when its outgoing messages are delivered, because
the outbuf i variables arent included in the accessible state used as
input to the transition function.
Processes are deterministic: The next action of each process depends
only on its current state, and not on extrinsic variables like the phase
of the moon, coin-flips, etc. We may wish to relax this condition later
by allowing coin-flips; to do so, we will need to extend the model to
incorporate probabilities.
Processes must process all incoming messages at once. This is not as
severe a restriction as one might think, because we can always have
the first comp(i) event move all incoming messages to buffers in the
statei variable, and process messages sequentially during subsequent
comp(i) events.
It is possible to determine the accessible state of a process by looking
only at events that involve that process. Specifically, given a schedule
S, define the restriction S|i to be the subsequence consisting of all
comp(i) and del(j, i, m) events (ranging over all possible j and m).
Since these are the only events that affect the accessible state of i,
and only the accessible state of i is needed to apply the transition
function, we can compute the accessible state of i looking only at
S|i. In particular, this means that i will have the same accessible
state after any two schedules S and S 0 where S|i = S 0 |i, and thus
will take the same actions in both schedules. This is the basis for
indistinguishability proofs (3.2), a central technique in obtaining
lower bounds and impossibility results.
A curious feature of this particular model is that communication channels are not modeled separately from processes, but instead are split across
CHAPTER 2. MODEL
processes (as the inbuf and outbuf variables). This leads to some oddities like
having to distinguish the accessible state of a process (which excludes the
outbufs) from the full state (which doesnt). A different approach (taken, for
example, by [Lyn96]) would be to have separate automata representing processes and communication channels. But since the resulting model produces
essentially the same executions, the exact details dont really matter.
2.1.2
Network structure
It may be the case that not all processes can communicate directly; if so,
we impose a network structure in the form of a directed graph, where i
can send a message to j if and only if there is an edge from i to j in the
graph. Typically we assume that each process knows the identity of all its
neighbors.
For some problems (e.g., in peer-to-peer systems or other overlay networks) it may be natural to assume that there is a fully-connected underlying network but that we have a dynamic network on top of it, where
processes can only send to other processes that they have obtained the addresses of in some way.
2.2
Asynchronous systems
2.2.1
CHAPTER 2. MODEL
1
2
initially do
send request to server
Algorithm 2.1: Client-server computation: client code
1
2
The interpretation of Algorithm 2.1 is that the client sends request (by
adding it to its outbuf) in its very first computation event (after which it does
nothing). The interpretation of Algorithm 2.2 is that in any computation
event where the server observes request in its inbuf, it sends response.
We want to claim that the client eventually receives response in any
admissible execution. To prove this, observe that:
1. After finitely many steps, the client carries out a computation event.
This computation event puts request in its outbuf.
2. After finitely many more steps, a delivery event occurs that moves
request to the servers inbuf.
3. After finitely many more steps, the server executes a computation
event that causes it to send response.
4. After finitely many more steps, a delivery event occurs that moves
response to the clients inbuf.
5. After finitely many more steps, the client executes a computation
event that causes it to process response (and do nothing, given that
we havent include any code to handle this response).
Each step of the proof is justified by the constraints on admissible executions. If we could run for infinitely many steps without a particular process
doing a computation event or a particular message being delivered, wed
violate those constraints.
Most of the time we will not attempt to prove the correctness of a protocol at quite this level of tedious detail. But if you are only interested in
distributed algorithms that people actually use, you have now seen a proof
of correctness for 99.9% of them, and do not need to read any further.
CHAPTER 2. MODEL
2.3
10
Synchronous systems
2.4
Complexity measures
CHAPTER 2. MODEL
11
Chapter 3
Coordinated attack
(See also [Lyn96, 5.1].)
The Two Generals problem was the first widely-known distributed consensus problem, described in 1978 by Jim Gray [Gra78, 5.8.3.3.1], although
the same problem previously appeared under a different name [AEH75].
The setup of the problem is that we have two generals on opposite sides
of an enemy army, who must choose whether to attack the army or retreat.
If only one general attacks, his troops will be slaughtered. So the generals
need to reach agreement on their strategy.
To complicate matters, the generals can only communicate by sending
messages by (unreliable) carrier pigeon. We also suppose that at some point
each general must make an irrevocable decision to attack or retreat. The
interesting property of the problem is that if carrier pigeons can become
lost, there is no protocol that guarantees agreement in all cases unless the
outcome is predetermined (e.g. the generals always attack no matter what
happens). The essential idea of the proof is that any protocol that does
guarantee agreement can be shortened by deleting the last message; iterating
this process eventually leaves a protocol with no messages.
Adding more generals turns this into the coordinated attack problem,
a variant of consensus; but it doesnt make things any easier.
3.1
Formal description
To formalize this intuition, suppose that we have n 2 generals in a synchronous system with unreliable channelsthe set of messages received in
round i + 1 is always a subset of the set sent in round i, but it may be a
proper subset (even the empty set). Each general starts with an input 0
12
13
3.2
Impossibility proof
14
in Ai and Ai+1 , every process outputs the same value in Ai and Ai+1 . By
induction on k, every process outputs the same value in A and B, even
though A and B may be very different executions.
This gives us a tool for proving impossibility results for agreement: show
that there is a path of indistinguishable executions between two executions
that are supposed to produce different output. Another way to picture
this: consider a graph whose nodes are all possible executions with an edge
between any two indistinguishable executions; then the set of output-0 executions cant be adjacent to the set of output-1 executions. If we prove the
graph is connected, we prove the output is the same for all executions.
For coordinated attack, we will show that no protocol satisfies all of
agreement, validity, and termination using an indistinguishability argument.
The key idea is to construct a path between the all-0-input and all-1-input
executions with no message loss via intermediate executions that are indistinguishable to at least one process.
Lets start with A = A0 being an execution in which all inputs are 1 and
all messages are delivered. Well build executions A1 , A2 , etc. by pruning
messages. Consider Ai and let m be some message that is delivered in the
last round in which any message is delivered. Construct Ai+1 by not delivering m. Observe that while Ai is distinguishable from Ai+1 by the recipient
of m, on the assumption that n 2 there is some other process that cant
tell whether m was delivered or not (the recipient cant let that other process know, because no subsequent message it sends are delivered in either
execution). Continue until we reach an execution Ak in which all inputs are
1 and no messages are sent. Next, let Ak+1 through Ak+n be obtained by
changing one input at a time from 1 to 0; each such execution is indistinguishable from its predecessor by any process whose input didnt change.
Finally, construct Ak+n through A2k+n by adding back messages in the reverse process used for A0 through Ak . This gets us to an execution Ak+n
in which all processes have input and no messages are lost. If agreement
holds, then the indistinguishability of adjacent executions to some process
means that the common output in A0 is the same as in A2k+n . But validity
requires that A0 outputs 1 and A2k+n outputs 0: so validity is violated.
3.3
So we now know that we cant solve the coordinated attack problem. But
maybe we want to solve it anyway. The solution is to change the problem.
Randomized coordinated attack is like standard coordinated attack,
15
but with less coordination. Specifically, well allow the processes to flip coins
to decide what to do, and assume that the communication pattern (which
messages get delivered in each round) is fixed and independent of the coinflips. This corresponds to assuming an oblivious adversary that cant
see what is going on at all or perhaps a content-oblivious adversary
that can only see where messages are being sent but not the contents of the
messages. Well also relax the agreement property to only hold with some
high probability:
Randomized agreement For any adversary A, the probability that some
process decides 0 and some other process decides 1 given A is at most
.
Validity and termination are as before.
3.3.1
An algorithm
Heres an algorithm that gives = 1/r. (See [Lyn96, 5.2.2] for details
or [VL92] for the original version.) A simplifying assumption is that network
is complete, although a strongly-connected network with r greater than or
equal to the diameter also works.
First part: tracking information levels
Each process tracks its information level, initially 0. The state
of a process consists of a vector of (input, information-level) pairs
for all processes in the system. Initially this is (my-input, 0) for
itself and (, 1) for everybody else.
Every process sends its entire state to every other process in every
round.
Upon receiving a message m, process i stores any inputs carried in
m and, for each process j, sets leveli [j] to max(leveli [j], levelm [j]).
It then sets its own information level to minj (leveli [j]) + 1.
Second part: deciding the output
Process 1 chooses a random key value uniformly in the range
[1, r].
This key is distributed along with leveli [1], so that every process
with leveli [1] 0 knows the key.
16
3.3.2
Why it works
If all inputs are 1 and no messages are lost, then the information
level of each process after k rounds is k (prove by induction) and
all processes learn the key and all inputs (immediate from first
round). So all processes decide 1.
Randomized Agreement
First prove a lemma: Define levelti [k] to
be the value of leveli [k] after t rounds.
Then for all i, j, k, t, (1)
t
t1
leveli [j] levelj [j]
and (2) leveli [k]t levelj [k]t 1. As
always, the proof is by induction on rounds. Part (1) is easy and
boring so well skip it. For part (2), we have:
After 0 rounds, level0i [k] = level0j [k] = 1 if neither i nor j
equals k; if one of them is k, we have level0k [k] = 0, which is
still close enough.
After t rounds, consider levelti [k] levelt1
i [k] and similarly
[k].
Its
not
hard
to
show
that each can
leveltj [k] levelt1
j
jump by at most 1. If both deltas are +1 or both are 0,
theres no change in the difference in views and we win from
the induction hypothesis. So the interesting case is when
leveli [k] stays the same and levelj [k] increases or vice versa.
There are two ways for levelj [k] to increase:
If j 6= k, then j received a message from some j 0 with
t1
leveljt1
[k]. From the induction hypothesis,
0 [k] > levelj
t1
t1
levelj 0 [k] leveli [k] + 1 = levelti [k]. So we are happy.
If j = k, then j has leveltj [j] = 1 + mink6=j leveltj [k]
1 + leveltj [i] 1 + levelti [i]. Again we are happy.
Note that in the preceding, the key value didnt figure in; so
everybodys level at round r is independent of the key.
17
So now we have that levelri [i] is in {`, ` + 1}, where ` is some fixed
value uncorrelated with key. The only way to get some process
to decide 1 while others decide 0 is if ` + 1 key but ` < key.
(If ` = 0, a process at this level doesnt know key, but it can still
reason that 0 < key since key is in [1, r].) This can only occur if
key = ` + 1, which occurs with probability at most 1/r since key
was chosen uniformly.
3.3.3
Chapter 4
4.1
Flooding
Flooding is about the simplest of all distributed algorithms. Its dumb and
expensive, but easy to implement, and gives you both a broadcast mechanism and a way to build rooted spanning trees.
Well give a fairly simple presentation of flooding roughly following Chapter 2 of [AW04].
4.1.1
Basic algorithm
The basic flooding algorithm is shown in Algorithm 4.1. The idea is that
when a process receives a message M , it forwards it to all of its neighbors
unless it has seen it before, which it tracks using a single bit seen-message.
Theorem 4.1.1. Every process receives M after at most D time and at
most |E| messages, where D is the diameter of the network and E is the set
of (directed) edges in the network.
Proof. Message complexity: Each process only sends M to its neighbors
once, so each edge carries at most one copy of M .
Time complexity: By induction on d(root, v), well show that each v
receives M for the first time no later than time d(root, v) D. The base
18
1
2
3
4
5
6
7
8
9
10
19
initially do
if pid = root then
seen-message true
send M to all neighbors
else
seen-message false
upon receiving M do
if seen-message = false then
seen-message true
send M to all neighbors
Algorithm 4.1: Basic flooding algorithm
4.1.2
20
1
2
3
4
5
6
7
8
9
10
11
This sort of extraneous special case is why I personally dont like the split between
outbuf and inbuf used in [AW04], even though it makes defining the synchronous model
easier.
21
At the end of the algorithm, the invariant shows that every process has
a path to the root, i.e., that the graph represented by the parent pointers is
connected. Since this graph has exactly |V | 1 edges (if we dont count the
self-loop at the root), its a tree.
Though we get a spanning tree at the end, we may not get a very good
spanning tree. For example, suppose our friend the adversary picks some
Hamiltonian path through the network and delivers messages along this
path very quickly while delaying all other messages for the full allowed 1
time unit. Then the resulting spanning tree will have depth |V | 1, which
might be much worse than D. If we want the shallowest possible spanning
tree, we need to do something more sophisticated: see the discussion of
distributed breadth-first search in Chapter 5. However, we may be
happy with the tree we get from simple flooding: if the message delay on
each link is consistent, then its not hard to prove that we in fact get a
shortest-path tree. As a special case, flooding always produces a BFS tree
in the synchronous model.
Note also that while the algorithm works in a directed graph, the parent
pointers may not be very useful if links arent two-way.
4.1.3
Termination
See [AW04, Chapter 2] for further modifications that allow the processes to
detect termination. In a sense, each process can terminate as soon as it is
done sending M to all of its neighbors, but this still requires some mechanism for clearing out the inbuf; by adding acknowledgments as described in
22
[AW04], we can terminate with the assurance that no further messages will
be received.
4.2
Convergecast
A convergecast is the inverse of broadcast: instead of a message propagating down from a single root to all nodes, data is collected from outlying
nodes to the root. Typically some function is applied to the incoming data
at each node to summarize it, with the goal being that eventually the root
obtains this function of all the data in the entire system. (Examples would
be counting all the nodes or taking an average of input values at all the
nodes.)
A basic convergecast algorithm is given in Algorithm 4.3; it propagates
information up through a previously-computed spanning tree.
1
2
3
4
5
6
7
8
9
10
11
initially do
if I am a leaf then
send input to parent
upon receiving M from c do
append (c, M ) to buffer
if buffer contains messages from all my children then
v f (buffer, input)
if pid = root then
return v
else
send v to parent
Algorithm 4.3: Convergecast
The details of what is being computed depend on the choice of f :
If input = 1 for all nodes and f is sum, then we count the number of
nodes in the system.
If input is arbitrary and f is sum, then we get a total of all the input
values.
Combining the above lets us compute averages, by dividing the total
of all the inputs by the node count.
23
4.3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
initially do
children
nonChildren
if pid = root then
parent root
send init to all neighbors
else
parent
upon receiving init from p do
if parent = then
parent p
send init to all neighbors
else
send nack to p
upon receiving nack from p do
nonChildren nonChildren {p}
as soon as children nonChildren includes all my neighbors do
v f (buffer, input)
if pid = root then
return v
else
send ack(v) to parent
upon receiving ack(v) from k do
add (k, v) to buffer
add k to children
Algorithm 4.4: Flooding and convergecast combined
24
Chapter 5
Distributed breadth-first
search
Here we describe some algorithms for building a breadth-first search
(BFS) tree in a network. All assume that there is a designated initiator node that starts the algorithm. At the end of the execution, each node
except the initiator has a parent pointer and every node has a list of children. These are consistent and define a BFS tree: nodes at distance k from
the initiator appear at level k of the tree.
In a synchronous network, flooding (4.1) solves BFS; see [AW04, Lemma
2.8, page 21] or [Lyn96, 4.2]. So the interesting case is when the network
is asynchronous.
In an asynchronous network, the complication is that we can no longer
rely on synchronous communication to reach all nodes at distance d at the
same time. So instead we need to keep track of distances explicitly, or
possibly enforce some approximation to synchrony in the algorithm. (A
general version of this last approach is to apply a synchronizer to one of the
synchronous algorithms using a synchronizer; see Chapter 13.)
To keep things simple, well drop the requirement that a parent learn
the IDs of its children, since this can be tacked on as a separate notification
protocol, in which each child just sends one message to its parent once it
figures out who its parent is.
5.1
26
initially do
if pid = initiator then
distance 0
send distance to all neighbors
else
distance
upon receiving d from p do
if d + 1 < distance then
distance d + 1
parent p
Algorithm 5.1: AsynchBFS algorithm (from [Lyn96])
27
5.2
Using layering
5.3
The reason the layering algorithm takes so long is that at each phase we
have to phone all the way back up the tree to the initiator to get permission
to go on to the next phase. We need to do this to make sure that a node
is only recruited into the tree once: otherwise we can get pile-ups on the
channels as in the simple algorithm. But we dont necessarily need to do
this globally. Instead, well require each node at distance d to delay sending
out a recruiting message until it has confirmed that none of its neighbors
28
29
30
Chapter 6
Leader election
See [AW04, Chapter 3] or [Lyn96, Chapter 3] for details.
The basic idea of leader election is that we want a single process to
declare itself leader and the others to declare themselves non-leaders. The
non-leaders may or may not learn the identity of the leader as part of the protocol; if not, we can always add an extra phase where the leader broadcasts
its identity to the others. Traditionally, leader election has been used as a
way to study the effects of symmetry, and many leader election algorithms
are designed for networks in the form of a ring.
A classic result of Angluin [Ang80] shows that leader election in a ring
is impossible if the processes do not start with distinct identities. The proof
is that if everybody is in the same state at every step, they all put on the
crown at the same time. We discuss this result in more detail in 6.1.
With ordered identities, a simple algorithm due to Le Lann [LL77] and
Chang and Roberts [CR79] solves the problem in O(n) time with O(n2 )
messages: I send out my own id clockwise and forward any id bigger than
mine. If I get my id back, I win. This works with a unidirectional ring,
doesnt require synchrony, and never produces multiple leaders. See 6.2.1
for more details.
On a bidirectional ring we can get O(n log n) messages and O(n) time
with power-of-2 probing, using an algorithm of Hirschberg and Sinclair [HS80].
This is described in 6.2.2.
An evil trick: if we have synchronized starting, known n, and known id
space, we can have process with id i wait until round i n to start sending
its id around, and have everybody else drop out when they receive it; this
way only one process (the one with smallest id) ever starts a message and
only n messages are sent [FL87]. But the running time can be pretty bad.
31
32
For general networks, we can apply the same basic strategy as in LeLannChang-Roberts by having each process initiate a broadcast/convergecast
algorithm that succeeds only if the initiator has the smallest id. This is
described in more detail in 6.3.
Some additional algorithms for the asynchronous ring are given in 6.2.3
and 6.2.4. Lower bounds are shown in 6.4.
6.1
Symmetry
Typically, this means that the nodes can tell their neighbors apart, but that their
code behaves the same way if the left and right neighbors are flipped.
33
and can proceed to the same state (including outgoing messages) in the next
round.
An immediate corollary is that you cant do leader election in an anonymous system with a symmetry that puts each node in a non-trivial equivalence class, because as soon as I stick my hand up to declare Im the leader,
so do all my equivalence-class buddies.
With randomization, Lemma 6.1.1 doesnt directly apply, since we can
break symmetry by having my coin-flips come up differently from yours. It
does show that we cant guarantee convergence to a single leader in any fixed
amount of time (because otherwise we could just fix all the coin flips to get
a deterministic algorithm). Depending on what the processes know about
the size of the system, it may still be possible to show that a randomized
algorithm necessarily fails in some cases.
A more direct way to break symmetry is to assume that all processes
have identities; now processes can break symmetry by just declaring that
the one with the smaller or larger identity wins. This approach is taken in
the algorithms in the following sections.
6.2
Here well describe some basic leader election algorithms for rings. Historically, rings were the first networks in which leader election was studied,
because they are the simplest networks whose symmetry makes the problem
difficult, and because of the connection to token-ring networks, a method
for congestion control in local-area networks that is no longer used much.
6.2.1
.
This is about the simplest leader election algorithm there is. It works
in a unidirectional ring, where messages can only travel clockwise.2 The
algorithms works does not require synchrony, but well assume synchrony to
make it easier to follow.
Formally, well let the state space for each process i consist of two variables: leader, initially 0, which is set to 1 if i decides its a leader; and maxId,
the largest id seen so far. We assume that i denotes is position rather than
2
Well see later in 6.2.3 that the distinction between unidirectional rings and bidirectional rings is not a big deal, but for now lets imagine that having a unidirectional ring
is a serious hardship.
34
its id, which well write as idi . We will also treat all positions as values mod
n, to simplify the arithmetic.
Code for the LCR algorithm is given in Algorithm 6.1.
1
2
3
4
5
6
7
8
9
10
initially do
leader 0
maxId idi
send idi to clockwise neighbor
upon receiving j do
if j = idi then
leader 1
if j > maxId then
maxId j
send j to clockwise neighbor
Algorithm 6.1: LCR leader election
6.2.1.1
Performance
Its immediate from the correctness proof that the protocols terminates after
exactly n rounds.
To count message traffic, observe that each process sends at most 1
message per round, for a total of O(n2 ) messages. This is a tight bound
35
6.2.2
Basically the same as for LCR but both the protocol and the invariant
get much messier. To specify the protocol, it may help to think of messages as mobile agents and the state of each process as being of the form
(local-state, {agents Im carrying}). Then the sending rule for a process becomes ship any agents in whatever direction they want to go and the transition rule is accept any incoming agents and update their state in terms of
their own internal transition rules. An agent state for LCR will be something like (original-sender, direction, hop-count, max-seen) where direction
is R or L depending on which way the agent is going, hop-count is initially
2k when the agent is sent and drops by 1 each time the agent moves, and
max-seen is the biggest id of any node the agent has visited. An agent turns
around (switches direction) when hop-count reaches 0.
To prove this works, we can mostly ignore the early phases (though we
have to show that the max-id node doesnt drop out early, which is not
too hard). The last phase involves any surviving node probing all the way
around the ring, so it will declare itself leader only when it receives its own
agent from the left. That exactly one node does so is immediate from the
same argument for LCR.
Complexity analysis is mildly painful but basically comes down to the
fact that any node that sends a message 2k hops had to be a winner at
phase 2k1 , which means that it is the largest of some group of 2k1 ids.
Thus the 2k -hop senders are spaced at least 2k1 away from each other and
there are at most n/2k1 of them. Summing up over all dlg ne phases, we
Pdlg ne
Pdlg ne
get k=0 2k n/2k1 = O(n log n) messages and k=0 2k = O(n) time.
6.2.3
36
of the candidates drop out in each phase. The last surviving candidate wins
when it finds that its its own neighbor.
To make this work in a 1-way ring, we have to simulate 2-way communication by moving the candidates clockwise around the ring to catch up with
their unsendable counterclockwise messages. Petersons algorithm does this
with a two-hop approach that is inspired by the 2-way case above; in each
phase k, a candidate effectively moves two positions to the right, allowing it
to look at the ids of three phase-k candidates before deciding to continue in
phase k + 1 or not. Here is a very high-level description; it assumes that we
can buffer and ignore incoming messages from the later phases until we get
to the right phase, and that we can execute sends immediately upon receiving messages. Doing this formally in terms of I/O automata or the model of
2.1 means that we have to build explicit internal buffers into our processes,
which we can easily do but wont do here (see [Lyn96, pp. 483484] for the
right way to do this.)
We can use a similar trick to transform any bidirectional-ring algorithm
into a unidirectional-ring algorithm: alternative between phases where we
send a message right, then send a virtual process right to pick up any leftgoing messages deposited for us. The problem with this trick is that it
requires two messages per process per phase, which gives us a total message
complexity of O(n2 ) if we start with an O(n)-time algorithm. Petersons
algorithm avoids this by only propagating the surviving candidates.
Pseudocode for Petersons algorithm is given in Algorithm 6.2.
Note: the phase arguments in the probe messages are useless if one has
FIFO channels, which is why [Lyn96] doesnt use them. Note also that the
algorithm does not elect the process with the highest ID, but the process
that is carrying the sole surviving candidate in the last phase.
Proof of correctness is essentially the same as for the 2-way algorithm.
For any pair of adjacent candidates, at most one of their current IDs survives
to the next phase. So we get a sole survivor after lg n phases. Each process
sends or relays at most 2 messages per phases, so we get at most 2n lg n
total messages.
6.2.4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
procedure candidate()
phase 0
current pid
while true do
send probe(phase, current)
wait for probe(phase, x)
id2 x
send probe(phase, current)
wait for probe(phase, x)
id3 x
if id2 = current then
I am the leader!
return
else if id2 > current and id2 > id3 do
current id2
phase phase + 1
else
switch to relay()
procedure relay()
upon receiving probe(p, i) do
send probe(p, i)
Algorithm 6.2: Petersons leader-election algorithm
37
38
6.3
6.4
Lower bounds
6.4.1
39
40
6.4.2
41
42
35
30
25
20
15
10
5
0
-5
10
15
20
25
30
35
Chapter 7
Synchronous agreement
Here well consider synchronous agreement algorithm with stopping failures,
where a process stops dead at some point, sending and receiving no further
messages. Well also consider Byzantine failures, where a process deviates
from its programming by sending arbitrary messages, but mostly just to see
how crash-failure algorithms hold up; for algorithms designed specifically for
a Byzantine model, see Chapter 8.
If the model has communication failures instead, we have the coordinated
attack problem from Chapter 3.
7.1
Problem definition
We use the usual synchronous model with n processes with binary inputs
and binary outputs. Up to f processes may fail at some point; when a
process fails, one or one or more of its outgoing messages are lost in the
round of failure and all outgoing messages are lost thereafter.
There are two variants on the problem, depending on whether we want
a useful algorithm (and so want strong conditions to make our algorithm
more useful) or a lower bound (and so want weak conditions to make our
lower bound more general). For algorithms, we will ask for these conditions
to hold:
Agreement All non-faulty processes decide the same value.
Validity If all processes start with the same input, all non-faulty processes
decide it.
Termination All non-faulty processes eventually decide.
43
44
For lower bounds, well replace validity with non-triviality (often called
validity in the literature):
Non-triviality There exist failure-free executions A and B that produce
different outputs.
Non-triviality follows from validity but doesnt imply validity; for example, a non-trivial algorithm might have the property that if all non-faulty
processes start with the same input, they all decide something else. Well
start by using non-triviality, agreement, and termination to show a lower
bound on the number of rounds needed to solve the problem.
7.2
The same argument works with even a weaker version of non-triviality that omits the
requirement that A and B are failure-free, but well keep things simple.
45
Now for the proof. To simplify the argument, lets assume that all executions terminate in exactly f rounds (we can always have processes send
pointless chitchat to pad out short executions) and that every processes
sends a message to every other process in every round where it has not
crashed (more pointless chitchat). Formally, this means we have a sequence
of rounds 0, 1, 2, . . . , f 1 where each process sends a message to every other
process (assuming no crashes), and a final round f where all processes decide
on a value (without sending any additional messages).
We now want to take any two executions A and B and show that both
produce the same output. To do this, well transform As inputs into Bs
inputs one process at a time, crashing processes to hide the changes. The
problem is that just crashing the process whose input changed might change
the decision valueso we have to crash later witnesses carefully to maintain
indistinguishability all the way across the chain.
Lets say that a process p crashes fully in round r if it crashes in round
r and no round-r messages from p are delivered. The communication
pattern of an execution describes which messages are delivered between
processes without considering their contentsin particular, it tells us which
processes crash and what other processes they manage to talk to in the
round in which they crash.
With these definitions, we can state and prove a rather complicated
induction hypothesis:
Lemma 7.2.1. For any f -round protocol with n f + 2 process permitting
up to f crash failures; any process p; and any execution A in which at
most one processes crashes per round in rounds 0 . . . r 1, p crashes fully in
round r + 1, and no other processes crash; there is a sequence of executions
A = A0 A1 . . . Ak such that each Ai is indistinguishable from Ai+1 by some
process, each Ai has at most one crash per round, and the communication
pattern in Ak is identical to A except that p crashes fully in round r.
Proof. By induction on f r. If r = f , we just crash p in round r and
nobody else notices. For r < f , first crash p in round r instead of r + 1, but
deliver all of its round-r messages anyway (this is needed to make space for
some other process to crash in round r + 1). Then choose some message m
sent by p in round r, and let p0 be the recipient of m. We will show that we
can produce a chain of indistinguishable executions between any execution
in which m is delivered and the corresponding execution in which it is not.
If r = f 1, this is easy; only p0 knows whether m has been delivered,
and since n f +2, there exists another non-faulty p00 that cant distinguish
between these two executions, since p0 sends no messages in round f or later.
46
If r < f 1, we have to make sure p0 doesnt tell anybody about the missing
message.
By the induction hypothesis, there is a sequence of executions starting
with A and ending with p0 crashing fully in round r + 1, such that each execution is indistinguishable from its predecessor. Now construct the sequence
A (A with p0 crashing fully in r + 1)
(A with p0 crashing fully in r + 1 and m lost)
(A with m lost and p0 not crashing).
The first and last step apply the induction hypothesis; the middle one yields
indistinguishable executions since only p0 can tell the difference between m
arriving or not and its lips are sealed.
Weve shown that we can remove one message through a sequence of
executions where each pair of adjacent executions is indistinguishable to
some process. Now paste together n 1 such sequences (one per message)
to prove the lemma.
The rest of the proof: Crash some process fully in round 0 and then
change its input. Repeat until all inputs are changed.
7.3
Solutions
7.3.1
Flooding
Well now show an algorithm that gets agreement, termination, and validity.
Validity here is stronger than the non-triviality condition used in the lower
bound, but the lower bound still applies: we cant do this in less than f + 1
rounds.
So lets do it in exactly f +1 rounds. There are two standard algorithms,
one of which generalizes to Byzantine processes under good conditions. Well
start with a simple approach based on flooding. This algorithm is described
47
7.4
48
inputs, but a tree describing who it heard what from. We build this tree
out of pairs of the form (id-sequence, input) where id-sequence is a sequence
of intermediaries with no repetitions and input is some input. A processs
state at each round is just a set of such pairs.
This is not really an improvement on flooding for crash failures, but it
can be used as a basis for building an algorithm for Byzantine agreement
(Chapter 8). Also useful as an example of a full-information algorithm,
in which every process records all that it knows about the execution; in
principle this allows the algorithm to simulate any other algorithm, which
can sometimes be useful for proving lower bounds.
See [AW04, 5.2.4] or [Lyn96, 6.2.3] for more details than we provide
here. The original exponential information-gathering algorithm (for Byzantine processes) is due to Pease, Shostak, and Lamport [PSL80].
Initial state is (hi, myInput).
At round r, process i broadcasts all pairs (w, v) where |w| = r and i
does not appear in w (these restrictions make the algorithm slightly less
exponential). Upon receiving (w, v) from j, i adds (wj, v) to its list. If no
message arrives from j in round r, i adds (wj, ) to its list for all nonrepeating w with |w| = r (this step can also be omitted).
A tree structure is obtained by letting w be the parent of wj for each j.
At round f + 1, apply some fixed decision rule to the set of all values
that appear in the tree (e.g. take the max, or decide on a default value v0
if there is more than one value in the tree). That this works follows pretty
much immediately from the fact that the set of node labels propagates just
as in the flooding algorithm (which is why EIG isnt really an improvement).
But there are some complications from the messages that arent sent due to
the i-not-in-w restriction on sending. So we have to write out a real proof.
Below is basically just following the presentation in [Lyn96].
Let val(w, i) be the value v such that (w, v) appears in is list at the
end of round f + 1. We dont worry about what earlier round it appears in
because we can compute that round as |w| + 1.
7.4.1
Basic invariants
val(hi, i) = is input.
Either val(wj, i) equals val(w, j) or val(wj, i) = and j didnt send a
message in round |w| + 1.
These are trivial.
7.4.2
49
Stronger facts
7.4.3
The payoff
Let Sir be the set of values in is list after r rounds. Well show that Sif +1 =
Sjf +1 for all non-faulty i and j. Let v be in Sif +1 . Then v = val(w, i) for
some w that doesnt contain i (w here is really w0 from before). If |w| f ,
then i sends (w, v) to j at round |wi| and so val(wi, j) = v. Otherwise if
|w| = f + 1, w = xky for some non-faulty k, and from the first stronger fact
we have val(x, k) = v. Since k is non-faulty, it sends (x, v) to both i and j
in round |x| and we get val(xk, j) = v. Weve just shown v in Sif +1 implies
v in Sjf +1 , and by symmetry the converse holds, so the sets are equal.
This is a lot of work to avoid sending messages that contain my own id!
However, by tacking on digital signatures, we can solve Byzantine agreement
in the case where f < n/2: see [Lyn96, 6.2.4] for details.
7.4.4
Run the same algorithm in a Byzantine system with n > 3f processes (treating bogus-looking messages as nulls), but compute the decision value by
taking recursive majorities of non-null values down the tree. Details are in
8.2.1.
7.5
Variants
Chapter 8
Byzantine agreement
Like synchronous agreement (as in Chapter 7) except that we replace crash
failures with Byzantine failures, where a faulty process can ignore its
programming and send any messages it likes. Since we are operating under
a universal quantifier, this includes the case where the Byzantine processes
appear to be colluding with each other under the control of a centralized
adversary.
8.1
Lower bounds
8.1.1
Weve already seen an f + 1 lower bound on rounds for crash failures (see
7.2). This lower bound applies a fortiori to Byzantine failures, since Byzantine failures can simulate crash failures.
8.1.2
We can also show that we need n > 3f processes. For n = 3 and f = 1 the
intuition is that Byzantine B can play non-faulty A and C off against each
other, telling A that C is Byzantine and C that A is Byzantine. Since A is
telling C the same thing about B that B is saying about A, C cant tell the
difference and doesnt know who to believe. Unfortunately, this tragic soap
opera is not a real proof, since we havent actually shown that B can say
exactly the right thing to keep A and C from guessing that B is evil.
50
A0
A0
B0
51
B0
C1
C
C0
B1
A1
52
B0
B0
A0
A0
D0
D0
C0
C1
C
A1
B1
D1
8.1.3
Minimum connectivity
53
the same thing with B0 and B1 yields an execution that violates agreement.
Conversely, if we have connectivity 2f +1, then the processes can simulate
a general graph by sending each other messages along 2f + 1 predetermined
vertex-disjoint paths and taking the majority value as the correct message.
Since the f Byzantine processes can only corrupt one path each (assuming
the non-faulty processes are careful about who they forward messages from),
we get at least f + 1 good copies overwhelming the f bad copies. This
reduces the problem on a general graph with sufficiently high connectivity
to the problem on a complete graph, allowing Byzantine agreement to be
solved if the other lower bounds are met.
8.1.4
(Here we are following [Lyn96, 6.6]. The original result is due to Lamport [Lam83].)
Weak Byzantine agreement is like regular Byzantine agreement, but
validity is only required to hold if there are no faulty processes at all.3 If
there is a single faulty process, the non-faulty processes can output any value
regardless of their inputs (as long as they agree on it). Sadly, this weakening
doesnt improve things much: even weak Byzantine agreement can be solved
only if n 3f + 1.
Proof: As in the strong Byzantine agreement case, well construct a
many-process Frankenexecution to figure out a strategy for a single Byzantine process in a 3-process execution. The difference is that now the number
of processes in our synthetic execution is much larger, since we want to
build an execution where at least some of our test subjects think they are
in a non-Byzantine environment. The trick is to build a very big, highlysymmetric ring so that at least some of the processes are so far away from
the few points of asymmetry that might clue them in to their odd condition
that the protocol terminates before they notice.
Fix some protocol that allegedly solves weak Byzantine agreement, and
let r be the number of rounds for the protocol. Construct a ring of 6r processes A01 B01 C01 A02 B02 C02 . . . A0r B0r C0r A10 B10 C10 . . . A1r B1r C1r , where each
Xij runs the code for process X in the 3-process protocol with input i. For
each adjacent pair of processes, there is a 3-process Byzantine execution
3
54
which is indistinguishable from the 6r-process execution for that pair: since
agreement holds in all Byzantine executions, each adjacent pair decides the
same value in the big execution and so either everybody decides 0 or everybody decides 1 in the big execution.
Now well show that means that validity is violated in some no-failures 3process execution. Well extract this execution by looking at the execution
of processes A0r/2 B0r/2 C0r/2 . The argument is that up to round r, any
input-0 process that is at least r steps in the ring away from the nearest
1-input process acts like the corresponding process in the all-0 no-failures
3-process execution. Since A0,r/2 is 3r/2 > r hops away from A1r and
similarly for C0,r/2 , our 3 stooges all decide 0 by validity. But now repeat
the same argument for A1,r/2 B1,r/2 C1,r/2 and get 3 new stooges that all
decide 1. This means that somewhere in between we have two adjacent
processes where one decides 0 and one decides 1, violating agreement in the
corresponding 3-process execution where the rest of the ring is replaced by
a single Byzantine process. This concludes the proof.
This result is a little surprising: we might expect that weak Byzantine
agreement could be solved by allowing a process to return a default value
if it notices anything that might hint at a fault somewhere. But this would
allow a Byzantine process to create disagreement revealing its bad behavior
to just one other process in the very last round of an execution otherwise
headed for agreement on the non-default value. The chosen victim decides
the default value, but since its the last round, nobody else finds out. Even
if the algorithm is doing something more sophisticated, examining the 6rprocess execution will tell the Byzantine process exactly when and how to
start acting badly.
8.2
Upper bounds
Here we describe two upper bounds for Byzantine agreement, one of which
gets an optimal number of rounds at the cost of many large messages, and
the other of which gets smaller messages at the cost of more rounds. (We
are following 5.2.45.2.5 of [AW04] in choosing these algorithms.) Neither
of these algorithms is state-of-the-art, but they demonstrate some of the
issues in solving Byzantine agreement without the sometimes-complicated
optimizations needed to get all the parameters of the algorithm down simultaneously.
8.2.1
55
Proof of correctness
This is just a sketch of the proof from [Lyn96, 6.3.2]; essentially the same
argument appears in [AW04, 5.2.4].
We start with a basic observation that good processes send and record
values correctly:
56
Lemma 8.2.1. If i, j, and k are all non-faulty then for all w, val(wk, i) =
val(wk, j) = val(w, k).
Proof. Trivial: k announces the same value val(w, k) to both i and j.
More involved is this lemma, which says that when we reconstruct a
value for a trustworthy process at some level, we get the same value that
it sent us. In particular this will be used to show that the reconstructed
inputs val0 (j, i) are all equal to the real inputs for good processes.
Lemma 8.2.2. If j is non-faulty then val0 (wj, i) = val(wj, i) for all nonfaulty i and all w.
Proof. By induction on f + 1 |wj|. If |wj| = f + 1, then val0 (wj, i) =
val(wj, i) = val(w, j) = val(wj, i). If |wj| < f + 1, then val(wj, k) = val(w, j)
for all non-faulty k. It follows that val(wjk, i) = val(w, j) for all non-faulty
i and k (that do no appear in w). The bad guys report at most f bad
values val(wj, k 0 ), but the good guys report at least n f |wj| good values
val(wj, k). Since n 3f + 1 and |wj| f , we have n f |wj| 3f + 1
f f f + 1 good values, which are a majority.
We call a node w common val0 (w, i) = val0 (w, j) for all non-faulty i, j.
Lemma 8.2.2 says that wk is common if k is non-faulty. We can also show
that any node whose children are all common is also common, whether or
not the last process in its label is faulty.
Lemma 8.2.3. Let wk be common for all k. Then w is common.
Proof. Recall that, for |w| < f + 1, val0 (w, i) is the majority value among
all val0 (wk, i). If all wk are common, then val0 (wk, i) = val0 (wk, j) for all
non-faulty i and j, so i and j compute the same majority values and get
val0 (w, i) = val0 (w, j).
We can now prove the full result.
Theorem 8.2.4. Exponential information gathering using f + 1 rounds in
a synchronous Byzantine system with at most f faulty processes satisfies
validity and agreement, provided n 3f + 1.
Proof. Validity: Immediate application of Lemmas 8.2.1 and 8.2.2 when
w = hi. We have val0 (j, i) = val(j, i) = val(hi, j) for all non-faulty j and i,
which means that a majority of the val0 (j, i) values equal the common input
and thus so does val0 (hi, i).
57
Agreement: Observe that every path has a common node on it, since a
path travels through f +1 nodes and one of them is good. If we then suppose
that the root is not common: by Lemma 8.2.3, it must have a not-common
child, that node must have a not-common child, etc. But this constructs
a path from the root to a leaf with no not-common nodes, which we just
proved cant happen.
8.2.2
The algorithm
The basic idea of the algorithm is that we avoid the recursive majority voting
of EIG by running a vote in each of f +1 phases through a phase king, some
process chosen in advance to run the phase. Since the number of phases
exceeds the number of faults, we eventually get a non-faulty phase king.
The algorithm is structured so that one non-faulty phase king is enough
to generate agreement and subsequent faulty phase kings cant undo the
agreement.
Pseudocode appears in Algorithm 8.1. Each processes i maintains an
array pref i [j], where j ranges over all process ids. There are also utility
values majority, kingMajority and multiplicity for each process that are used
to keep track of what it hears from the other processes. Initially, pref i [i] is
just is input and pref i [j] = 0 for j 6= i.
The idea of the algorithm is that in each phase, everybody announces
their current preference (initially the inputs). If the majority of these preferences is large enough (e.g. all inputs are the same), everybody adopts
the majority preference. Otherwise everybody adopts the preference of the
phase king. The majority rule means that once the processes agree, they
continue to agree despite bad phase kings. The phase king rule allows a
good phase king to end disagreement. By choosing a different king in each
phase, after f +1 phases, some king must be good. This intuitive description
is justified below.
1
2
3
4
5
6
7
9
10
11
12
13
14
15
58
59
Proof of correctness
Its not hard to see that this algorithm sends exactly (f +1)(n2 +n) messages
of 1 bit each (assuming 1-bit inputs). The cost is doubling the minimum
number of rounds and reducing the tolerance for Byzantine processes. As
mentioned earlier, a variant of phase-king with 3-round phases gets optimal
fault-tolerance with 3(f + 1) rounds (but 2-bit messages). Still better is
60
Chapter 9
Impossibility of
asynchronous agreement
The Fischer-Lynch-Paterson (FLP) result [FLP85] says that you cant do
agreement in an asynchronous message-passing system if even one crash
failure is allowed, unless you augment the basic model in some way, e.g.
by adding randomization or failure detectors. After its initial publication,
it was quickly generalized to other models including asynchronous shared
memory [LAA87], and indeed the presentation of the result in [Lyn96, 12.2]
is given for shared-memory first, with the original result appearing in [Lyn96,
17.2.3] as a corollary of the ability of message passing to simulate shared
memory. In these notes, Ill present the original result; the dependence on
the model is surprisingly limited, and so most of the proof is the same for
both shared memory (even strong versions of shared memory that support
e.g. atomic snapshots1 ) and message passing.
Section 5.3 of [AW04] gives a very different version of the proof, where
it is shown first for two processes in shared memory, then generalized to n
processes in shared memory by adapting the classic Borowsky-Gafni simulation [BG93] to show that two processes with one failure can simulate n
processes with one failure. This is worth looking at (its an excellent example of the power of simulation arguments, and BG simulation is useful in
many other contexts) but we will stick with the original argument, which
is simpler. We will look at this again when we consider BG simulation in
Chapter 27.
1
Chapter 19.
61
9.1
Agreement
Usual rules: agreement (all non-faulty processes decide the same value),
termination (all non-faulty processes eventually decide some value), validity (for each possible decision value, there an execution in which that
value is chosen). Validity can be tinkered with without affecting the proof
much.
To keep things simple, we assume the only two decision values are 0 and
1.
9.2
Failures
A failure is an internal action after which all send operations are disabled.
The adversary is allowed one failure per execution. Effectively, this means
that any group of n 1 processes must eventually decide without waiting
for the n-th, because it might have failed.
9.3
Steps
The FLP paper uses a notion of steps that is slightly different from the
send and receive actions of the asynchronous message-passing model weve
been using. Essentially a step consists of receiving zero or more messages
followed by doing a finite number of sends. To fit it into the model weve
been using, well define a step as either a pair (p, m), where p receives
message m and performs zero or more sends in response, or (p, ), where
p receives nothing and performs zero or more sends. We assume that the
processes are deterministic, so the messages sent (if any) are determined by
ps previous state and the message received. Note that these steps do not
correspond precisely to delivery and send events or even pairs of delivery
and send events, because what message gets sent in response to a particular
delivery may change as the result of delivering some other message; but this
wont affect the proof.
The fairness condition essentially says that if (p, m) or (p, ) is continuously enabled it eventually happens. Since messages are not lost, once
(p, m) is enabled in some configuration C, it is enabled in all successor configurations until it occurs; similarly (p, ) is always enabled. So to ensure
fairness, we have to ensure that any non-faulty process eventually performs
any enabled step.
9.4
The core of the FLP argument is a strategy allowing the adversary (who
controls scheduling) to steer the execution away from any configuration in
which the processes reach agreement. The guidepost for this strategy is
the notion of bivalence, where a configuration C is bivalent if there exist
traces T0 and T1 starting from C that lead to configurations CT0 and CT1
where all processes decide 0 and 1 respectively. A configuration that is not
bivalent is univalent, or more specifically 0-valent or 1-valent depending
on whether all executions starting in the configuration produce 0 or 1 as the
decision value. (Note that bivalence or univalence are the only possibilities
because of termination.) The important fact we will use about univalent
configurations is that any successor to an x-valent configuration is also xvalent.
Its clear that any configuration where some process has decided is not
bivalent, so if the adversary can keep the protocol in a bivalent configuration
forever, it can prevent the processes from ever deciding. The adversarys
strategy is to start in an initial bivalent configuration C0 (which we must
prove exists) and then choose only bivalent successor configurations (which
we must prove is possible). A complication is that if the adversary is only
allowed one failure, it must eventually allow any message in transit to a
non-faulty process to be received and any non-faulty process to send its
outgoing messages, so we have to show that the policy of avoiding univalent
configurations doesnt cause problems here.
9.5
We can specify an initial configuration by specifying the inputs to all processes. If one of these initial configurations is bivalent, we are done. Otherwise, let C and C 0 be two initial configurations that differ only in the input
of one process p; by assumption, both C and C 0 are univalent. Consider two
executions starting with C and C 0 in which process p is faulty; we can arrange for these executions to be indistinguishable to all the other processes,
so both decide the same value x. It follows that both C and C 0 are x-valent.
But since any two initial configurations can be connected by some chain of
9.6
9.7
To apply the argument to another model, the main thing is to replace the
definition of a step and the resulting case analysis of 0-valent De0 e vs 1-valent
Dee0 to whatever steps are available in the other model. For example, in
asynchronous shared memory, if e and e0 are operations on different memory
locations, they commute (just like steps of different processes), and if they
are operations on the same location, either they commute (e.g. two reads)
or only one process can tell whether both happened (e.g. with a write and
a read, only the reader knows, and with two writes, only the first writer
knows). Killing the witness yields two indistinguishable configurations with
different valencies, a contradiction.
We are omitting a lot of details here. See [Lyn96, 12.2] for the real
proof, or Loui and Abu-Amara [LAA87] for the generalization to shared
memory, or Herlihy [Her91b] for similar arguments for a wide variety of
shared-memory primitives. We will see many of these latter arguments in
Chapter 18.
Chapter 10
Paxos
The Paxos algorithm for consensus in a message-passing system was first
described by Lamport in 1990 in a tech report that was widely considered
to be a joke (see http://research.microsoft.com/users/lamport/pubs/
pubs.html#lamport-paxos for Lamports description of the history). The
algorithm was finally published in 1998 [Lam98], and after the algorithm
continued to be ignored, Lamport finally gave up and translated the results
into readable English [Lam01]. It is now understood to be one of the most
efficient practical algorithms for achieving consensus in a message-passing
system with failure detectors, mechanisms that allow processes to give up
on other stalled processes after some amount of time (which cant be done
in a normal asynchronous system because giving up can be made to happen
immediately by the adversary).
We will describe only the basic Paxos algorithm. The WikiPedia article on Paxos (http://en.wikipedia.org/wiki/Paxos) gives a remarkably
good survey of subsequent developments and applications.
10.1
67
common choice, although other choices of consensus protocols will work too.
10.2
68
then does a second phase of voting where it sends accept(n, v) to all accepters
and wins if receives a majority of votes.
So for each proposal, the algorithm proceeds as follows:
1. The proposer sends a message prepare(n) to all accepters. (Sending
to only a majority of the accepters is enough, assuming they will all
respond.)
2. Each accepter compares n to the highest-numbered proposal for which
it has responded to a prepare message. If n is greater, it responds with
ack(n, v, nv ), where v is the highest-numbered proposal it has accepted
and nv is the number of that proposal (or and 0 if there is no such
proposal). (An optimization at this point is to allow the accepter to
send back nack(n0 ) where n0 is some higher number to let the proposer
know that its doomed and should back off and try againthis keeps
a confused proposer who thinks its the future from locking up the
protocol until 2037.)
3. The proposer waits (possibly forever) to receive ack from a majority of accepters. If any ack contained a value, it sets v to the most
recent (in proposal number ordering) value that it received. It then
sends accept(n, v) to all accepters (or just a majority). You should
think of accept as a demand (Accept!) rather than acquiescence (I
accept)the accepters still need to choose whether to accept or not.
4. Upon receiving accept(n, v), an accepter accepts v unless it has already
received prepare(n0 ) for some n0 > n. If a majority of acceptors accept
the value of a given proposal, that value becomes the decision value of
the protocol.
Note that acceptance is a purely local phenomenon; additional messages
are needed to detect which if any proposals have been accepted by a majority
of accepters. Typically this involves a fourth round, where accepters send
accepted(n, v) to all learners (often just the original proposer).
There is no requirement that only a single proposal is sent out (indeed,
if proposers can fail we will need to send out more to jump-start the protocol). The protocol guarantees agreement and validity no matter how many
proposers there are and no matter how often they start.
10.3
69
Call a round the collection of all messages labeled with some particular
proposal n. The structure of the algorithm simulates a sequential execution
in which higher-numbered rounds follow lower-numbered ones, even though
there is no guarantee that this is actually the case in a real execution.
When an acceptor sends ack(n, v, nv ), it is telling the round-n proposer
the last value preceding round n that it accepted. The rule that an acceptor
only acknowledges a proposal higher than any proposal it has previously acknowledged prevents it from sending information back in timethe round
nv in an acknowledgment is always less than n. The rule that an acceptor
doesnt accept any proposal earlier than a round it has acknowledged means
that the value v in an ack(n, v, nv ) message never goes out of datethere is
no possibility that an acceptor might retroactively accept some later value
in round n0 with nv < n0 < n. So the ack message values tell a consistent
story about the history of the protocol, even if the rounds execute out of
order.
The second trick is to use overlapping majorities to make sure that any
value that is accepted is not lost. If the only way to decide on a value in round
n is to get a majority of acceptors to accept it, and the only way to make
progress in round n0 is to get acknowledgments from a majority of acceptors,
these two majorities overlap. So in particular the overlapping process reports
the round-n proposal value to the proposer in round n0 , and we can show
by induction on n0 that this round-n proposal value becomes the proposal
value in all subsequent rounds that proceed past the acknowledgment stage.
So even though it may not be possible to detect that a decision has been
reached in round n (say, because some of the acceptors in the accepting
majority die without telling anybody what they did), no later round will be
able to choose a different value. This ultimately guarantees agreement.
10.4
Safety properties
We now present a more formal analysis of the Paxos protocol. We consider only the safety properties of the protocol, corresponding to validity
and agreement; without additional assumptions, Paxos does not guarantee
termination.
Call a value chosen if it is accepted by a majority of accepters. The
safety properties of Paxos are:
70
71
messages: the accepters enforce that their acks are good for all time by
refusing to change their mind about earlier rounds later.
So now we suppose that some value v is eventually accepted by a majority
T with number n. Then we can show by induction on proposal number that
all proposals issued with higher numbers have the same value (even if they
were issued earlier). For any proposal accept(v 0 , n0 ) with n0 > n, there is
a majority S (which must overlap with T ) for which either case (a) holds
(a contradictiononce the overlapping accepter finally accepts, it violates
the requirement that no proposal less than n0 has been accepted) or case
(b) holds (in which case by the induction hypothesis v 0 is the value of some
earlier proposal with number n0 n, implying v 0 = v).
10.5
10.6
Liveness properties
72
starting a new round; thus two or more will eventually start far enough
apart in time that one will get done without interference.
A more abstract solution is to assume some sort of weak leader election
mechanism, which tells each accepter who the legitimate proposer is at
each time. The accepters then discard messages from illegitimate proposers,
which prevents conflict at the cost of possibly preventing progress. Progress
is however obtained if the mechanism eventually reaches a state where a
majority of the accepters bow to the same non-faulty proposer long enough
for the proposal to go through.
Such a weak leader election method is an example of a more general
class of mechanisms known as failure detectors, in which each process
gets hints about what other processes are faulty that eventually converge to
reality. The particular failure detector in this case is known as the failure
detector; there are other still weaker ones that we will talk about later that
can also be used to solve consensus. We will discuss failure detectors in
detail in Chapter 11.
Chapter 11
Failure detectors
Failure detectors were proposed by Chandra and Toueg [CT96] as a mechanism for solving consensus in an asynchronous message-passing system with
crash failures by distinguishing between slow processes and dead processes.
The basic idea is that each process has attached to it a failure detector module that continuously outputs an estimate of which processes in the system
have failed. The output need not be correct; indeed, the main contribution
of Chandra and Touegs paper (and a companion paper by Chandra, Hadzilacos, and Toueg [CHT96]) is characterizing just how bogus the output of a
failure detector can be and still be useful.
We will mostly follow Chandra and Toueg in these notes; see the paper
for the full technical details.
To emphasize that the output of a failure detector is merely a hint at
the actual state of the world, a failure detector (or the process its attached
to) is said to suspect a process at time t if it outputs failed at that time.
Failure detectors can then be classified based on when their suspicions are
correct.
We use the usual asynchronous message-passing model, and in particular
assume that non-faulty processes execute infinitely often, get all their messages delivered, etc. From time to time we will need to talk about time, and
unless we are clearly talking about real time this just means any steadily
increasing count (e.g., of total events), and will be used only to describe the
ordering of events.
73
11.1
74
Failure detectors are only interesting if you can actually build them. In
a fully asynchronous system, you cant (this follows from the FLP result
and the existence of failure-detector-based consensus protocols). But with
timeouts, its not hard: have each process ping each other process from
time to time, and suspect the other process if it doesnt respond to the ping
within twice the maximum round-trip time for any previous ping. Assuming
that ping packets are never lost and there is an (unknown) upper bound on
message delay, this gives what is known as an eventually perfect failure
detector: once the max round-trip times rise enough and enough time has
elapsed for the live processes to give up on the dead ones, all and only dead
processes are suspected.
11.2
Chandra and Toueg define eight classes of failure detectors, based on when
they suspect faulty processes and non-faulty processes. Suspicion of faulty
processes comes under the heading of completeness; of non-faulty processes, accuracy.
11.2.1
Degrees of completeness
Strong completeness Every faulty process is eventually permanently suspected by every non-faulty process.
Weak completeness Every faulty process is eventually permanently suspected by some non-faulty process.
There are two temporal logic operators embedded in these statements:
eventually permanently means that there is some time t0 such that for
all times t t0 , the process is suspected. Note that completeness says
nothing about suspecting non-faulty processes: a paranoid failure detector
that permanently suspects everybody has strong completeness.
11.2.2
Degrees of accuracy
These describe what happens with non-faulty processes, and with faulty
processes that havent crashed yet.
Strong accuracy No process is suspected (by anybody) before it crashes.
75
11.2.3
Boosting completeness
It turns out that any weakly-complete failure detector can be boosted to give
strong completeness. Recall that the difference between weak completeness
and strong completeness is that with weak completeness, somebody suspects
a dead process, while with strong completeness, everybody suspects it. So
to boost completeness we need to spread the suspicion around a bit. On
the other hand, we dont want to break accuracy in the process, so there
needs to be some way to undo a premature rumor of somebodys death.
The simplest way to do this is to let the alleged corpse speak for itself: I
will suspect you from the moment somebody else reports you dead until the
moment you tell me otherwise.
Pseudocode is given in Algorithm 11.1.
1
2
3
4
5
6
7
initially do
suspects
while true do
Let S be the set of all processes my weak detector suspects.
Send S to all processes.
upon receiving S from q do
suspects (suspects p) \ {q}
Algorithm 11.1: Boosting completeness
76
Its not hard to see that this boosts completeness: if p crashes, somebodys weak detector eventually suspects it, this process tells everybody
else, and p never contradicts it. So eventually everybody suspects p.
What is slightly trickier is showing that it preserves accuracy. The essential idea is this: if there is some good-guy process p that everybody trusts
forever (as in weak accuracy), then nobody ever reports p as suspectthis
also covers strong accuracy since the only difference is that now every nonfaulty process falls into this category. For eventual weak accuracy, wait for
everybody to stop suspecting p, wait for every message ratting out p to be
delivered, and then wait for p to send a message to everybody. Now everybody trusts p, and nobody every suspects p again. Eventual strong accuracy
is again similar.
This will justify ignoring the weakly-complete classes.
11.2.4
77
S
Figure 11.1: Partial order of failure detector classes. Higher classes can
simulate lower classes.
its properties) that can solve consensus is strong enough to simulate S
(this is the result in the Chandra-Hadzilacos-Toueg paper [CHT96])this
makes S the weakest failure detector for solving consensus as advertised.
Continuing our tour through Chandra and Toueg [CT96], well show the
simulation results and that S can solve consensus, but well skip the rather
involved proof of Ss special role from Chandra-Hadzilacos-Toueg.
11.3
Consensus with S
With the strong failure detector S, we can solve consensus for any number
of failures.
In this model, the failure detectors as applied to most processes are
completely useless. However, there is some non-faulty process c that nobody
every suspects, and this is enough to solve consensus with as many as n 1
failures.
The basic idea of the protocol: There are three phases. In the first phase,
the processes gossip about input values for n 1 asynchronous rounds. In
the second, they exchange all the values theyve seen and prune out any
that are not universally known. In the third, each process decides on the
lowest-id input that hasnt been pruned (minimum input also works since
at this point everybody has the same view of the inputs).
Pseudocode is given in Algorithm 11.2
In phase 1, each process p maintains two partial functions Vp and p ,
where Vp lists all the input values hq, vq i that p has ever seen and p lists
only those input values seen in the most recent of n1 asynchronous rounds.
Both Vp and p are initialized to {hp, vp i}. In round i, p sends (i, p ) to all
processes. It then collects hi, q i from each q that it doesnt suspect and sets
S
p to q q \ Vp (where q ranges over the processes from which p received a
1
2
3
4
5
6
7
8
9
78
Vp {hp, vp i}
p {hp, vp i}
// Phase 1
for i 1 to n 1 do
Send hi, p i to all processes.
Wait to receive hi, q i from all q I do not suspect.
p
S
Vp
S
q q
\ Vp
Vp
q q
// Phase 2
Send hn, p i to all processes.
Wait to receive hn, q i from all q I do not suspect.
T
10
Vp
q Vq Vp
11
// Phase 3
return some input from Vp chosen via a consistent rule.
Algorithm 11.2: Consensus with a strong failure detector
11.3.1
Proof of correctness
79
faulty process that gets stuck eventually is informed by the S-detector that
the process it is waiting for is dead.
For agreement, we must show that in phase 3, every Vp is equal; in
particular, well show that every Vp = Vc . First it is necessary to show that
at the end of phase 1, Vc Vp for all p. This is done by considering two
cases:
1. If hq, vq i Vc and c learns hq, vq i before round n 1, then c sends
hq, vq i to p no later than round n 1, p waits for it (since nobody ever
suspects c), and adds it to Vp .
2. If hq, vq i Vc and c learns hq, vq i only in round n 1, then hq, vq i was
previously sent through n 1 other processes, i.e., all of them. Each
process p 6= c thus added hq, vq i to Vp before sending it and again
hq, vq i is in Vp .
(The missing case where hq, vq i isnt in Vc we dont care about.)
But now phase 2 knocks out any extra elements in Vp , since Vp gets set
to Vp Vc (some other Vq s that are supersets of Vc ). It follows that, at
the end of phase 2, Vp = Vc for all p. Finally, in phase 3, everybody applies
the same selection rule to these identical sets and we get agreement.
11.4
The consensus protocol for S depends on some process c never being suspected; if c is suspected during the entire (finite) execution of the protocol
as can happen with Sthen it is possible that no process will wait to hear
from c (or anybody else) and the processes will all decide their own inputs.
So to solve consensus with S we will need to assume fewer than n/2 failures, allowing any process to wait to hear from a majority no matter what
lies its failure detector is telling it.
The resulting protocol, known as the Chandra-Toueg consensus protocol, is structurally similar to the consensus protocol in Paxos.1 The difference is that instead of proposers blindly showing up, the protocol is divided
into rounds with a rotating coordinator pi in each round r with r = i
(mod n). The termination proof is based on showing that in any round
where the coordinator is not faulty and nobody suspects it, the protocol
finishes.
1
80
procedure broadcast(m)
send m to all processes.
upon receiving m do
if I havent seen m before then
send m to all processes
deliver m to myself
Algorithm 11.3: Reliable broadcast
Heres a sketch of the actual consensus protocol:
Each process keeps track of a preference (initially its own input) and a
timestamp, the round number in which it last updated its preference.
The processes go through a sequence of asynchronous rounds, each
divided into four phases:
1. All processes send (round, preference, timestamp) to the coordinator for the round.
2. The coordinator waits to hear from a majority of the processes
(possibly including itself). The coordinator sets its own preference to some preference with the largest timestamp of those it
receives and sends (round, preference) to all processes.
3. Each process waits for the new proposal from the coordinator
or for the failure detector to suspect the coordinator. If it receives a new preference, it adopts it as its own, sets timestamp
to the current round, and sends (round, ack) to the coordinator.
Otherwise, it sends (round, nack) to the coordinator.
4. The coordinator waits to receive ack or nack from a majority of
processes. If it receives ack from a majority, it announces the
81
7
8
9
10
11
12
13
14
15
16
17
18
19
preference input
timestamp 0
for round 1 . . . do
Send hround, preference, timestampi to coordinator
if I am the coordinator then
Wait to receive hround, preference, timestampi from majority of
processes.
Set preference to value with largest timestamp.
Send hround, preferencei to all processes.
Wait to receive round, preference0 from coordinator or to suspect
coordinator.
if I received round, preference0 then
preference preference0
timestamp round
Send ack(round) to coordinator.
else
Send nack(round) to coordinator.
11.4.1
Proof of correctness
For validity, observe that the decision value is an estimate and all estimates
start out as inputs.
For termination, observe that no process gets stuck in phase 1, 2, or 4,
because either it isnt waiting or it is waiting for a majority of non-faulty
processes who all sent messages unless they have already decided (this is
82
why we need the nacks in phase 3). The loophole here is that processes
that decide stop participating in the protocol; but because any non-faulty
process retransmits the decision value in the reliable broadcast, if a process
is waiting for a response from a non-faulty process that already terminated,
eventually it will get the reliable broadcast instead and terminate itself.
In phase 3, a process might get stuck waiting for a dead coordinator, but
the strong completeness of S means that it suspects the dead coordinator
eventually and escapes. So at worst we do finitely many rounds.
Now suppose that after some time t there is a process c that is never
suspected by any process. Then in the next round in which c is the coordinator, in phase 3 all surviving processes wait for c and respond with
ack, c decides on the current estimate, and triggers the reliable broadcast
protocol to ensure everybody else decides on the same value. Since reliable broadcast guarantees that everybody receives the message, everybody
decides this value or some value previously broadcastbut in either case
everybody decides.
Agreement is the tricky part. Its possible that two coordinators both
initiate a reliable broadcast and some processes choose the value from the
first and some the value from the second. But in this case the first coordinator collected acks from a majority of processes in some round r, and all
subsequent coordinators collected estimates from an overlapping majority
of processes in some round r0 > r. By applying the same induction argument as for Paxos, we get that all subsequent coordinators choose the same
estimate as the first coordinator, and so we get agreement.
11.5
We can show that with a majority of failures, were in trouble with just P
(and thus with S, which is trivially simulated by P ). The reason is that
P can lie to us for some long initial interval of the protocol, and consensus
is required to terminate eventually despite these lies. So the usual partition
argument works: start half of the processes with input 0, half with 1, and
run both halves independently with P suspecting the other half until the
processes in both halves decide on their common inputs. We can now make
P happy by letting it stop suspecting the processes, but its too late.
11.6
83
Its easy to see that P simulates S and P simulates S without modification. Its also immediate that P simulates P and S simulates S (make
eventually be now), which gives a diamond-shaped lattice structure between the classes. What is trickier is to show that this structure doesnt
collapse: P cant simulate S, S cant simulate P , and S cant simulate
any of the other classes.
First lets observe that P cant simulate S: if it could, we would get a
consensus protocol for f n/2 failures, which we cant do. It follows that
P also cant simulate P (because P can simulate S).
To show that S cant simulate P , choose some non-faulty victim process
v and consider an execution in which S periodically suspects v (which it is
allowed to do as long as there is some other non-faulty process it never
suspects). If the P -simulator ever responds to this by refusing to suspect
v, there is an execution in which v really is dead, and the simulator violates
strong completeness. But if not, we violate eventual strong accuracy. Note
that this also implies S cant simulate P , since P can simulate P . It also
shows that S cant simulate either of P or P .
We are left with showing S cant simulate S. Consider a system where
ps S detector suspects q but not r from the start of the execution, and
similarly rs S detector also suspects q but not p. Run p and r in isolation
until they give up and decide that q is in fact dead (which they must do
eventually by strong completeness, since this run is indistinguishable from
one in which q is faulty). Then wake up q and crash p and r. Since q is the
only non-faulty process, weve violated weak accuracy.
Chandra and Toueg [CT96] give as an example of a natural problem
that can be solved only with P the problem of terminating reliable
broadcast, in which a single leader process attempts to send a message
and all other processes eventually agree on the message if the leader is nonfaulty but must terminate after finite time with a default no message return
value if the leader is faulty.2 The process is solvable using P by just having
each process either wait for the message or for P to suspect the leader, which
can only occur if the leader does in fact crash. If the leader is dead, the
processes must eventually decide on no message; this separates P from S
and P since we can then wake up the leader and let it send its message.
But it also separates P from S, since we can have the S-detector only be
2
This is a slight weakening of the problem, which however still separates P from the
other classes. For the real problem see Chandra and Toueg [CT96].
84
Chapter 12
Logical clocks
Logical clocks assign a timestamp to all events in an asynchronous messagepassing system that simulates real time, thereby allowing timing-based algorithms to run despite asynchrony. In general, they dont have anything to
do with clock synchronization or wall-clock time; instead, they provide numerical values that increase over time and are consistent with the observable
behavior of the system. In particular, messages are never delivered before
they are sent, when time is measured using the logical clock.
12.1
Causal ordering
86
same process.
2. All pairs (e, e0 ) where e is a send event and e0 is the receive event for
the same message.
3. All pairs (e, e0 ) where there exists a third event e00 such that e S e00
and e00 S e0 . (In other words, we take the transitive closure of the
relation defined by the previous two cases.)
It is not terribly hard to show that this gives a partial order; the main
observation is that if e S e0 , then e precedes e0 in S. So S is a subset of
the total order <S given by the order of events in S.
A causal shuffle S 0 of a schedule S is a permutation of S that is consistent with the happens-before relation on S; that is, if e happens-before e0 in
S, then e precedes e0 in S 0 . The importance of the happens-before relation
follows from this lemma:
Lemma 12.1.1. Let S 0 be a permutation of the events in S. Then the
following two statements are equivalent:
1. S 0 is a causal shuffle of S.
2. S 0 is the schedule of an execution fragment of a message-passing system
with S|p = S 0 |p for all S 0 .
Proof. (1 2). We need to show both similarity and that S 0 corresponds
to some execution fragment. Well show similarity first. Pick some p; then
every event at p in S also occurs in S 0 , and they must occur in the same order
by the first case of the definition of the happens-before relation. This gets
us halfway to showing S 0 is the schedule of some execution fragment, since
it says that any events initiated by p are consistent with ps programming.
To get the rest of the way, observe that any other events are receive events.
For each receive event e0 in S, there must be some matching send event e
also in S; thus e and e0 are both in S 0 and occur in the right order by the
second case of the definition of happens-before.
(2 1). First observe that since every event e in S 0 occurs at some
process p, if S 0 |p = S|p for all p, then there is a one-to-one correspondence
between events in S 0 and S, and thus S 0 is a permutation of S. Now we
need to show that S 0 is consistent with S . Let e S e0 . There are three
cases.
1. e and e0 are events of the same process p and e <S e0 . But then e <S 0 e0
because S|p = S 0 |p.
87
What this means: if I tell you S , then you know everything there is
to know about the order of events in S that you can deduce from reports
from each process together with the fact that messages dont travel back in
time. But S is a pretty big relation ((|S|2 ) bits with a naive encoding),
and seems to require global knowledge of <S to compute. So we can ask if
there is some simpler, easily computable description that works almost as
well. This is where logical clocks come in.
12.2
Implementations
12.2.1
Lamport clock
12.2.2
88
Neiger-Toueg-Welch clock
89
years thanks to the Network Time Protocol, cheap GPS receivers, and clock
synchronization mechanisms built into most cellular phone networks.1
12.2.3
Vector clocks
12.3
Applications
12.3.1
Consistent snapshots
As I write this, my computer reports that its clock is an estimated 289 microseconds
off from the timeserver it is synchronized to, which is less than a tenth of the round-trip
delay to machines on the same local-area network and a tiny fraction of the round-trip
delay to machines elsewhere, including the timeserver machine.
90
91
Property testing
Consistent snapshots are in principle useful for debugging (since one can
gather a consistent state of the system without being able to talk to every
process simultaneously), and in practice are mostly used for detecting stable
properties of the system. Here a stable property is some predicate on
global configurations that remains true in any successor to a configuration
in which it is true, or (bending the notion of properties a bit) functions
on configurations whose values dont change as the protocol runs. Typical
examples are quiescence and its evil twin, deadlock. More exotic examples
include total money supply in a banking system that cannot create or destroy
money, or the fact that every process has cast an irrevocable vote in favor
of some proposal or advanced its Neiger-Toueg-Welch-style clock past some
threshold.
The reason we can test such properties using consistent snapshot is that
when the snapshot terminates with value C in some configuration C 0 , even
though C may never have occurred during the actual execution of the protocol, there is an execution which leads from C to C 0 . So if P holds in C,
stability means that it holds in C 0 .
Naturally, if P doesnt hold in C, we cant say much. So in this case we
re-run the snapshot protocol and hope we win next time. If P eventually
holds, we will eventually start the snapshot protocol after it holds and obtain
a configuration (which again may not correspond to any global configuration
that actually occurs) in which P holds.
12.3.2
The main application for suggested by Lamport in his logical-clocks paper [Lam78] was building a replicated state machine. In his construction,
any process can at any time issue an operation on the object by broadcasting it with an attached timestamp. When a process receives an operation,
it buffers it in a priority queue ordered by increasing timestamp. It can apply the first operation in the queue only when it can detect that no earlier
operation will arrive, which it can do if it sees a message from every other
process with a later timestamp (or after a timeout, if we have some sort of
clock synchronization guarantee). It is not terribly hard to show that this
guarantees that every replica gets the same sequence of operations applied
92
to it, and that these operations are applied in an order consistent with the
processes ability to determine the actual order in which they were proposed.
Furthermore, if the processes spam each other regularly with their current
clock values, each operation will take effect after at most two message delays
(with Lamport clocks) if the clocks are not very well synchronized and after approximately one message delay (with Lamport or Neiger-Toueg-Welch
clocks) if they are. A process can also execute read operations on its own
copy immediately without notifying other processes (if it is willing to give
up linearizability for sequential consistency).
However, this particular construction assumes no failures, so for poorlysynchronized clocks or systems in which sequentially-consistent reads are not
good enough, replicated state machines are no better than simply keeping
one copy of the object on a single process and having all operations go
through that process: 2 message delays + 2 messages per operation for the
single copy beats 2 message delays + many messages for full replication. But
replicated state machines take less time under good conditions, and when
augmented with more powerful tools like consensus or atomic broadcast are
the basis of most fault-tolerant implementations of general shared-memory
objects.
Chapter 13
Synchronizers
Synchronizers simulate an execution of a failure-free synchronous system
in a failure-free asynchronous system. See [AW04, Chapter 11] or [Lyn96,
Chapter 16] for a detailed (and rigorous) presentation.
13.1
Definitions
Formally, a synchronizer sits between the underlying network and the processes and does one of two things:
A global synchronizer guarantees that no process receives a message
for round r until all processes have sent their messages for round r.
A local synchronizer guarantees that no process receives a message
for round r until all of that processs neighbors have sent their messages
for round r.
In both cases the synchronizer packages all the incoming round r messages m for a single process together and delivers them as a single action
recv(p, m, r). Similarly, a process is required to hand over all of its outgoing
round-r messages to the synchronizer as a single action send(p, m, r)this
prevents a process from changing its mind and sending an extra round-r
message or two. It is easy to see that the global synchronizer produces executions that are effectively indistinguishable from synchronous executions,
assuming that a synchronous execution is allowed to have some variability
in exactly when within a given round each process does its thing. The local
synchronizer only guarantees an execution that is locally indistinguishable
from an execution of the global synchronizer: an individual process cant
93
94
tell the difference, but comparing actions at different (especially widely separated) processes may reveal some process finishing round r + 1 while others
are still stuck in round r or earlier. Whether this is good enough depends
on what you want: its bad for coordinating simultaneous missile launches,
but may be just fine for adapting a synchronous message-passing algorithm
(e.g. for distributed breadth-first search as described in Chapter 5) to an
asynchronous system, if we only care about the final states of the processes
and not when precisely those states are reached.
Formally, the relation between global and local synchronization is described by the following lemma:
Lemma 13.1.1. For any schedule S of a locally synchronous execution,
there is a schedule S 0 of a globally synchronous execution such that S|p =
S 0 |p for all processes p.
Proof. Essentially, we use the same happens-before relation as in Chapter 12, and the fact that if a schedule S 0 is a causal shuffle of another schedule
S (i.e., a permutation of T that preserves causality), then S 0 |p = S|p for all
p (Lemma 12.1.1).
Given a schedule S, consider a schedule S 0 in which the events are ordered
first by increasing round and then by putting all sends before receives. This
ordering is consistent with S , so its a causal shuffle of S and S 0 |p = S|p.
But its globally synchronized, because no round-r operations at all happen
before a round-(r 1) operation.
13.2
Implementations
95
collect this information from the senders and distribute it to the receivers,
since any particular receiver doesnt know which potential senders to wait
for. This blows up time complexity, as we essentially end up building a
global synchronizer with a central leader.
The gamma synchronizer combines the two approaches at different levels to obtain a trade-off between messages and time that depends on the
structure of the graph and how the protocol is organized.
Details of each synchronizer are given below.
13.2.1
The alpha synchronizer uses local information to construct a local synchronizer. In round r, the synchronizer at p sends ps message (tagged with the
round number) to each neighbor p0 or noMsg(r) if it has no messages. When
it collects a message or noMsg from each neighbor for round r, it delivers
all the messages. Its easy to see that this satisfies the local synchronization
specification.
This produces no change in time but may drastically increase message
complexity because of all the extra noMsg messages flying around. For a
synchronous protocol that runs in T rounds with M messages, the same
protocol running with the alpha synchronizer will run in T time units, but
the message complexity may go up to M + T |E| messages.
13.2.2
13.2.3
96
The gamma synchronizer combines the alpha and beta synchronizers to try
to get low blowups on both time complexity and message complexity. The
essential idea is to cover the graph with a spanning forest and run beta
within each tree and alpha between trees. Specifically:
Every message in the underlying protocol gets acked (including messages that pass between trees).
When a process has collected all of its outstanding round-r acks, it
sends OK up its tree.
When the root of a tree gets all acks and OK, it sends ready to the
roots of all adjacent trees (and itself). Two trees are adjacent if any
of their members are adjacent.
When the root collects ready from itself and all adjacent roots, it broadcasts go through its own tree.
As in the alpha synchronizer, we can show that no root issues go unless it
and all its neighbors issue ready, which happens only after both all nodes in
the roots tree and all their neighbors (some of whom might be in adjacent
trees) have received acks for all messages. This means that when a node
receives go it can safely deliver its bucket of messages.
Message complexity is comparable to the beta synchronizer assuming
there arent too many adjacent trees: 2M messages for sends and acks,
plus O(n) messages for in-tree communication, plus O(Eroots ) messages for
root-to-root communication. Time complexity per synchronous round is
proportional to the depth of the trees: this includes both the time for intree communication, and the time for root-to-root communication, which
might need to be routed through leaves.
In a particularly nice graph, the gamma synchronizer can give costs
comparable to the costs of the original synchronous algorithm. An example
in [Lyn96] is a ring of k-cliques, where we build a tree in each clique and get
O(1) time blowup and O(n) added messages. This is compared to O(n/k)
time blowup for beta and O(k) message blowup (or worse) for alpha. Other
graphs may favor tuning the size of the trees in the forest toward the alpha
or beta ends of the spectrum, e.g., if the whole graph is a clique (and we
didnt worry about contention issues), we might as well just use beta and
get O(1) time blowup and O(n) added messages.
13.3
97
Applications
See [AW04, 11.3.2] or [Lyn96, 16.5]. The one we have seen is distributed
breadth-first search, where the two asynchronous algorithms we described
in Chapter 5 were essentially the synchronous algorithms with the beta and
alpha synchronizers embedded in them. But what synchronizers give us
in general is the ability to forget about problems resulting from asynchrony
provided we can assume no failures (which may be a very strong assumption)
and are willing to accept a bit of overhead.
13.4
Limitations of synchronizers
13.4.1
The synchronizers above all fail badly if some process crashes. In the
synchronizer, the system slowly shuts down as a wave of waiting propagates
out from the dead process. In the synchronizer, the root never gives the
green light for the next round. The synchronizer, true to its hybrid nature,
fails in a way that is a hybrid of these two disasters.
This is unavoidable in the basic asynchronous model. Suppose that we
had a synchronizer that could tolerate crash failures (here, the process that
crashed in the asynchronous model would also appear to crash in the simulated synchronous model, but everybody else would keep going). Then we
could use this fault-tolerant synchronizer to turn either of the synchronous
agreement protocols from Chapter 7 into an asynchronous protocol tolerating arbitrarily many crash failures. But this contradicts the FLP impossibility result from Chapter 9.
Well see more examples of this trick of showing that a particular simulation is impossible because it would allow us to violate impossibility results
later, especially when we start looking at the strength of shared-memory
objects in Chapter 18.
13.4.2
The session problem gives a lower bound on the speed of a global synchronizer, or more generally on any protocol that tries to approximate synchrony
98
in a certain sense. Recall that in a global synchronizer, our goal is to produce a simulation that looks synchronous from the outside; that is, that
looks synchronous to an observer that can see the entire schedule. In contrast, a local synchronizer produces a simulation that looks synchronous
from the insidethe resulting execution is indistinguishable from a synchronous execution to any of the processes, but an outside observer can
see that different processes execute different rounds at different times. The
global synchronizer weve seen takes more time than a local synchronizer;
the session problem shows that this is necessary.
In our description, we will mostly follow [AW04, 6.2.2].
A solution to the session problem is an asynchronous protocol in which
each process repeatedly executes some special action. Our goal is to guarantee that these special actions group into s sessions, where a session is an
interval of time in which every process executes at least one special action.
We also want the protocol to terminate: this means that in every execution,
every process executes a finite number of special actions.
A synchronous system can solve this problem trivially in s rounds: each
process executes one special action per round. For an asynchronous system,
a lower bound of Attiya and Mavronicolas [AM94] (based on an earlier
bound of Arjomandi, Fischer, and Lynch [AFL83], who defined the problem
in a slightly different communication model), shows that if the diameter of
the network is D, there is no solution to the s-session problem that takes
(s 1)D time or less in the worst case. The argument is based on reordering
events in any such execution to produce fewer than s sessions, using the
happens-before relation from Chapter 12.
13.5
99
Chapter 14
Quorum systems
14.1
Basics
In the past few chapters, weve seen many protocols that depend on the fact
that if I talk to more than n/2 processes and you talk to more than n/2 processes, the two groups overlap. This is a special case of a quorum system,
a family of subsets of the set of processes with the property that any two
subsets in the family overlap. By choosing an appropriate family, we may
be able to achieve lower load on each system member, higher availability,
defense against Byzantine faults, etc.
The exciting thing from a theoretical perspective is that these turn a
systems problem into a combinatorial problem: this means we can ask combinatorialists how to solve it.
14.2
100
14.3
101
Goals
to get load better than 1/ n, and to get this load we need quorums
of size at least n.
102
Figure 14.1: Figure 2 from [NW98]. Solid lines are G(3); dashed lines are
G (3).
failure probability is at least p when p > 1/2 (and optimal system is to
just pick a single leader in this case), failure probability can be made
exponentially small in size of smallest quorum when p < 1/2 (with
many quorums). These results are due to Peleg and Wool [PW95].
14.4
Paths system
This is an optimal-load system from Naor and Wool [NW98] with exponentially low failure probability, based on percolation theory.
The basic idea is to build a dd mesh-like graph where a quorum consists
of the union of a top-to-bottom path (TB path) and a left-to-right path (LR
path); this gives quorum size O( n) and load O(1/ n). Note that the TB
and LR paths are not necessarily direct: they may wander around for a
while in order to get where they are going, especially if there are a lot of
failures to avoid. But the smallest quorums will have size 2d + 1 = O( n).
The actual mesh is a little more complicated. Figure 14.1 reproduces
the picture of the d = 3 case from the Naor and Wool paper.
Each server corresponds to a pair of intersecting edges, one from the
103
G(d) grid and one from the G (d) grid (the star indicates that G (d) is the
dual graph1 of G(d). A quorum consists of a set of servers that produce an
LR path in G(d) and a TB path in G (d). Quorums intersect, because any
LR path in G(d) must cross some TB path in G (d) at some server (in fact,
each pair of quorums intersects in at least two places). The total number of
= 2 exp(( n)).
So the failure probability of this system is exponentially small for any fixed
p < 1/2.
See the paper [NW98] for more details.
14.5
Standard quorum systems are great when you only have crash failures, but
with Byzantine failures you have to worry about finding a quorum that
includes a Byzantine serve who lies about the data. For this purpose you
need something stronger. Following Malkhi and Reiter [MR98] and Malkhi et
al. [MRWW01], one can define:
A b-disseminating quorum system guarantees |Q1 Q2 | b +
1 for all quorums Q1 and Q2 . This guarantees that if I update a
1
See http://en.wikipedia.org/wiki/Dual_graph; the basic idea is that the dual of a
graph G embedded in the plane has a vertex for each region of G, and an edge connecting
each pair of vertices corresponding to adjacent regions, where a region is a subset of the
plane that is bounded by edges of G.
104
14.6
The problem with all standard (or strict) quorum systems is that we need
big quorums to get high fault tolerance, since the adversary can always stop
us by knocking out our smallest quorum. A probabilistic quorum system or more specifically an -intersecting quorum system [MRWW01]
improves the fault-tolerance by relaxing the requirements. For such a system we have not only a set system Q, but also a probability distribu-
105
tion w supplied by the quorum system designer, with the property that
Pr[Q1 Q2 = ] when Q1 and Q2 are chosen independently according
to their weights.
14.6.1
Example
Let a quorum be any set of size k n for some k and let all quorums be
chosen uniformly at random. Pick some quorum Q1 ; what is the probability
that a random Q2 does not intersect Q1 ? Imagine we choose the elements
of Q2 one at a time. The chance that the first element x1 of Q2 misses Q1
Pr[all miss Q1 ] (1 k/ n)
exp(k n)k/ n) = exp(k 2 ). So by
setting k = (ln 1/), we can get our desired -intersecting system.
14.6.2
Performance
|Q1 = Q] and high quality if its -high-quality. Its not hard to show
that a random quorum is -high-quality with probability at least /, so
a high quality quorum is one that fails to intersect a random quorum with
at least 1 .
We can also consider load; Malkhi et al. [MRWW01] show that essentially the same bounds on load for strict quorum systems also hold for
intersecting quorum systems: load(S) max((E(|Q|)/n, (1 )2 / E(|Q|)),
where E(|Q|) is the expected size of a quorum. The left-hand branch of the
max is just the average load applied to a uniformly-chosen server. For the
right-hand side, pick some high quality quorum Q0 with size less than or
equal to (1 ) E(|Q|) and consider the load applied to its most loaded
member by its nonempty intersection (which occurs with probability at least
106
14.7
A further generalization of probabilistic quorum systems gives signed quorum systems [Yu06]. In these systems, a quorum consists of some set of
positive members (servers you reached) and negative members (servers you
tried to reach but couldnt). These allow O(1)-sized quorums while tolerating n O(1) failures, under certain natural probabilistic assumptions.
Because the quorums are small, the load on some servers may be very high:
so these are most useful for fault-tolerance rather than load-balancing. See
the paper for more details.
Part II
Shared memory
107
Chapter 15
Model
Basic shared-memory model. See also [AW04, 4.1].
The idea of shared memory is that instead of sending messages to each
other, processes communicate through a pool of shared objects. These
are typically registers supporting read and write operations, but fancier
objects corresponding to more sophisticated data structures or synchronization primitives may also be included in the model.
It is usually assumed that the shared objects do not experience faults.
This means that the shared memory can be used as a tool to prevent partitions and other problems that can arise in message passing if the number
of faults get too high. As a result, for large numbers of processor failures,
shared memory is a more powerful model than message passing, although
we will see in Chapter 16 that both models can simulate each other provided
a majority of processes are non-faulty.
15.1
Atomic registers
109
leftIsDone read(leftDone)
rightIsDone read(rightDone)
write(done, leftIsDone rightIsDone)
15.2
One variation that does come up even with atomic registers is what processes
are allowed to read or write a particular register. A typical assumption is
that registers are single-writer multi-readerthere is only one process
that can write to the register (which simplifies implementation since we dont
have to arbitrate which of two near-simultaneous writes gets in last and thus
leaves the long-term value), although its also common to assume multiwriter multi-reader registers, which if not otherwise available can be built
from single-writer multi-reader registers using atomic snapshot (see Chapter 19). Less common are single-reader single-writer registers, which act
much like message-passing channels except that the receiver has to make an
explicit effort to pick up its mail.
15.3
110
From the perspective of a schedule, the fairness condition says that every
processes gets to perform an operation infinitely often, unless it enters either
a crashed or halting state where it invokes no further operations. (Note
that unlike in asynchronous message-passing, there is no way to wake up a
process once it stops doing operations, since the only way to detect that any
activity is happening is to read a register and notice it changed.) Because
the registers (at least in in multi-reader models) provide a permanent faultfree record of past history, shared-memory systems are much less vulnerable
to crash failures than message-passing systems (though FLP1 still applies);
so in extreme cases, we may assume as many as n 1 crash failures, which
makes the fairness condition very weak. The n 1 crash failures case is
called the wait-free casesince no process can wait for any other process
to do anythingand has been extensively studied in the literature.
For historical reasons, work on shared-memory systems has tended to assume crash failures rather than Byzantine failurespossibly because Byzantine failures are easier to prevent when you have several processes sitting in
the same machine than when they are spread across the network, or possibly
because in multi-writer situations a Byzantine process can do much more
damage. But the model by itself doesnt put any constraints on the kinds
of process failures that might occur.
15.4
Concurrent executions
Often, the operations on our shared objects will be implemented using lowerlevel operations. When this happens, it no longer makes sense to assume that
the high-level operations occur one at a timealthough an implementation
may try to give that impression to its users. To model to possibility of
concurrency between operations, we split an operation into an invocation
and response, corresponding roughly to a procedure call and its return.
The user is responsible for invoking the object; the objects implementation
(or the shared memory system, if the object is taken as a primitive) is
responsible for responding. Typically we will imagine that an operation is
invoked at the moment it becomes pending, but there may be executions
in which that does not occur. The time between the invocation and the
response for an operation is the interval of the operation.
A concurrent execution is a sequence of invocations and responses,
1
See Chapter 9.
111
where after any prefix of the execution, every response corresponds to some
preceding invocation, and there is at most one invocation for each process
always the lastthat does not have a corresponding response. How a concurrent execution may or may not relate to a sequential execution depends
on the consistency properties of the implementation, as described below.
15.5
Consistency properties
Different shared-memory systems may provide various consistency properties, which describe how views of an object by different processes mesh
with each other. The strongest consistency property generally used is linearizability [HW90], where an implementation of an object is linearizable
if, for any concurrent execution of the object, there is a sequential execution of the object with the same operations and return values, where the
(total) order of operations in the sequential execution is a linearization of
the (partial) order of operations in the concurrent execution.
Less formally, this means that if operation a finishes before operation
b starts in the concurrent execution, then a must come before b in the
sequential execution. An equivalent definition is that we can assign each
operation a linearization point somewhere between when its invocation
and response, and the sequential execution obtained by assuming that all
operations occur atomically at their linearization points is consistent with
the specification of the object. Using either definition, we are given a fair bit
of flexibility in how to order overlapping operations, which can sometimes
be exploited by clever implementations (or lower bounds).
A weaker condition is sequential consistency [Lam79]. This says that
for any concurrent execution of the object, there exists some sequential
execution that is indistinguishable to all processes; however, this sequential
execution might include operations that occur out of order from a global
perspective. For example, we could have an execution of an atomic register
where you write to it, then I read from it, but I get the initial value that
precedes your write. This is sequentially consistent but not linearizable.
Mostly we will ask any implementations we consider to be linearizable.
However, both linearizability and sequential consistency are much stronger
than the consistency conditions provided by real multiprocessors. For some
examples of weaker memory consistency rules, a good place to start might
be the dissertation of Jalal Y. Kawash [Kaw00].
15.6
112
Complexity measures
113
15.7
Fancier registers
In addition to stock read-write registers, one can also imagine more trickedout registers that provide additional operations. These usually go by the
name of read-modify-write (RMW) registers, since the additional operations consist of reading the state, applying some function to it, and writing
the state back, all as a single atomic action. Examples of RMW registers
that have appeared in real machines at various times in the past include:
Test-and-set bits A test-and-set operation sets the bit to 1 and returns
the old value.
Fetch-and-add registers A fetch-and-add operation adds some increment (typically -1 or 1) to the register and returns the old value.
Compare-and-swap registers A compare-and-swap operation writes
a new value only if the previous value is equal to a supplied test value.
These are all designed to solve various forms of mutual exclusion or
locking, where we want at most one process at a time to work on some
shared data structure.
114
Chapter 16
115
116
16.1
Well start with the easy direction. We can build a reliable FIFO channel
from single-writer single-reader registers using polling. The naive approach
is that for each edge uv in the message-passing system, we create a (very big)
register ruv , and u writes the entire sequence of every message it has ever
sent to v to ruv every time it wants to do a new send. To receive messages,
v polls all of its incoming registers periodically and delivers any messages in
the histories that it hasnt processed yet.2
The ludicrous register width can be reduced by adding in an acknowledgment mechanism in a separate register ackvu ; the idea is that u will only
write one message at a time to ruv , and will queue subsequent messages until v writes in ackvu that the message in ruv has been received. With some
tinkering, it is possible to knock ruv down to only three possible states (sending 0, sending 1, and reset) and ackvu down to a single bit (value-received,
reset-received), but thats probably overkill for most applications.
Process failures dont affect any of these protocols, except that a dead
process stops sending and receiving.
16.2
Here we show how to implement shared memory from message passing. Well
assume that our system is asynchronous, that the network is complete, and
that we are only dealing with f < n/2 crash failures. Well also assume we
only want to build single-writer registers, just to keep things simple; we can
extend to multi-writer registers later.
Heres the algorithm, which is due to Attiya, Bar-Noy, and Dolev [ABND95];
see also [Lyn96, 17.1.3]. (Section 9.3 of [AW04] gives an equivalent algorithm, but the details are buried in an implementation of totally-ordered
broadcast). Well make n copies of the register, one on each process. Each
processs copy will hold a pair (value, timestamp) where timestamps are (unbounded) integer values. Initially, everybody starts with (, 0). A process
updates its copy with new values (v, t) upon receiving write(v, t) from any
other process p, provided t is greater than the processs current timestamp.
2
If we are really cheap about using registers, and are willing to accept even more
absurdity in the register size, we can just have u write every message it ever sends to ru ,
and have each v poll all the ru and filter out any messages intended for other processes.
117
It then responds to p with ack(v, t), whether or not it updated its local
copy. A process will also respond to a message read(u) with a response
ack(value, timestamp, u); here u is a nonce3 used to distinguish between different read operations so that a process cant be confused by out-of-date
acknowledgments.
To write a value, the writer increments its timestamp, updates its value
and sends write(value, timestamp) to all other processes. The write operation terminates when the writer has received acknowledgments containing
the new timestamp value from a majority of processes.
To read a value, a reader does two steps:
1. It sends read(u) to all processes (where u is any value it hasnt used
before) and waits to receive acknowledgments from a majority of the
processes. It takes the value v associated with the maximum timestamp t as its return value (no matter how many processes sent it).
2. It then sends write(v, t) to all processes, and waits for a response
ack(v, t) from a majority of the processes. Only then does it return.
(Any extra messages, messages with the wrong nonce, etc. are discarded.)
Both reads and writes cost (n) messages ((1) per process).
Intuition: Nobody can return from a write or a read until they are sure
that subsequent reads will return the same (or a later) value. A process
can only be sure of this if it knows that the values collected by a read will
include at least one copy of the value written or read. But since majorities
overlap, if a majority of the processes have a current copy of v, then the
majority read quorum will include it. Sending write(v, t) to all processes
and waiting for acknowledgments from a majority is just a way of ensuring
that a majority do in fact have timestamps that are at least t.
If we omit the write stage of a read operation, we may violate linearizability. An example would be a situation where two values (1 and 2, say),
have been written to exactly one process each, with the rest still holding
the initial value . A reader that observes 1 and (n 1)/2 copies of
will return 1, while a reader that observes 2 and (n 1)/2 copies of will
return 2. In the absence of the write stage, we could have an arbitrarily
long sequence of readers return 1, 2, 1, 2, . . . , all with no concurrency. This
3
A nonce is any value that is guaranteed to be used at most once (the term originally
comes from cryptography, which in turn got it from linguistics). In practice, a reader will
most likely generate a nonce by combining its process id with a local timestamp.
118
would not be consistent with any sequential execution in which 1 and 2 are
only written once.
16.3
Proof of linearizability
Our intuition may be strong, but we still need a proof the algorithm works.
In particular, we want to show that for any trace T of the ABD protocol,
there is an trace of an atomic register object that gives the same sequence
of invoke and response events. The usual way to do this is to find a linearization of the read and write operations: a total order that extends the
observed order in T where 1 < 2 in T if and only if 1 ends before 2
starts. Sometimes its hard to construct such an order, but in this case its
easy: we can just use the timestamps associated with the values written or
read in each operation. Specifically, we define the timestamp of a write or
read operation as the timestamp used in the write(v, t) messages sent out
during the implementation of that operation, and we put 1 before 2 if:
1. 1 has a lower timestamp than 2 , or
2. 1 has the same timestamp as 2 , 1 is a write, and 2 is a read, or
3. 1 has the same timestamp as 2 and 1 <T 2 , or
4. none of the other cases applies, and we feel like putting 1 first.
The intent is that we pick some total ordering that is consistent with both
<T and the timestamp ordering (with writes before reads when timestamps
are equal). To make this work we have to show (a) that these two orderings
are in fact consistent, and (b) that the resulting ordering produces values
consistent with an atomic register: in particular, that each read returns the
value of the last preceding write.
Part (b) is easy: since timestamps only increase in response to writes,
each write is followed by precisely those reads with the same timestamp,
which are precisely those that returned the value written.
For part (a), suppose that 1 <T 2 . The first case is when 2 is a read.
Then before the end of 1 , a set S of more than n/2 processes send the 1
process an ack(v1, t1 ) message. Since local timestamps only increase, from
this point on any ack(v2 , t2 , u) message sent by a process in S has t2 t1 .
Let S 0 be the set of processes sending ack(v2 , t2 , u) messages processed by
2 . Since |S| > n/2 and |S 0 | > n/2, we have S S 0 is nonempty and so S 0
includes a process that sent ack(v2 , t2 ) with t2 t1 . So 2 is serialized after
119
16.4
This is pretty much the standard partition argument that f < n/2 is necessary to do anything useful in a message-passing system. Split the processes
into two sets S and S 0 of size n/2 each. Suppose the writer is in S. Consider
an execution where the writer does a write operation, but all messages between S and S 0 are delayed. Since the writer cant tell if the S 0 processes are
slow or dead, it eventually returns. Now let some reader in S 0 attempt to
read the simulated register, again delaying all messages between S and S 0 ;
now the reader is forced to return some value without knowing whether the
S processes are slow or dead. If the reader doesnt return the value written,
we lose. If by some miracle it does, then we lose in the execution where the
write didnt happen and all the processes in S really were dead.
16.5
Multiple writers
So far we have assumed a single writer. The main advantage of this approach
is that we dont have to do much to manage timestamps: the single writer
can just keep track of its own. With multiple writers we can use essentially
the same algorithm, but each write needs to perform an initial round of
gathering timestamps so that it can pick a new timestamp bigger than those
that have come before. We also extend the timestamps to be of the form
hcount, idi, lexicographically ordered, so that two timestamps with the same
count field are ordered by process id. The modified write algorithm is:
1. Send read(u) to all processes and wait to receive acknowledgments
from a majority of the processes.
2. Set my timestamp to t = (maxq countq + 1, id) where the max is taken
over all processes q that sent me an acknowledgment. Note that this
is a two-field timestamp that is compared lexicographically, with the
id field used only to prevent duplicate timestamps.
3. Send write(v, t) to all processes, and wait for a response ack(v, t) from
a majority of processes.
This increases the cost of a write by a constant factor, but in the end
we still have only a linear number of messages. The proof of linearizability
120
16.6
Other operations
Chapter 17
Mutual exclusion
For full details see [AW04, Chapter 4] or [Lyn96, Chapter 10].
17.1
The problem
The goal is to share some critical resource between processes without more
than one using it at a timethis is the fundamental problem in time-sharing
systems.
The solution is to only allow access while in a specially-marked block of
code called a critical section, and only allow one process at a time to be
in a critical section.
A mutual exclusion protocol guarantees this, usually in an asynchronous shared-memory model.
Formally: We want a process to cycle between states trying (trying
to get into critical section), critical (in critical section), exiting (cleaning
up so that other processes can enter their critical sections), and remainder (everything elseessentially just going about its non-critical business).
Only in the trying and exiting states does the process run the mutual exclusion protocol to decide when to switch to the next state; in the critical
or remainder states it switches to the next state on its own.
17.2
Goals
122
17.3
See [AW04, 4.3] or [Lyn96, 10.9]. The idea is that we will use some sort of
read-modify-write register, where the RMW operation computes a new
value based on the old value of the register and writes it back as a single
atomic operation, usually returning the old value to the caller as well.
17.3.1
1
2
3
oldValue read(bit)
write(bit, 1)
return oldValue
Typically there is also a second reset operation for setting the bit back
to zero. For some implementations, this reset operation may only be used
safely by the last process to get 0 from the test-and-set bit.
Because a test-and-set operation is atomic, if two processes both try to
perform test-and-set on the same bit, only one of them will see a return value
123
of 0. This is not true if each process simply executes the above code on a
stock atomic register: there is an execution in which both processes read
0, then both write 1, then both return 0 to whatever called the non-atomic
test-and-set subroutine.
Test-and-set provides a trivial implementation of mutual exclusion, shown
in Algorithm 17.1.
1
while true do
// trying
while testAndSet(lock) = 1 do nothing
// critical
(do critical section stuff)
// exiting
reset(lock)
// remainder
(do remainder stuff)
Algorithm 17.1: Mutual exclusion using test-and-set
It is easy to see that this code provides mutual exclusion, as once one
process gets a 0 out of lock, no other can escape the inner while loop until
that process calls the reset operation in its exiting state. It also provides
progress (assuming the lock is initially set to 0); the only part of the code
that is not straight-line code (which gets executed eventually by the fairness
condition) is the inner loop, and if lock is 0, some process escapes it, while
if lock is 1, some process is in the region between the testAndSet call and
the reset call, and so it eventually gets to reset and lets the next process
in (or itself, if it is very fast).
The algorithm does not provide lockout-freedom: nothing prevents a
single fast process from scooping up the lock bit every time it goes through
the outer loop, while the other processes ineffectually grab at it just after it
is taken away. Lockout-freedom requires a more sophisticated turn-taking
strategy.
17.3.2
Basic idea: In the trying phase, each process enqueues itself on the end of a
shared queue (assumed to be an atomic operation). When a process comes
to the head of the queue, it enters the critical section, and when exiting it
dequeues itself. So the code would look something like Algorithm 17.2.
124
Note that this requires a queue that supports a head operation. Not all
implementations of queues have this property.
1
2
3
while true do
// trying
enq(Q, myId)
while head(Q) 6= myId do nothing
// critical
(do critical section stuff)
// exiting
deq(Q)
// remainder
(do remainder stuff)
Algorithm 17.2: Mutual exclusion using a queue
Here the proof of mutual exclusion is that only the process whose id is at
the head of the queue can enter its critical section. Formally, we maintain an
invariant that any process whose program counter is between the inner while
loop and the call to deq(Q) must be at the head of the queue; this invariant
is easy to show because a process cant leave the while loop unless the test
fails (i.e., it is already at the head of the queue), no enq operation changes
the head value (if the queue is nonempty), and the deq operation (which
does change the head value) can only be executed by a process already at
the head (from the invariant).
Deadlock-freedom follows from proving a similar invariant that every
element of the queue is the id of some process in the trying, critical, or
exiting states, so eventually the process at the head of the queue passes the
inner loop, executes its critical section, and dequeues its id.
Lockout-freedom follows from the fact that once a process is at position
k in the queue, every execution of a critical section reduces its position by 1;
when it reaches the front of the queue (after some finite number of critical
sections), it gets the critical section itself.
17.3.2.1
125
each process in the queue itself; instead, we can hand out numerical tickets
to each process and have the process take responsibility for remembering
where its place in line is.
The RMW register has two fields, first and last, both initially 0. Incrementing last simulates an enqueue, while incrementing first simulates a
dequeue. The trick is that instead of testing if it is at the head of the queue,
a process simply remembers the value of the last field when it enqueued
itself, and waits for the first field to equal it.
Algorithm 17.3 shows the code from Algorithm 17.2 rewritten to use this
technique. The way to read the RMW operations is that the first argument
specifies the variable to update and the second specifies an expression for
computing the new value. Each RMW operation returns the old state of the
object, before the update.
1
3
4
while true do
// trying
position RMW(V, hV.first, V.last + 1i)
// enqueue
while RMW(V, V ).first 6= position.last do
nothing
// critical
(do critical section stuff)
// exiting
RMW(V, hV.first + 1, V.lasti)
// dequeue
// remainder
(do remainder stuff)
17.4
While mutual exclusion is easier using powerful primitives, we can also solve
the problem using only registers.
17.4.1
126
1
2
3
4
5
6
7
8
shared data:
waiting, initially arbitrary
present[i] for i {0, 1}, initially 0
Code for process i:
while true do
// trying
present[i] 1
waiting i
while true do
if present[i] = 0 then break
10
11
12
13
14
// critical
(do critical section stuff)
// exiting
present[i] = 0
// remainder
(do remainder stuff)
Intuitively, lets consider all the different ways that the entry code of the two
processes could interact. There are basically two things that each process
does: it sets its own present in Line 5 and grabs the waiting variable in
Line 6. Heres a typical case where one process gets in first:
1. p0 sets present[0] 1
127
2. p0 sets waiting 0
3. p0 reads present[1] = 0 and enters critical section
4. p1 sets present[1] 1
5. p1 sets waiting 1
6. p1 reads present[0] = 1 and waiting = 1 and loops
7. p0 sets present[0] 0
8. p1 reads present[0] = 0 and enters critical section
The idea is that if I see a 0 in your present variable, I know that you
arent playing, and can just go in.
Heres a more interleaved execution where the waiting variable decides
the winner:
1. p0 sets present[0] 1
2. p0 sets waiting 0
3. p1 sets present[1] 1
4. p1 sets waiting 1
5. p0 reads present[1] = 1
6. p1 reads present[0] = 1
7. p0 reads waiting = 1 and enters critical section
8. p1 reads present[0] = 1 and waiting = 1 and loops
9. p0 sets present[0] 0
10. p1 reads present[0] = 0 and enters critical section
Note that its the process that set the waiting variable last (and thus
sees its own value) that stalls. This is necessary because the earlier process
might long since have entered the critical section.
Sadly, examples are not proofs, so to show that this works in general, we
need to formally verify each of mutual exclusion and lockout-freedom. Mutual exclusion is a safety property, so we expect to prove it using invariants.
The proof in [Lyn96] is based on translating the pseudocode directly into
128
We can now read mutual exclusion directly off of Lemma 17.4.2: if both
p0 and p1 are at Line 12, then we get waiting = 1 and waiting = 0, a
contradiction.
To show progress, observe that the only place where both processes can
get stuck forever is in the loop at Lines 8 and 10. But then waiting isnt
changing, and so some process i reads waiting = i and leaves. To show
lockout-freedom, observe that if p0 is stuck in the loop while p1 enters the
critical section, then after p1 leaves it sets present[1] to 0 in Line 13 (which
lets p0 in if p0 reads present[1] in time), but even if it then sets present[1]
back to 1 in Line 5, it still sets waiting to 1 in Line 6, which lets p0 into
the critical section. With some more tinkering this argument shows that p1
129
enters the critical section at most twice while p0 is in the trying state, giving
2-bounded bypass; see [Lyn96, Lemma 10.12]. With even more tinkering we
get a constant time bound on the waiting time for process i to enter the
critical section, assuming the other process never spends more than O(1)
time inside the critical section.
17.4.1.2
Generalization to n processes
17.4.2
With a bit of extra work, we can reduce the no-contention cost of mutual
exclusion to O(1), while keeping whatever performance we previously had
in the high-contention case. The trick (due to Lamport [Lam87]) is to put
an object at the entrance to the protocol that diverts a solo process onto a
fast path that lets it bypass the n-process mutex that everybody else ends
up on.
Our presentation mostly follows [AW04][4.4.5], which uses the splitter
130
1
2
3
4
5
6
door closed
if race = id then
return stop
else
return down
7
8
9
10
11
Moir and Anderson call these things one-time building blocks, but the name splitter has become standard in subsequent work.
131
Lemma 17.4.3. After each time that door is set to open, at most one
process running Algorithm 17.5 returns stop.
Proof. To simplify the argument, we assume that each process calls splitter
at most once.
Let t be some time at which door is set to open ( in the case of the
initial value). Let St be the set of processes that read open from door after
time t and before the next time at which some process writes closed to door,
and that later return stop by reaching Line 9.
Then every process in St reads door before any process in St writes door.
It follows that every process in St writes race before any process in St reads
race. If some process p is not the last process in St to write race, it will not
see its own id, and will not return stop. But only one process can be the
last process in St to write race.2
Lemma 17.4.4. If a process runs Algorithm 17.5 by itself starting from a
configuration in which door = open, it returns stop.
Proof. Follows from examining a solo execution: the process sets race to id,
reads open from door, then reads id from race. This causes it to return stop
as claimed.
To turn this into an n-process mutex algorithm, we use the splitter to
separate out at most one process (the one that gets stop) onto a fast path
that bypasses the slow path taken by the rest of the processes. The slowpath process first fight among themselves to get through an n-process mutex;
the winner then fights in a 2-process mutex with the process (if any) on the
fast path.
Releasing the mutex is the reverse of acquiring it. If I followed the fast
path, I release the 2-process mutex first then reset the splitter. If I followed
the slow path, I release the 2-process mutex first then the n-process mutex.
This gives mutual exclusion with O(1) cost for any process that arrives
before there is any contention (O(1) for the splitter plus O(1) for the 2process mutex).
A complication is that if nobody wins the splitter, there is no fast-path
process to reset it. If we dont want to accept that the fast path just breaks
forever in this case, we have to include a mechanism for a slow-path process
to reset the splitter if it can be assured that there is no fast-path process
2
Its worth noting that this last process still might not return stop, because some later
processnot in St might overwrite race. This can happen even if nobody ever resets the
splitter.
132
left in the system. The simplest way to do this is to have each process mark
a bit in an array to show it is present, and have each slow-path process,
while still holding all the mutexes, check on its way out if the door bit is
set and no processes claim to be present. If it sees all zeros (except for
itself) after seeing door = closed, it can safely conclude that there is no
fast-path process and reset the splitter itself. The argument then is that the
last slow-path process to leave will do this, re-enabling the fast path once
there is no contention again. This approach is taken implicitly in Lamports
original algorithm, which combines the splitter and the mutex algorithms
into a single miraculous blob.
17.4.3
1
2
3
4
5
6
7
8
9
10
11
12
13
shared data:
choosing[i], an atomic bit for each i, initially 0
number[i], an unbounded atomic register, initially 0
Code for process i:
while true do
// trying
choosing[i] 1
number[i] 1 + maxj6=i number[j]
choosing[i] 0
for j 6= i do
loop until choosing[j] = 0
loop until number[j] = 0 or hnumber[i], ii < hnumber[j], ji
// critical
(do critical section stuff)
// exiting
number[i] 0
// remainder
(do remainder stuff)
Algorithm 17.6: Lamports Bakery algorithm
Note that several of these lines are actually loops; this is obvious for
133
Lines 9 and 10, but is also true for Line 6, which includes an implicit loop
to read all n 1 values of number[j].
Intuition for mutual exclusion is that if you have a lower number than I
do, then I block waiting for you; for lockout-freedom, eventually I have the
smallest number. (There are some additional complications involving the
choosing bits that we are sweeping under the rug here.) For a real proof
see [AW04, 4.4.1] or [Lyn96, 10.7].
Selling point is a strong near-FIFO guarantee and the use of only singlewriter registers (which need not even be atomicits enough that they return correct values when no write is in progress). Weak point is unbounded
registers.
17.4.4
There is a famous result due to Burns and Lynch [BL93] that any mutual
exclusion protocol using only read/write registers requires at least n of them.
Details are in [Lyn96, 10.8]. A slightly different version of the argument
is given in [AW04, 4.4.4]. The proof is another nice example of an indistinguishability proof, where we use the fact that if a group of processes cant
tell the difference between two executions, they behave the same in both.
Assumptions: We have a protocol that guarantees mutual exclusion and
progress. Our base objects are all atomic registers.
Key idea: In order for some process p to enter the critical section, it has
to do at least one write to let the other processes know it is doing so. If
not, they cant tell if p ever showed up at all, so eventually either some p0
will enter the critical section and violate mutual exclusion or (in the no-p
execution) nobody enters the critical section and we violate progress. Now
suppose we can park a process pi on each register ri with a pending write
to i; in this case we say that pi covers ri . If every register is so covered, we
can let p go ahead and do whatever writes it likes and then deliver all the
covering writes at once, wiping out anything p did. Now the other processes
again dont know if p exists or not. So we can say something stronger: before
some process p can enter a critical section, it has to write to an uncovered
register.
The hard part is showing that we can cover all the registers without
letting p know that there are other processes waitingif p can see that
other processes are waiting, it can just sit back and wait for them to go
through the critical section and make progress that way. So our goal is to
produce states in which (a) processes p1 . . . , pk (for some k) between them
cover k registers, and (b) the resulting configuration is indistinguishable
134
17.5
135
RMR complexity
Its not hard to see that we cant build a shared-memory mutex without
busy-waiting: any process that is waiting cant detect that the critical section is safe to enter without reading a register, but if that register tells it
that it should keep waiting, it is back where it started and has to read it
again. This makes our standard step-counting complexity measures useless
for describe the worst-case complexity of a mutual exclusion algorithm.
However, the same argument that suggests we can ignore local computation in a message-passing model suggests that we can ignore local operations on registers in a shared-memory model. Real multiprocessors have
memory hierarchies where memory that is close to the CPU (or one of the
CPUs) is generally much faster than memory that is more distant. This
suggests charging only for remote memory references, or RMRs, where
each register is local to one of the processes and only operations on nonlocal are expensive. This has the advantage of more accurately modeling
real costs [MCS91, And90], and allowing us to build busy-waiting mutual
exclusion algorithms with costs we can actually analyze.
As usual, there is a bit of a divergence here between theory and practice.
Practically, we are interested in algorithms with good real-time performance,
and RMR complexity becomes a heuristic for choosing how to assign memory
locations. This gives rise to very efficient mutual exclusion algorithms for
real machines, of which the most widely used is the beautiful MCS algorithm
of Mellor-Crummey and Scott [MCS91]. Theoretically, we are interested in
the question of how efficiently we can solve mutual exclusion in our formal
model, and RMR complexity becomes just another complexity measure, one
that happens to allow busy-waiting on local variables.
17.5.1
The basic idea of RMR complexity is that a process doesnt pay for operations on local registers. But what determines which operations are local?
In the cache-coherent model (CC for short), once a process reads a
register it retains a local copy as long as nobody updates it. So if I do a sequence of read operations with no intervening operations by other processes,
I may pay an RMR for the first one (if my cache is out of date), but the rest
are free. The assumption is that each process can cache registers, and there
is some cache-coherence protocol that guarantees that all the caches stay
up to date. We may or may not pay RMRs for write operations or other
read operations, depending on the details of the cache-coherence protocol,
136
17.5.2
17.5.3
137
Yang and Anderson [YA95] give a mutual exclusion algorithm for the DSM
model that requires (log n) RMRs to reach the critical section. This is now
known to be optimal for deterministic algorithms [AHW08]. The core of the
algorithm is a 2-process mutex similar to Petersons, with some tweaks so
that each process spins only on its own registers. Pseudocode is given in
Algorithm 17.7; this is adapted from [YA95, Figure 1].
1
2
3
4
5
6
7
8
9
10
11
12
13
14
C[side(i)] i
T i
P [i] 0
rival C[side(i)]
if rival 6= and T = i then
if P [rival] = 0 then
P [rival] = 1
while P [i] = 0 do spin
if T = i then
while P [i] 1 do spin
// critical section goes here
C[side(i)]
rival T
if rival 6= i then
P [rival] 2
Algorithm 17.7: Yang-Anderson mutex for two processes
138
When I want to enter my critical section, I first set C[side(i)] so you can
find me; this also has the same effect as setting present[side(i)] in Petersons
algorithm. I then point T to myself and look for you. Ill block if I see
C[side(i)] = 1 and T = i. This can occur in two ways: one is that I really
write T after you did, but the other is that you only wrote C[side(i)] but
havent written T yet. In the latter case, you will signal to me that T may
have changed by setting P [i] to 1. I have to check T again (because maybe
I really did write T later), and if it is still i, then I know that you are ahead
of me and will succeed in entering your critical section. In this case I can
safely spin on P [i] waiting for it to become 2, which signals that you have
left.
There is a proof that this actually works in [YA95], but its 27 pages
of very meticulously-demonstrated invariants (in fairness, this includes the
entire algorithm, including the tree parts that we omitted here). For intuition, this is not much more helpful than having a program mechanically
check all the transitions, since the algorithm for two processes is effectively
finite-state if we ignore the issue with different processes i jumping into the
role of side(i).
A slightly less rigorous proof but more human-accessible proof would be
analogous to the proof of Petersons algorithm. We need to show two things:
first, that no two processes ever both enter the critical section, and second,
that no process gets stuck.
For the first part, consider two processes i and j, where side(i) = 0 and
side(j) = 1. We cant have both i and j skip the loops, because whichever
one writes T last sees itself in T . Suppose that this is process i and that
j skips the loops. Then T = i and P [i] = 0 as long as j is in the critical
section, so i blocks. Alternatively, suppose i writes T last but does so after
j first reads T . Now i and j both enter the loops. But again i sees T = i on
its second test and blocks on the second loop until j sets P [i] to 2, which
doesnt happen until after j finishes its critical section.
Now let us show that i doesnt get stuck. Again well assume that i
wrote T second.
If j skips the loops, then j sets P [i] = 2 on its way out as long as T = i;
this falsifies both loop tests. If this happens after i first sets P [i] to 0, only
i can set P [i] back to 0, so i escapes its first loop, and any j 0 that enters
from the 1 side will see P [i] = 2 before attempting to set P [i] to 1, so P [i]
remains at 2 until i comes back around again. If j sets P [i] to 2 before i
sets P [i] to 0 (or doesnt set it at all because T = j, then C[side(j)] is set
to before i reads it, so i skips the loops.
If j doesnt skip the loops, then P [i] and P [j] are both set to 1 after i
139
and j enter the loopy part. Because j waits for P [j] 6= 0, when it looks at
T the second time it will see T = i 6= j and will skip the second loop. This
causes it to eventually set P [i] to 2 or set C[side(j)] to before i reads it
as in the previous case, so again i eventually reaches its critical section.
Since the only operations inside a loop are on local variables, the algorithm has O(1) RMR complexity. For the full tree this becomes O(log n).
17.5.4
Lower bounds
Chapter 18
140
141
18.1
Here we show the position of various types in the wait-free hierarchy. The
quick description is shown in Table 18.1; more details (mostly adapted
from [Her91b]) are given below.
The r in hrm stands for the registers, the m for having many objects of the given type.
Jayanti [Jay97] also defines a hierarchy hr1 where you only get finitely many objects. The
h stands for hierarchy, or, more specifically, h(T ) stands for the level of the hierarchy
at which T appears [Jay11].
3
See Chapter 28.
2
Defining
characteristic
Examples
Read
with
interfering
no-return
RMW.
Interfering
RMW; queuelike structures.
Registers, counters,
generalized counters,
atomic snapshots.
m
2m 2
First
writelike operation
wins.
142
max registers,
Test-and-set,
fetch-and-write,
fetch-and-add,
queues,
process-to-memory swap.
m-process consensus objects.
Atomic m-register write.
Queue with peek, fetch-and-cons,
sticky
bits,
compare-and-swap,
memory-to-memory swap, memoryto-memory copy.
18.1.1
First observe that any type has consensus number at least 1, since 1-process
consensus is trivial.
Well argue that a large class of particularly weak objects has consensus
number exactly 1, by running FLP with 2 processes. Recall from Chapter 9 that in the Fischer-Lynch-Paterson [FLP85] proof we classify states
as bivalent or univalent depending on whether both decision values are still
possible, and that with at least one failure we can always start in a bivalent
state (this doesnt depend on what objects we are using, since it depends
only on having invisible inputs). Since the system is wait-free there is no
constraint on adversary scheduling, and so if any bivalent state has a bivalent successor we can just do it. So to solve consensus we have to reach a
bivalent configuration C that has only univalent successors, and in particular has a 0-valent and a 1-valent successor produced by applying operations
x and y of processes px and py .
Assuming objects dont interact with each other behind the scenes, x
and y must be operations of the same object. Otherwise Cxy = Cyx and
we get a contradiction.
Now lets suppose we are looking at atomic registers, and consider cases:
143
x and y are both reads, Then x and y commute: Cxy = Cyx, and we
get a contradiction.
x is a read and y is a write. Then py cant tell the difference between
Cyx and Cxy, so running py to completion gives the same decision
value from both Cyx and Cxy, another contradiction.
x and y are both writes. Now py cant tell the difference between Cxy
and Cy, so we get the same decision value for both, again contradicting
that Cx is 0-valent and Cy is 1-valent.
Theres a pattern to these cases that generalizes to other objects. Suppose that an object has a read operation that returns its state and one or
more read-modify-write operations that dont return anything (perhaps we
could call them modify-write operations). Well say that the MW operations are interfering if, for any two operations x and y, either:
x and y commute: Cxy = Cyx.
One of x and y overwrites the other: Cxy = Cy or Cyx = Cx.
Then no pair of read or modify-write operations can get us out of a
bivalent state, because (a) reads commute; (b) for a read and MW, the nonreader cant tell which operation happened first; (c) and for any two MW
operations, either they commute or the overwriter cant detect that the first
operation happened. So any MW object with uninformative, interfering
MW operations has consensus number 1.
For example, consider a counter that supports operations read, increment, decrement, and write: a write overwrites any other operation, and
increments and decrements commute with each other, so the counter has
consensus number 1. The same applies to a generalized counter that supports an atomic x x + a operation; as long as this operation doesnt
return the old value, it still commutes with other atomic increments. Max
registers (reads on which return the largest value previously written) also
have commutative updates, so they also have consensus number 1.
18.1.2
Suppose now that we have a RMW object that returns the old value, and
suppose that it is non-trivial in the sense that it has at least one RMW
operation where the embedded function f that determines the new value is
144
not the identity (otherwise RMW is just read). Then there is some value v
such that f (v) 6= v. To solve two-process consensus, have each process pi first
write its preferred value to a register ri , then execute the non-trivial RMW
operation on the RMW object initialized to v. The first process to execute
its operation sees v and decides its own value. The second process sees f (v)
and decides the first processs value (which it reads from the register). It
follows that non-trivial RMW object has consensus number at least 2.
In many cases, this is all we get. Suppose that the operations of some
RMW type T are non-interfering in a way analogous to the previous definition, where now we say that x and y commute if they leave the object in the
same state (regardless of what values are returned) and that y overwrites x
if the object is always in the same state after both x and xy (again regardless of what is returned). The two processes px and py that carry out x and
y know what happenened, but a third process pz doesnt. So if we run pz
to completion we get the same decision value after both Cx and Cy, which
means that Cx and Cy cant be 0-valent and 1-valent. It follows that no
collection of RMW registers with interfering operations can solve 3-process
consensus, and thus all such objects have consensus number 2. Examples
of these objects include test-and-set bits, fetch-and-add registers, and
swap registers that support an operation swap that writes a new value and
return the previous value.
There are some other objects with consensus number 2 that dont fit this
pattern. Define a wait-free queue as an object with enqueue and dequeue
operations (like normal queues), where dequeue returns if the queue is
empty (instead of blocking). To solve 2-process consensus with a wait-free
queue, initialize the queue with a single value (it doesnt matter what the
value is). We can then treat the queue as a non-trivial RMW register where
a process wins if it successfully dequeues the initial value and loses if it gets
empty.
However, enqueue operations are non-interfering: if px enqueues vx and
py enqueues vy , then any third process can detect which happened first;
similarly we can distinguish enq(x)deq() from deq()enq(x). So to show we
cant do three process consensus we do something sneakier: given a bivalent
state C with allegedly 0- and 1-valent successors Cenq(x) and Cenq(y),
consider both Cenq(x)enq(y) and Cenq(y)enq(x) and run px until it does
a deq() (which it must, because otherwise it cant tell what to decide) and
then stop it. Now run py until it also does a deq() and then stop it. Weve
now destroyed the evidence of the split and poor hapless pz is stuck. In the
case of Cdeq()enq(x) and Cenq(x)deq() on a non-empty queue we can kill
the initial dequeuer immediately and then kill whoever dequeues x or the
145
value it replaced, and if the queue is empty only the dequeuer knows. In
either case we reach indistinguishable states after killing only 2 witnesses,
and the queue has consensus number at most 2.
Similar arguments work on stacks, deques, and so forththese all have
consensus number exactly 2.
18.1.3
These are objects that can solve consensus for any number of processes.
Here are a bunch of level- objects:
Queue with peek Has operations enq(x) and peek(), which returns the
first value enqueued. (Maybe also deq(), but we dont need it for
consensus). Protocol is to enqueue my input and then peek and return
the first value in the queue.
Fetch-and-cons Returns old cdr and adds new car on to the head of a list.
Use preceding protocol where peek() = tail(car :: cdr).
Sticky bit Has a write operation that has no effect unless register is in
the initial state. Whether the write succeeds or fails, it returns
nothing. The consensus protocol is to write my input and then return
result of a read.
Compare-and-swap Has CAS(old, new) operation that writes new only if
previous value is old. Use it to build a sticky bit.
Load-linked/store-conditional Like compare-and-swap split into two operations. The operation reads a memory location and marks it. The
operation succeeds only if the location has not been changed since the
preceding load-linked by the same process. Can be used to build a
sticky bit.
Memory-to-memory swap Has swap(ri , rj ) operation that atomically swaps
contents of ri with rj , as well as the usual read and write operations
for all registers. Use to implement fetch-and-cons. Alternatively, use
two registers input[i] and victory[i] for each process i, where victory[i]
is initialized to 0, and a single central register prize, initialized to 1.
To execute consensus, write your input to input[i], then swap victory[i]
with prize. The winning value is obtained by scanning all the victory
registers for the one that contains a 1, then returning the corresponding input value.)
146
18.1.4
Here we have a (large) collection of atomic registers augmented by an mregister write operation that performs all the writes simultaneously. The
intuition for why this is helpful is that if p1 writes r1 and rshared while p2
writes r2 and rshared then any process can look at the state of r1 , r2 and
rshared and tell which write happened first. Code for this procedure is given
in Algorithm 18.1; note that up to 4 reads may be necessary to determine
the winner because of timing issues.
The workings of Algorithm 18.1 are straightforward:
If the process reads r1 = r2 = , then we dont care which went first,
because the reader (or somebody else) already won.
If the process reads r1 = 1 and then r2 = , then p1 went first.
If the process reads r2 = 2 and then r1 = , then p2 went first. (This
requires at least one more read after checking the first case.)
Otherwise the process saw r1 = 1 and r2 = 2. Now read rshared : if its
1, p2 went first; if its 2, p1 went first.
Algorithm 18.1 requires 2-register writes, and will give us a protocol for 2
processes (since the reader above has to participate somewhere to make the
first case work). For m processes, we can do the same thing with m-register
writes. We have a register rpq = rqp for each pair of distinct processes p
4
1
2
3
4
5
7
8
10
11
12
13
v1 r1
v2 r2
if v1 = v2 = then
return no winner
if v1 = 1 and v2 = then
// p1 went first
return 1
// read r1 again
v10 r1
if v2 = 2 and v10 = then
// p2 went first
return 2
// both p1 and p2 wrote
if rshared = 1 then
return 2
else
return 1
147
148
2
and q, plus a register rpp for each p; this gives a total of m
2 + m = O(m )
registers. All registers are initialized to . Process p then writes its initial
preference to some single-writer register pref p and then simultaneously writes
p to rpq for all q (including rpp ). It then attempts to figure out the first writer
by applying the above test for each q to rpq (standing in for rshared ), rpp (r1 )
and rqq (r2 ). If it won against all the other processes, it decides its own
value. If not, it repeats the test recursively for some p0 that beat it until
it finds a process that beat everybody, and returns its value. So m-register
writes solve m-process wait-free consensus.
A further tweak gets 2m2: run two copies of an (m1)process protocol
using separate arrays of registers to decide a winner for each group. Then
add a second phase where each process has one register sp , in which each
process p from group 1 writes the winning id for its group simultaneously
into sp and sq for each q in the other group. To figure out who won in the
end, build a graph of all victories, where there is an edge from p to q if
and only if p beat q in phase 1 or ps id was written before qs id in phase
2. The winner is the (unique) process with at least one outgoing edge and
no incoming edges, which will be the process that won its own group (by
writing first) and whose value was written first in phase 2.
18.1.4.1
It might seem that the technique used to boost from m-process consensus to
(2m 2)-process consensus could be repeated to get up to at least (m2 ),
but this turns out not to be the case. The essential idea is to show that in
order to escape bivalence, we have to get to a configuration C where every
process is about to do an m-register write leading to a univalent configuration (since reads dont help for the usual reasons, and normal writes can be
simulated by m-register writes with an extra m 1 dummy registers), and
then argue that these writes cant overlap too much. So suppose we are in
such a configuration, and suppose that Cx is 0-valent and Cy is 1-valent, and
we also have many other operations z1 . . . zk that lead to univalent states.
Following Herlihy [Her91b], we argue in two steps:
1. There is some register that is written to by x alone out of all the
pending operations. Proof: Suppose not. Then the 0-valent configuration Cxyz1 . . . zk is indistinguishable from the 1-valent configuration
Cyz1 . . . zk by any process except px , and were in trouble.
2. There is some register that is written to by x and y but not by any of
the zi . Proof:: Suppose not. The each register is written by at most
149
18.1.5
150
18.2
Universality of consensus
Universality of consensus says that any type that can implement nprocess consensus can, together with atomic registers, give a wait-free implementation of any object in a system with n processes. That consensus
is universal was shown by Herlihy [Her91b] and Plotkin [Plo89]. Both of
these papers spend a lot of effort on making sure that both the cost of each
operation and the amount of space used is bounded. But if we ignore these
constraints, the same result can be shown using a mechanism similar to the
replicated state machines of 10.1.
Here the processes repeatedly use consensus to decide between candidate
histories of the simulated object, and a process successfully completes an
operation when its operation (tagged to distinguish it from other similar
operations) appears in a winning history. A round structure avoids too
much confusion.
Details are given in Algorithm 18.2.
There are some subtleties to this algorithm. The first time that a process
calls consensus (on c[r]), it may supply a dummy input; the idea is that it
is only using the consensus object to obtain the agreed-upon history from a
round it missed. Its safe to do this, because no process writes r to its round
register until c[r] is complete, so the dummy input cant be accidentally
chosen as the correct value.
Its not hard to see that whatever hr+1 is chosen in c[r+1] is an extension
of hr (it is constructed by appending operations to hr ), and that all processes
agree on it (by the agreement property of the consensus object c[r + 1]. So
this gives us an increasing sequence of consistent histories. We also need
to show that these histories are linearizable. The obvious linearization is
just the most recent version of hr . Suppose some call to apply(1 ) finishes
before a call to apply(2 ) starts. Then 1 is contained in some hr when
apply(1 ) finishes, and since 2 can only enter h by being appended at the
end, we get 1 linearized before 2 .
Finally, we need to show termination. The algorithm is written with a
2
3
5
6
7
8
9
10
11
12
13
14
procedure apply()
// announce my intended operation
op[i]
while true do
// find a recent round
r maxj round[j]
// obtain the history as of that round
if hr = then
hr consensus(c[r], )
if hr then
return value returns in hr
// else attempt to advance
h0 hr
for each j do
if op[j] 6 h0 then
append op[j] to h0
hr+1 consensus(c[r + 1], h0 )
round[i] r + 1
Algorithm 18.2: A universal construction based on consensus
151
152
loop, so in principle it could run forever. But we can argue that no process
after executes the loop more than twice. The reason is that a process p puts
its operation in op[p] before it calculates r; so any process that writes r0 > r
to round sees ps operation before the next round. It follows that ps value
gets included in the history no later than round r + 2. (Well see this sort
of thing again when we do atomic snapshots in Chapter 19.)
Building a consistent shared history is easier with some particular objects
that solve consensus. For example, a fetch-and-cons object that supplies
an operation that pushes a new head onto a linked list and returns the old
head trivially implements the common history above without the need for
helping. One way to implement fetch-and-cons is with a swap object; to
add a new element to the list, create a cell with its next pointer pointing to
itself, then swap the next field with the head pointer for the entire list.
The solutions weve described here have a number of deficiencies that
make them impractical in a real system (even more so than many of the
algorithms weve described). If we store entire histories in a register, the
register will need to be very, very wide. If we store entire histories as a linked
list, it will take an unbounded amount of time to read the list. For solutions
to these problems, see [AW04, 15.3] or the papers of Herlihy [Her91b] and
Plotkin [Plo89].
Chapter 19
Atomic snapshots
Weve seen in the previous chapter that there are a lot of things we cant
make wait-free with just registers. But there are a lot of things we can.
Atomic snapshots are a tool that let us do a lot of these things easily.
An atomic snapshot object acts like a collection of n single-writer
multi-reader atomic registers with a special snapshot operation that returns
(what appears to be) the state of all n registers at the same time. This is
easy without failures: we simply lock the whole register file, read them all,
and unlock them to let all the starving writers in. But it gets harder if
we want a protocol that is wait-free, where any process can finish its own
snapshot or write even if all the others lock up.
Well give the usual sketchy description of a couple of snapshot algorithms. More details on early snapshot results can be found in [AW04,
10.3] or [Lyn96, 13.3]. There is also a reasonably recent survey by Fich
on upper and lower bounds for the problem [Fic05].
19.1
Lets tag any value written with a sequence number, so that each value
written has a seqno field attached to it that increases over time. We can
now detect if a new write has occurred between two reads of the same
variable. Suppose now that we repeatedly perform collectsreads of all
n registersuntil two successive collects return exactly the same vector of
values and sequence numbers. We can then conclude that precisely these
values were present in the registers at some time in between the two collects.
This gives us a very simple algorithm for snapshot. Unfortunately, it doesnt
153
154
terminate if there are a lot of writers around.1 So we need some way to slow
the writers down, or at least get them to do snapshots for us.
19.2
This is the approach taken by Afek and his five illustrious co-authors [AAD+ 93]
(see also [AW04, 10.3] or [Lyn96, 13.3.2]): before a process can write to
its register, it first has to complete a snapshot and leave the results behind
with its write.2 This means that if some slow process (including a slow
writer, since now writers need to do snapshots too) is prevented from doing
the two-collect snapshot because too much writing is going on, eventually
it can just grab and return some pre-packaged snapshot gathered by one of
the many successful writers.
Specifically, if a process executing a single snapshot operation sees
values written by a single process i with three different sequence numbers
s1 , s2 and s3 , then it can be assured that the snapshot 3 gathered with
sequence number s3 started no earlier than s2 was written (and thus no
earlier than started, since read s1 after it started) and ended no later
than ended (because saw it). It follows that the snapshot can safely
return 3 , since that represents the value of the registers at some time inside
3 s interval, which is contained completely within s interval.
So a snapshot repeatedly does collects until either (a) it gets two identical
collects, in which case it can return the results (a direct scan, or (b) it sees
three different values from the same process, in which case it can take the
snapshot collected by the second write (an indirect scan). See pseudocode
in Algorithm 19.1.
Amazingly, despite the fact that updates keep coming and everybody is
trying to do snapshots all the time, a snapshot operation of a single process
is guaranteed to terminate after at most n + 1 collects. The reason is that
1
This isnt always a problem, since there may be external factors that keep the writers
from showing up too much. Maurice Herlihy and I got away with using exactly this
snapshot algorithm in an ancient, pre-snapshot paper on randomized consensus [AH90a].
2
The algorithm is usually called the AADGMS algorithm by people who can remember
all the namesor at least the initialsof the team of superheroes who came up with it
(Afek, Attiya, Dolev, Gafni, Merritt, and Shavit) and Gang of Six by people who cant.
Historically, this was one of three independent solutions to the problem that appeared at
about the same time; a similar algorithm for composite registers was given by James
Anderson [And94] and a somewhat different algorithm for consistent scan was given
by Aspnes and Herlihy [AH90b]. The Afek et al. algorithm had the advantage of using
bounded registers (in its full version), and so it and its name for atomic snapshot prevailed
over its competitors.
155
in order to prevent case (a) from holding, the adversary has to supply at
least one new value in each collect after the first. But it can only supply one
new value for each of the n 1 processes that arent doing collects before
case (b) is triggered (its triggered by the first process that shows up with
a second new value). Adding up all the collects gives 1 + (n 1) + 1 =
n + 1 collects before one of the cases holds. Since each collect takes n 1
read operations (assuming the process is smart enough not to read its own
register), a snapshot operation terminates after at most n2 1 reads.
1
2
3
4
5
6
7
8
9
10
11
12
13
else
// Nothing useful, try again
previous s
19.2.1
Linearizability
We now need to argue that the snapshot vectors returned by the Afek et al.
algorithm really work, that is, that between each matching invoke-snapshot
and respond-snapshot there was some actual time where the registers in
the array contained precisely the values returned in the respond-snapshot
156
action. We do so by assigning a linearization point to each snapshot vector, a time at which it appears in the registers (which for correctness of the
protocol had better lie within the interval between the snapshot invocation
and response). For snapshots obtained through case (a), take any time between the two collects. For snapshots obtained through case (b), take the
serialization point already assigned to the snapshot vector provided by the
third write. In the latter case we argue by induction on termination times
that the linearization point lies inside the snapshots interval.
Note that this means that all snapshots were ultimately collected by two
successive collects returning identical values, since any case-(b) snapshot
sits on top of a finite regression of case-(b) snapshots that must end with
a case-(a) snapshot. In practice what this means is that if there are many
writers, eventually all of them will stall waiting for a case-(a) snapshot to
complete, which happens because all the writers are stuck. So effectively
the process of requiring writers to do snapshots first almost gives us a form
of locking, but without the vulnerability to failures of a real lock. (In fact,
crash failures just mean that there are fewer writers to screw things up,
allowing snapshots to finish faster.)
19.2.2
The simple version of the Afek et al. algorithm requires unbounded registers
(since sequence numbers may grow forever). One of the reasons why this
algorithm required so many smart people was to get rid of this assumption:
the paper describes a (rather elaborate) mechanism for recycling sequence
numbers that prevents unbounded growth (see also [Lyn96, 13.3.3]). In
practice, unbounded registers are probably not really an issue once one has
accepted very large registers, but getting rid of them is an interesting theoretical problem.
It turns out that with a little cleverness we can drop the sequence numbers entirely. The idea is that we just need a mechanism to detect when
somebody has done a lot of writes while a snapshot is in progress. A naive
approach would be to have sequence numbers wrap around mod m for some
small constant modulus m; this fails because if enough snapshots happen
between two of my collects, I may notice none of them because all the sequence numbers wrapped around all the way. But we can augment mod-m
sequence numbers with a second handshaking mechanism that detects when
a large enough number of snapshots have occurred; this acts like the guard
bit on an automobile odometer, than signals when the odometer has overflowed to prevent odometer fraud by just running the odometer forward an
157
158
159
value. In either case p returns the value of pair of adjacent collects with
no changes between them that occurred during the execution of its scan
operation, which gives us linearizability.
19.3
The Afek et al. algorithm and its contemporaries all require O(n2 ) operations for each snapshot. It is possible to get this bound down to O(n) using
a more clever algorithm, [IMCT94] which is the best we can reasonably hope
for in the worst case given that (a) even a collect (which doesnt guarantee
anything about linearizability) requires (n) operations when implemented
in the obvious way, and (b) there is a linear lower bound, due to Jayanti,
Tan, and Toueg [JTT00], on a large class of wait-free objects that includes
snapshot.3
The first step, due to Attiya, Herlihy, and Rachman [AHR95], is a reduction to a related problem called lattice agreement.
19.3.1
Lattice agreement
But see 21.5 for a faster alternative if we allow either randomization or limits on the
number of times the array is updated.
160
For the snapshot algorithm, we also demand wait-freedom: each process terminates after a bounded number of its own steps, even if other processes fail.
Note that if we are really picky, we can observe that we dont actually
need meets; a semi-lattice that provides only joins is enough. In practice
we almost always end up with a full-blown lattice, because (a) we are working
with finite sets, and (b) we generally want to include a bottom element
that is less than all the other elements, to represent the empty state of
our data structure. But any finite join-semi-lattice with a bottom element
turns out to be a lattice, since we can define x y as the join of all elements
z such that z x and z y. We dont use the fact that we are in a lattice
anywhere, but it does save us two syllables not to have to say semi-lattice
agreement.
19.3.2
The first step in reducing snapshot to lattice agreement is to have each writer
generates a sequence of increasing timestamps r1 , r2 , . . . , and a snapshot
corresponds to some vector of timestamps [t1 , t2 . . . tn ], where ti indicates
the most recent write by pi that is included in the snapshot (in other words,
we are using vector clocks again; see 12.2.3). Now define v v 0 if vi vi0
for all i; the resulting partial order is a lattice, and in particular we can
compute x y by the rule (x y)i = xi yi .
Suppose now that we have a bunch of snapshots that satisfy the comparability requirement; i.e., they are totally ordered. Then we can construct a
sequential execution by ordering the snapshots in increasing order with each
update operation placed before the first snapshot that includes it. This sequential execution is not necessarily a linearization of the original execution,
and a single lattice agreement object wont support more than one operation for each process, but the idea is that we can nonetheless use lattice
agreement objects to enforce comparability between concurrent executions
of snapshot, while doing some other tricks (exploiting, among other things,
the validity properties of the lattice agreement objects) to get linearizability
over the full execution.
19.3.3
161
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
procedure scan()
// First attempt
Ri r max(R1 . . . Rn , Ri + 1)
collect read(S1 . . . Sn )
view LAr (collect)
if max(R1 . . . Rn ) > Ri then
// Fall through to second attempt
else
Vir view
return Vir
// Second attempt
Ri r max(R1 . . . Rn , Ri + 1)
collect read(S1 . . . Sn )
view LAr (collect)
if max(R1 . . . Rn ) > Ri then
Vir some nonempty Vjr
return Vir
else
Vir view
returnVir
Algorithm 19.2: Lattice agreement snapshot
162
than once; if the same thing happens on my second attempt, I can use an
indirect view as in [AAD+ 93], knowing that it is safe to do so because any
collect that went into this indirect view started after I did.
The update operation is the usual update-and-scan procedure; for completeness this is given as Algorithm 19.3. To make it easier to reason about
the algorithm, we assume that an update returns the result of the embedded
scan.
1
2
3
19.3.4
163
Suppose some process i returns a direct view; that is, it sees no higher
round number in either its first attempt or its second attempt. Then at
the time it starts checking the round number in Line 5 or 12, no process
has yet written a round number higher than the round number of is view
(otherwise i would have seen it). So no process with a higher round number
has yet executed the corresponding collect operation. When such a process
does so, it obtains values that are at least as current as those fed into LAr ,
and is round-r view is less than or equal to the vector of these values by
upward validity of LAr and thus less than or equal to the vector of values
returned by LAr0 for r0 > r by upward validity. So we have comparability
of all direct views, which implies comparability of all indirect views as well.
To show that each view returned by scan includes the preceding update,
we observe that either a process returns its first-try scan (which includes
the update by downward validity) or it returns the results of a scan in the
second-try round (which includes the update by downward validity in the
later round, since any collect in the second-try round starts after the update
occurs). So no updates are missed.
Now lets consider two scan operations 1 and 2 where 1 precedes 2
in the execution. We want to show that, for the views v1 and v2 that these
scans return, v1 v2 . From the comparability property, the only way this
can fail is if v2 < v1 ; that is, there is some update included in v2 that is
not included in v1 . But this cant happen; if 2 starts after 1 finishes, it
starts after any update 1 sees is already in one of the Sj registers, and so
2 will include this update in its initial collect. (Slightly more formally, if s
is the contents of the registers at some time between when 1 finishes and
2 starts, then v1 s by upward validity and s v2 by downward validity
of the appropriate LA objects.)
19.3.5
There are several known algorithms for implementing lattice agreement, including the original algorithm of Attiya, Herlihy, and Rachman [AHR95] and
an adaptive algorithm of Attiya and Fouren [AF01]. The best of them (assuming multi-writer registers) is Inoue et al.s linear-time lattice agreement
protocol [IMCT94].
The intuition behind this protocol is to implement lattice agreement
using divide-and-conquer. The processes are organized into a tree, with
each leaf in the tree corresponding to some processs input. Internal nodes
of the tree hold data structures that will report increasingly large subsets
of the inputs under them as they become available. At each internal node,
164
165
5
6
7
8
9
10
11
procedure WriteSet(S)
for i |S| down to 1 do
a[i] S
procedure ReadSet()
// update p to last nonempty position
while true do
s a[p]
if p = m or a[p + 1] = then
break
else
pp+1
return s
Algorithm 19.4: Increasing set data structure
Naively, one might think that we could just write directly to a[|S|] and
skip the previous ones, but this makes it harder for a reader to detect that
166
19.4
167
19.4.1
168
procedure scan()
currSeq currSeq + 1
for j 0 to n 1 do
h memory[j].high
if h.seq < currSeq then
view[j] h.value
else
view[j] memory[j].low.value
Algorithm 19.5: Single-scanner snapshot: scan
procedure update()
seq currSeq
h memory[i].high
if h.seq 6= seq then
memory[i].low h
memory[i].high (value, seq)
Algorithm 19.6: Single-scanner snapshot: update
169
170
19.4.2
19.5
Applications
19.5.1
171
19.5.2
19.5.3
172
operations x and y where y overwrites x, y overwrites x in any configuration. But there may be objects with dynamic ordering, where y overwrites
x in some configuration, x overwrites y in another, and perhaps even the
two operations commute in yet another. This prevents us from achieving
consensus, but also breaks the tie-breaking technique. So it may be possible
that there are objects with consensus number 1 and no-return updates that
we still cant implement using only registers.
Chapter 20
Lower bounds on
perturbable objects
Being able to do snapshots in linear time means that we can build linearizable counters, generalized counters, max registers, etc. in linear time, by
having each reader take a snapshot and combine the contributions of each
updater using the appropriate commutative and associative operation. A
natural question is whether we can do better by exploiting the particular
features of these objects.
Unfortunately, the Jayanti-Tan-Toueg [JTT00] lower bound for perturbable objects says each of these objects requires n 1 space and n 1
steps for a read operation in the worst case, for any solo-terminating implementation from historyless objects.1
Here perturbable means that the object has a particular property that
makes the proof work, essentially that the outcome of certain special executions can be changed by stuffing lots of extra update operations in the
middle (see below for details). Solo-terminating means that a process
finishes its current operation in a finite number of steps if no other process
takes steps in between; it is a much weaker condition, for example, than
wait-freedom. Historyless objects are those for which any operation that
changes the state overwrites all previous operations (i.e., those for which
covering arguments work, as long as the covering processes never report
back what they say). Atomic registers are the typical example, while swap
objects (with a swap operation that writes a new state while returning the
old state) are the canonical example since they can implement any other
1
A caveat is that we may be able to make almost all read operations cheaper, although
we wont be able to do anything about the space bound. See Chapter 21.
173
Chapter 21
Restricted-use objects
Here we are describing work by Aspnes, Attiya, and Censor [AAC09], plus
some extensions by Aspnes et al. [AACHE12] and Aspnes and CensorHillel [ACH13]. The idea is to place restrictions on the size of objects that
would otherwise be subject to the Jayanti-Tan-Toueg bound [JTT00] (see
Chapter 20), in order to get cheap implementations.
The central object that is considered in this work is a max register,
for which read operation returns the largest value previously written, as
opposed to the last value previously written. So after writes of 0, 3, 5, 2, 6,
11, 7, 1, 9, a read operation will return 11.
These are perturbable objects in the sense of the Jayanti-Tan-Toueg
bound, so in the worst case a max-register read will have to read at least
n1 distinct atomic registers, giving an n1 lower bound on both individual
work and space. But we can get around this by considering bounded max
registers (which only hold values in some range 0 . . . m 1); these are not
perturbable because once one hits its upper bound we can no longer insert
new operations to change the value returned by a read.
21.1
For m = 1, the implementation is trivial: write does nothing and read always
returns 0.
For larger m, well show how to paste together two max registers left and
right with m0 and m1 values together to get a max register r with m0 + m1
values. Well think of each value stored in the max register as a bit-vector,
with bit-vectors ordered lexicographically. In addition to left and right, we
will need a 1-bit atomic register switch used to choose between them. The
176
177
procedure read(r)
if switch = 0 then
return 0(read(left))
else
return 1(read(right))
Algorithm 21.1: Max register read operation
For write operations, we have two somewhat asymmetrical cases depending on whether the value we are writing starts with a 0 bit or a 1 bit. These
are shown in Algorithm 21.2.
1
2
3
4
5
6
The intuition is that the max register is really a big tree of switch variables, and we store a particular bit-vector in the max register by setting to 1
the switches needed to make read follow the path corresponding to that bitvector. The procedure for writing 0x tests switch first, because once switch
gets set to 1, any 0x values are smaller than the largest value, and we dont
want them getting written to left where they might confuse particularly slow
readers into returning a value we cant linearize. The procedure for writing
1x sets switch second, because (a) it doesnt need to test switch, since 1x
always beats 0x, and (b) its not safe to send a reader down into right until
some value has actually been written there.
Its easy to see that read and write operations both require exactly
one operation per bit of the value read or written. To show that we get
linearizability, we give an explicit linearization ordering (see the paper for a
full proof that this works):
178
21.2
If we structure our max register as a balanced tree of depth k, we are essentially encoding the values 0 . . . 2k 1 in binary, and the cost of performing a
read or write operation on an m-valued register is exactly k = dlg me. But
if we are willing to build an unbalanced tree, any prefix code will work.
The paper describes a method of building a max register where the cost
of each operation that writes or reads a value v is O(log v). The essential
idea is to build a tree consisting of a rightward path with increasingly large
left subtrees hanging off of it, where each of these left subtrees is twice as big
as the previous. This means that after following a path encoded as 1k 0, we
hit a 2k -valued max register. The value returned after reading some v 0 from
this max register is v 0 + (2k 1), where the 2k 1 term takes into account
179
all the values represented by earlier max registers in the chain. Formally,
this is equivalent to encoding values using an Elias gamma code, tweaked
slightly by changing the prefixes from 0k 1 to 1k 0 to get the ordering right.
21.3
21.4
Lower bound
The min(dlg me , n 1) cost of a max register read turns out to be exactly optimal. Intuitively, we can show by a covering argument that once
some process attempts to write to a particular atomic register, then any
subsequent writes convey no additional information (because they can be
overwritten by the first delayed write)so in effect, no algorithm can use
get more than one bit of information out of each atomic register.
For the lower bound proof, we consider solo-terminating executions in
which n 1 writers do any number of max-register writes in some initial
prefix , followed by a single max-register read by process pn . Let T (m, n)
be the optimal reader cost for executions with this structure with m values,
and let r be the first register read by process pn , assuming it is running an
algorithm optimized for this class of executions (we do not even require it
to be correct for other executions).
We are now going split up our set of values based on which will cause
a write to write to r. Let Sk be the set of all sequences of writes that only
180
write values k. Let t be the smallest value such that some execution in
St writes to r (there must be some such t, or our reader can omit reading r,
which contradicts the assumption that it is optimal).
Case 1 Since t is smallest, no execution in St1 writes to r. If we restrict
writes to values t 1, we can omit reading r, giving T (t, n)
T (m, n) 1 or T (m, n) T (t, n) + 1.
Case 2 Let be some execution in St that writes to r.
Split as 0 where is the first write to r by some process pi .
Construct a new execution 0 by letting all the max-register
writes except the one performing finish.
Now consider any execution 0 , where is any sequence of
max-register writes with values t that excludes pi and pn . Then
pn always sees the same value in r following these executions, but
otherwise (starting after 0 ) we have an (n 1)-process maxregister with values t through m 1.
Omit the read of r again to get T (m, n) T (m t, n 1) + 1.
Weve shown the recurrence T (m, n) mint (max(T (t, n), T (mt, n)))+
1, with base cases T (1, n) = 0 and T (m, 1) = 0. The solution to this recurrence is exactly min(dlg me , n 1), with is the same, except for a constant
factor on n, as the upper bound we got by choosing between a balanced
tree for small m and a snapshot for m 2n1 . For small m, the recursive
split we get is also the same as in the tree-based algorithm: call the r register switch and you can extract a tree from whatever algorithm somebody
gives you. So this says that the tree-based algorithm is (up to choice of the
tree) essentially the unique optimal bounded max register implementation
for m 2n1 .
It is also possible to show lower bounds on randomized implementations
of max registers and other restricted-use objects. See [AAC09, AACHH12]
for examples.
21.5
Max-register snapshots
181
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
procedure write(a, i, v)
if i = 0 then
if v < k1 then
if a.switch = 0 then
write(a.left, 0, v)
else
write(a.right, 0, v k1 )
a.switch 1
else
write(a.tail, v)
procedure read(a)
x read(a.tail)
if a.switch = 0 then
write(a.left, 1, x)
return read(a.left)
else
x read(a.tail)
write(a.right, 1, x)
return hk1 , 0i + read(a.right)
182
21.5.1
183
Linearizability
In broad outline, the proof of linearizability follows the proof for a simple
max register. But as with snapshots, we have to show that the ordering of
the head and tail components are consistent.
The key observation is the following lemma.
Lemma 21.5.1. Fix some execution of a max array a implemented as in
Algorithm 21.3. Suppose this execution contains a read(a) operation left
that returns vleft from a.left and a read(a) operation right that returns vright
from a.right. Then vleft [1] vright [1].
Proof. Both vleft [1] and vright [1] are values that were previously written to
their respective max arrays by read(a) operations (such writes necessarily exist because any process that reads a.left or a.right writes a.left[1] or
a.right[1] first). From examining the code, we have that any value written
to a.left[1] was read from a.tail before a.switch was set to 1, while any value
written to a.right[1] was read from a.tail after a.switch was set to 1. Since
max-register reads are non-decreasing, we have than any value written to
a.left[1] is less than or equal to any value written to a.right[1], proving the
claim.
The rest of the proof is tedious but straightforward: we linearize the
read(a) and write(a[0]) operations as in the max-register proof, then fit
the write(a[1]) operations in based on the tail values of the reads. The full
result is:
Theorem 21.5.2. If a.left and a.right are linearizable max arrays, and a.tail
is a linearizable max register, then Algorithm 21.3 implements a linearizable
max array.
Its worth noting that the same unbalanced-tree construction used in
21.2 and 21.3 can be used here as well; this gives a cost of O(min(log v, n))
for writes and O(min(log v[0], n) min(log v[1], n)) for reads, where v is the
value written or read.
21.5.2
184
it is the root. The pointers themselves are non-decreasing indices into arrays of values that consist of ordinary (although possibly very wide) atomic
registers.
When a process writes a new value to its component of the snapshot
object, it increases the pointer value in its leaf and then propagates the
new value up the tree by combining together partial snapshots at each step,
using 2-component max arrays to ensure linearizability. The resulting algorithm is similar in many ways to the lattice agreement procedure of Inoue et
al. [IMCT94] (see 19.3.5), except that it uses a more contention-tolerant
snapshot algorithm than double collects and we allow processes to update
their values more than once. It is also similar to some constructions of
Jayanti [Jay02] for efficient computation of array aggregates (sum, min,
max, etc.) using LL/SC, the main difference being that because the index
values are non-decreasing, max arrays can substitute for LL/SC.
Each node in the tree except the root is represented by one component
of a 2-component max array that we can think of as being owned by its
parent, with the other component being the nodes sibling in the tree. To
propagate a value up the tree, at each level the process takes a snapshot
of the two children of the node and writes the sum of the indices to the
nodes component in its parents max array (or to an ordinary max register
if we are at the root). Before doing this last write, a process will combine
the partial snapshots from the two child nodes and write the result into
a separate array indexed by the sum. In this way any process that reads
the nodes component can obtain the corresponding partial snapshot in a
single register operation. At the root this means that the cost of obtaining
a complete snapshot is dominated by the cost of the max-register read, at
O(log v), where v is the number of updates ever performed.
A picture of this structure, adapted from [AACHE12], appears in Figure 21.1. The figure depicts an update in progress, with red values being the
new values written as part of the update. Only some of the tables associated
with the nodes are shown.
The cost of an update is dominated by the O(log n) max-array operations
needed to propagate the new value to the root. This takes O(log2 v log n)
steps.
The linearizability proof is trivial: linearize each update by the time at
which a snapshot containing its value is written to the root (which necessarily
occurs within the interval of the update, since we dont let an update finish
until it has propagated its value to the top), and linearize reads by when they
read the root. This immediately gives us an O(log3 n) implementation
as long as we only want to use it polynomially many timesof anything
5
0
0
5
3
0
c
b
a
ms
mr
m
3
1
185
2
s
r
Chapter 22
Common2
The common2 class, defined by Afek, Weisberger, and Weisman [AWW93]
consists of all read-modify-write objects where the modify functions either
(a) all commute with each other or (b) all overwrite each other. We can
think of it as the union of two simpler classes, the set of read-modifywrite objects where all update operations commute, called commuting
objects [AW99]; and the set of read-modify-write objects where all updates produce a value that doesnt depend on the previous state, called
historyless objects [FHS98]).
From 18.1.2, we know that both commuting objects and historyless
objects have consensus number at most 2, and that these objects have consensus number exactly 2 provided they supply at least one non-trivial update
operation. The main result of Afek et al. [AWW93] is that commuting and
historyless objects can all be implemented from any object with consensus number 2, even in systems with more than 2 processes. This gives a
completeness result analogous to completeness results in complexity theory: any non-trivial common2 object can be used to implement any other
common2 object.
The main result in the paper has two parts, reflecting the two parts of
the common2 class: a proof that 2-process consensus plus registers is enough
to implement all commuting objects (which essentially comes down to build
a generalized fetch-and-add that returns an unordered list of all preceding
operations); and a proof that 2-process consensus plus registers is enough
to implement all overwriting objects (which is equivalent to showing that
we can implement swap objects). The construction of the generalized fetchand-add is pretty nasty, so well concentrate on the implementation of swap
objects, limiting ourselves specifically to construction of single-use swap. For
186
187
22.1
procedure TAS2()
if Consensus2(myId) = myId then
return 0
else
return 1
procedure swap(v)
a[myId] = v
if TAS2() = 0 then
return
else
return a[myId]
Algorithm 22.2: Two-process one-shot swap from TAS
22.2
To turn the TAS2 into full-blown n-process TAS, start by staging a tournament along the lines of [PF77] (17.4.1.2). Each process walks up a tree of
nodes, and at each node it attempts to beat every process from the other
188
subtree using a TAS2 object (we cant just have it fight one process, because
we dont know which other process will have won the other subtree). A
process drops out if it ever sees a 1. We can easily show that at most one
process leaves each subtree with all zeros, including the whole tree itself.
Unfortunately, this process does not give a linearizable test-and-set object. It is possible that p1 loses early to p2 , but then p3 starts (elsewhere
in the tree) after p1 finishes, and races to the top, beating out p2 . To avoid
this, we can follow [AWW93] and add a gate bit that locks out latecomers.1
The resulting construction looks something like Algorithm 22.3. This
gives a slightly different interface that straight TAS; instead of returning 0
for winning and 1 for losing, the algorithm returns for winning and the id
of some process that beats you for losing. Its not hard to see that this gives
a linearizable test-and-set after translating the values back to 0 and 1 (the
trick for linearizability is that any process that wins saw an empty gate, and
so started before any other process finished). It also sorts the processes into
a rooted tree, with each process linearizing after its parent (this latter claim
is a little trickier, but basically comes down to a loser linearizing after the
process that defeated it either on gate or on one of the TAS2 objects).
procedure compete(i)
// check the gate
if gate 6= then
return gate
2
3
gate i
// Do tournament, returning id of whoever I lose to
node leaf for i
while node 6= root do
for each j whose leaf is below sibling of node do
if TAS2(t[i, j]) = 1 then
return j
5
6
7
8
9
node node.parent
10
// I win!
return
11
The original version of this trick is from an earlier paper [AGTV92], where the gate
bit is implemented as an array of single-writer registers.
22.3
189
Here well show how to implement a single-use swap object, where each
process is only allowed to execute a single swap operation. The essential idea
is to explicitly string the processes into a sequence, where each process learns
the identity of the process ahead of it. This sequence gives the linearization
order and allows processes to compute their return values by reading the
input stored by their predecessor.
The algorithm proceeds in asynchronous rounds, with the participants
of each round organized into a tree using the compete procedure from Algorithm 22.3. The winner at round k will attempt to thread itself behind some
process at round k 1, starting with the process it lost to at that round (or
nobody if k = 1). In order for this to work, the round k 1 process must be
locked down to round k 1 (and thread itself behind some other process at
round k1); this is done using a trap object implemented with a 2-process
swap. If the target process escapes by calling the trap object first, it will
leave behind the id of the process it lost to at round k 1, allowing the
round-k winner to try again. If the round-k winner fails to trap anybody, it
will eventually thread itself behind the round-(k 1) winner, who is stuck
at round k 1.
Only those processes that are ancestors of the process that beat the
round-k winner may get trapped in round k 1; everybody else will escape
and try again in a later round.
Pseudocode for the trap object is given in Algorithm 22.4. There are two
operations. The pass operation is called by the process trying to escape;
if it executes first, this process successfully escapes, but leaves behind the
identity of somebody else to try. The block operation locks the target down
so that pass fails. The shared data for a trap t consists of a two-process
swap object t[i, j] for each process i trying to block a process j. A utility
procedure passAll is included that calls pass on all potential blockers until
it fails.
It is not hard to see from the code that Algorithm 22.4 has the desired
properties: if the passer reaches the swap object first, it is not blocked but
leaves behind its value v for the passer; while if the blocker reaches the
object first, it obtains no value but successfully blocks the passer.
The full swap construction is given in Algorithm 22.5.
This just implements the blocking strategy described before, with the
main swap procedure implementing the round structure and the findValue
helper procedure implementing the walk up the tree.
Its not hard to see that when all processes finish the protocol, they will
1
2
3
4
5
6
7
8
9
10
190
procedure block(t, j)
return swap(t[j, i], blocked)
procedure pass(t, j, v)
if swap(t[i, j], v) = blocked then
return false
else
return true
procedure passAll(t, v)
for j 1 to n do
if pass(t, j, v) then return false
11
12
return true
Algorithm 22.4: Trap implementation from [AWW93]
be neatly arranged in a chain with each process except the first obtaining
the value of its predecessor. Slightly less easy to see is that this ordering
will be consistent with the observed execution order, which is necessary for
linearizability. For a proof of linearizability, see the paper.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
procedure findValue(k, t)
if k = 0 then
return
else
repeat
x block(trap[k], t)
if x 6= then t x
until x =
return input[t]
Algorithm 22.5: Single-use swap from [AWW93]
191
Chapter 23
23.1
23.2
History
23.3
23.3.1
Adopt-commit objects
Most known randomized consensus protocols have a round-based structure where we alternative between generating and detecting agreement.
Gafni [Gaf98] proposed adopt-commit protocols as a tool for detecting agreement, and these protocols were later abstracted as adopt-commit
objects [MRRT08, AGGT09]. The version described here is largely taken
from [AE11], which shows bounds on the complexity of adopt-commit objects.
An adopt-commit object supports a single operation, AdoptCommit (u),
where u is an input from a set of m values. The result of this operation is an
output of the form (commit, v) or (adopt, v), where the second component
is a value from this set and the first component is a decision bit that
indicates whether the process should decide value v immediately or adopt it
as its preferred value in later rounds of the protocol.
The requirements for an adopt-commit object are the usual requirements
of validity and termination, plus:
1. Coherence. If the output of some operation is (commit, v), then every
output is either (adopt, v) or (commit, v).
2. Convergence. If all inputs are v, all outputs are (commit, v).
These last two requirement replace the agreement property of consensus.
They are also strictly weaker than consensus, which means that a consensus
object (with all its output labeled commit) is also an adopt-commit object.
The reason we like adopt-commit objects is that they allow the simple
consensus protocol shown in Algorithm 23.1.
1
2
3
4
5
6
7
preference input
for r 1 . . . do
(b, preference) AdoptCommit(AC[r], preference)
if b = commit then
return preference
else
do something to generate a new preference
Algorithm 23.1: Consensus using adopt-commit
The idea is that the adopt-commit takes care of ensuring that once somebody returns a value (after receiving commit), everybody else who doesnt
23.3.2
Conciliators
23.4
Warning: This name has not really caught on in the general theory-of-distributedcomputing community, and so far only appears in papers that have a particular researcher
as a co-author [Asp12a, AE11, Asp12b]. Unfortunately, there doesnt seem to be a better
name for the same object that has caught on. So we are stuck with it for now.
1
2
3
4
5
6
7
8
9
10
23.5
1
2
3
4
5
6
k k+1
return r
Or any adversary dumb enough not to be able to block the write based on how the
coin-flip turned out.
(1 pi )
i=1
t
Y
epi
i=1
= exp
t
X
i=1
e1/4 .
pi
23.6
Sifters
procedure sifter(p, r)
with probability p do
r id
return
else
return r
Algorithm 23.4: A sifter
(23.6.1)
Proof. Let X be the number of survivors after dlg lg ne+ log4/3 (7/) rounds
of sifters, with probabilities tuned as described above. Weve shown that
E [X] 1 + , so E [X 1] . Since X 1 0, from Markovs inequality
we have Pr [X 2] = Pr [X 1 1] E [X 1] /1 .
3
This argument essentially follows the proof of [Asp12a, Theorem 2], which, because
of neglecting to subtract off a 1 at one point, ends up with 8/ instead of 7/.
23.6.1
Sifters were initially designed to be used for test-and-set. For this purpose,
we treat a return value of as keep going and anything else as leave
with value 1. Using O(log log n) rounds of sifters, we can get down to one
process that hasnt left with probability at least 1 logc n for any fixed
constant c. We then need a fall-back TAS to handle the logc n chance that
we get more than one such survivor.
Alistarh and Aspnes [AA11] used the RatRace algorithm of Alistarh et
al. [AAG+ 10] for this purpose. This is an adaptive randomized test-and-set
built from splitters and two-process consensus objects that runs in O(log k)
expected time, where k is the number of processes that access the test-andset; a sketch of this algorithm is given in 24.5.2. If we want to avoid appealing to this algorithm, a somewhat simpler approach is to use an approach
similar to the Lamports fast-path mutual exclusion algorithm (described in
17.4.2): any process that survives the splitters tries to rush to a two-process
TAS at the top of a tree of two-processes TASes by winning a splitter, and
if it doesnt win the splitter, it enters at a leaf and pays O(log n) expected
steps. By setting = 1/ log n, the overall expected cost of this final stage is
O(1).
This algorithm does not guarantee linearizability. I might lose a sifter
early on only to have a later process win all the sifters (say, by writing to
each one) and return 0. A gate bit as in Algorithm 22.3 solves this problem.
The full code is given in Algorithm 23.5.
23.6.2
With some trickery, the sifter mechanism can be adapted to solve consensus,
still in O(log log n) expected individual work [Asp12a]. The main difficulty
is that a process can no longer drop out as soon as it knows that it lost:
it still needs to figure out who won, and possible help that winner over the
finish line.
The basic idea is that when a process p loses a sifter to some other process
q, p will act like a clone of q from that point on. In order to make this work,
each process writes down at the start of the protocol all of the coin-flips it
intends to use to decide whether to read or write at each round of sifting.
Together with its input, these coin-flips make up the processs persona.
In analyzing the progress of the sifter, we count surviving personae (with
multiple copies of the same persona counting as one) instead of surviving
processes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if gate 6= then
return 1
else
gate myId
l
i+1
do
ri
w 6= then
return 1
Pseudocode for this algorithm is given in Algorithm 23.6. Note that the
loop body is essentially the same as the code in Algorithm 23.4, except that
the random choice is replaced by a lookup in persona.chooseWrite.
To show that this works, we need to argue that having multiple copies
of a persona around doesnt change the behavior of the sifter. In each
round, we will call the first process with a given persona p to access ri
the representative of p, and argue that a persona survives round i in
this algorithm precisely when its representative would survive round i in
a corresponding test-and-set sifter with the schedule restricted only to the
representatives.
There are three cases:
1. The representative of p writes. Then at least one copy of p survives.
2. The representative of p reads a null value. Again at least one copy of
p survives.
3. The representative of p reads a non-null value. Then no copy of p
survives: all subsequent reads by processes carrying p also read a nonnull value and discard p, and since no process with p writes, no other
process adopts p.
1
2
procedure conciliator(input)
l
m
Let R = dlog log ne + log4/3 (7/)
11
12
return persona.input
4
5
6
7
8
9
10
23.7
1
2
3
4
5
6
Lemma 23.7.1. In any execution of Algorithm 23.7 with an oblivious adversary and n processes, at least one process stays, and the expected number
of processes that stay is O(log n).
Proof. For the first part, observe that any process that picks the largest
value of r among all processes will survive; since the number of processes is
finite, there is at least one such survivor.
For the second part, let Xi be the number of survivors with r = i. Then
E [Xi ] is bounded by n 2i , since no process survives with r = i without
first choosing r = i. But we can also argue that E [Xi ] 3 for any value of
n, by considering the sequence of write operations in the execution.
Because the adversary is oblivious, the location of these writes is uncorrelated with their ordering. If we assume that the adversary is trying to
maximize the number of survivors, its best strategy is to allow each process
to read immediately after writing, as delaying this read can only increase the
probability that A[r + 1] is nonzero. So in computing Xi , we are counting
the number of writes to A[i] before the first write to A[i + 1]. Lets ignore
all writes to other registers; then the j-th write to either of A[i] or A[i + 1]
has a conditional probability of 2/3 of landing on A[i] and 1/3 on A[i + 1].
We are thus looking at a geometric distribution with parameter 1/3, which
has expectation 3.
min(3, n 2i )
i=1
= 3 lg n + O(1),
because once n 2i drops below 3, the remaining terms form a geometric
series.
Like square root, logarithm is concave, so Jensens inequality applies here
as well. So O(log n) rounds of Algorithm 23.7 reduces us to an expected
constant number of survivors, which can then be fed to RatRace.
With an adaptive adversary, all of the sifter-based test-and-sets fail
badly: in this particular case, an adaptive adversary can sort the processes
in order of increasing write location so that every process survives. The best
known n-process test-and-set for an adaptive adversary is still a tree of 2process randomized test-and-sets, as in the Afek et al. [AWW93] algorithm
described in 22.2. Whether O(log n) expected steps is in fact necessary
is still open (as is the exact complexity of test-and-set with an oblivious
adversary).
23.8
Space bounds
A classic result of Fich, Herlihy, and Shavit [FHS98] shows that ( n) registers are needed to solve consensus even under the very weak requirement of
nondeterministic solo termination, which says that for every reachable
configuration and every process p, there exists some continuation of the execution in which the protocol terminates with only p running. The best known
upper bound is the trivial none single-writer register per processsince
any multi-writer register algorithm can be translated into a single-writer algorithm and (assuming wide enough registers) multiple registers of a single
process can be combined into one.
There has been very little progress in closing the gap between these
two bounds since the original conference version of the FHS paper from
1993, although very recently, Giakkoupis et al. [GHHW13] have shown a
Chapter 24
Renaming
We will start by following the presentation in [AW04, 16.3]. This mostly describes results of the original paper of Attiya et al. [ABND+ 90] that defined
the renaming problem and gave a solution for message-passing; however, its
now more common to treat renaming in the context of shared-memory, so
we will follow Attiya and Welchs translation of these results to a sharedmemory setting.
24.1
Renaming
208
24.2
Performance
This lower bound was further refined by Castaeda and Rajsbaum [CR08], who show
that 2n 2 (but no less!) is possible for certain special values of n; all of these lower
bounds make extensive use of combinatorial topology, so we wont try to present them
here.
209
discussing lower bounds on the namespace follow the approach of Herlihy and
Shavit and quote lower bounds that are generally 2 higher than the minimum
number of names needed for n processes. This requires a certain amount of
translation when comparing these lower bounds with upper bounds, which
use the more natural convention.
24.3
Order-preserving renaming
Before we jump into upper bounds, lets do an easy lower bound from the
Attiya et al. paper [ABND+ 90]. This bound works on a variant of renaming
called order-preserving renaming, where we require that yi < yj whenever xi < xj . Unfortunately, this requires a very large output namespace:
with t failures, any asynchronous algorithm for order-preserving renaming
requires 2t (n t + 1) 1 possible output names. This lower bound applies
regardless of the model, as long as some processes may start after other
processes have already been assigned names.
For the wait-free case, we have t = n 1, and the bound becomes just
n
2 1. This is a simpler case than the general t-failure case, but the essential
idea is the same: if Ive only seen a few of the processes, I need to leave room
for the others.
Theorem 24.3.1. There is no order-preserving renaming algorithm for n
processes using fewer than 2n 1 names.
Proof. By induction on n. For n = 1, we use 21 1 = 1 names; this is the
base case. For larger n, suppose we use m names, and consider an execution
in which one process pn runs to completion first. This consumes one name
yn and leaves k names less than yn and m k 1 names greater than yn . By
setting all the inputs xi for i < n either less than xn or greater than xn , we
can force the remaining processes to choose from the remaining k or mk1
names. Applying the induction hypothesis, this gives k 2n1 1 and
mk1 2n1 1, so m = k+(mk1)+1 2(2n1 1)+1 = 2n 1.
24.4
Deterministic renaming
24.4.1
210
9
10
procedure getName()
s1
while true do
a[i] s
view snapshot(a)
if view[j] = s for some j then
r |{j : view[j] 6= j i}|
s r-th positive integer not in
{view[j] : j 6= i view[j] = }
else
return s
Algorithm 24.1: Wait-free deterministic renaming
The array a holds proposed names for each process (indexed by the
original names), or for processes that have not proposed a name yet. If a
process proposes a name and finds that no other process has proposed the
same name, it takes it; otherwise it chooses a new name by first computing
its rank r among the active processes and then choosing the r-th smallest
name that hasnt been proposed by another process. Because the rank is at
most n and there are at most n 1 names proposed by the other processes,
this always gives proposed names in the range [1 . . . 2n 1]. But it remains
to show that the algorithm satisfies uniqueness and termination.
For uniqueness, consider two process with original names i and j. Suppose that i and j both decide on s. Then i sees a view in which a[i] = s and
a[j] 6= s, after which it no longer updates a[i]. Similarly, j sees a view in
which a[j] = s and a[i] 6= s, after which it no longer updates a[j]. If is view
is obtained first, then j cant see a[i] 6= s, but the same holds if js view is
211
24.4.2
Long-lived renaming
In long-lived renaming a process can release a name for later use by other
processes (or the same process, if it happens to run choose-name again). Now
the bound on the number of names needed is 2k1, where k is the maximum
number of concurrently active processes. Algorithm 24.1 can be converted
to a long-lived renaming algorithm by adding the releaseName procedure
given in Algorithm 24.2. This just erases the processs proposed name, so
that some other process can claim it.
Here the termination requirement is weakened slightly, to say that some
process always makes progress in getName. It may be, however, that there
is some process that never successfully obtains a name, because it keeps
1
2
212
procedure releaseName()
a[i]
Algorithm 24.2: Releasing a name
24.4.3
Moir and Anderson [MA95] give a renaming protocol that is somewhat easier
to understand and doesnt require taking snapshots over huge arrays. A
downside is that the basic version requires k(k + 1)/2 names to handle k
active processes.
24.4.3.1
Splitters
1
2
3
4
5
6
7
8
9
10
11
213
shared data:
atomic register race, big enough to hold an id, initially
atomic register door, big enough to hold a bit, initially open
procedure splitter(id)
race id
if door = closed then
return right
door closed
if race = id then
return stop
else
return down
Algorithm 24.3: Implementation of a splitter
closes the door. Some process writes its id last: this process will see its own
id in race and return stop.
Lemma 24.4.2. If at least one process completes the splitter, at least one
process returns stop or down.
Proof. First observe that if no process ever writes to door, then no process
completes the splitter, because the only way a process can finish the splitter
without writing to door is if it sees closed when it reads door (which must
have been written by some other process). So if at least one process finishes,
at least one process writes to door. Let p be any such process. From the
code, having written door, it has already passed up the chance to return
right; thus it either returns stop or down.
24.4.3.2
Splitters in a grid
214
215
24.4.4
From before, we have an algorithm that will get 2n 1 names for n processes out of N possible processes when run using O(N ) space (for the
enormous snapshots). To turn this into a bounded-space algorithm, run
Moir-Anderson first to get down to (k 2 ) names, then run the previous
algorithm (in (n2 ) space) using these new names as the original names.
Since we didnt prove anything about time complexity of the humongoussnapshot algorithm, we cant say much about the time complexity of this
combined one. Moir and Anderson suggest instead using an O(N k 2 ) algorithm of Borowsky and Gafni to get O(k 4 ) time for the combined algorithm.
This is close to the best known: a later paper by Afek and Merritt [AM99]
216
24.4.5
24.5
Randomized renaming
With randomization, we can beat both the 2k 1 lower bound on the size of
the output namespace from [HS99] and the (k) lower bound on individual
work from [AAGG11], achieving strong renaming with O(log k) expected
individual work [AACH+ 11].
The basic idea is that we can use randomization for load balancing,
where we avoid the problem of having an army of processes marching together with only a few peeling off at a time (as in splitter networks) by
having the processes split up based on random choices. For example, if each
process generates a random name consisting of 2 dlg ne bits, then it is reasonably likely that every process gets a unique name in a namespace of size
O(n2 ) (we cant hope for less than O(n2 ) because of the birthday paradox). But we want all processes to be guaranteed to have unique names, so
we need some more machinery.
217
We also need the processes to have initial names; if they dont, there
is always some nonzero probability that two identical processes will flip
their coins in exactly the same way and end up with the same name.
This observation was formalized by Buhrman, Panconesi, Silvestri, and
Vitnyi [BPSV06].
24.5.1
Randomized splitters
24.5.2
Subsequent work by Alistarh et al. [AAG+ 10] showed how some of the same
ideas could be used to get strong renaming, where the output namespace has
size exactly n (note this is not adaptive; another result in the same paper
gives adaptive renaming, but its not strong). There are two pieces to this
result: an implementation of randomized test-and-set called RatRace, and
a sampling procedure for getting names called ReShuffle.
The RatRace protocol implements a randomized test-and-set with O(log k)
expected individual work. The essential idea is to use a tree of randomized
splitters to assign names, then have processes walk back up the same tree
2
218
24.5.3
A later paper by Alistarh et al. [AACH+ 11] reduces the cost of renaming
still further, getting O(log k) expected individual step complexity for acquiring a name. The resulting algorithm is both adaptive and strong: with k
processes, only names 1 through k are used. Well describe the non-adaptive
version here.
The basic idea is to build a sorting network out of test-and-sets; the resulting structure, called a renaming network, routes each process through
a sequence of test-and-sets to a unique output wire. Unlike a splitter network, a renaming network uses the stronger properties of test-and-set to
guarantee that (once the dust settles) only the lowest-numbered output wires
are chosen; this gives strong renaming.
24.5.3.1
Sorting networks
219
Renaming networks
To turn a sorting network into a renaming network, we replace the comparators with test-and-set bits, and allow processes to walk through the network
asynchronously. This is similar to an earlier mechanism called a counting
network [AHS94], which used certain special classes of sorting networks as
counters, but here any sorting network works.
Each process starts on a separate input wire, and we maintain the in-
220
variant that at most one process ever traverses a wire. It follows that each
test-and-set bit is only used by two processes. The first process to reach the
test-and-set bit is sent out the lower output, while the second is sent out the
upper output. If we imagine each process that participates in the protocol
as a one and each process that doesnt as a zero, the test-and-set bit acts
as a comparator: if no processes show up on either input (two zeros), no
processes leave (two zeros again); if processes show up on both inputs (two
ones), processes leave on both (two ones again); and if only one process
ever shows up (a zero and a one), it leaves on the bottom output (zero and
one, sorted). Because the original sorting network sorts all the ones to the
bottom output wires, the corresponding renaming network sorts all the processes that arrive to the bottom outputs. Label these outputs starting at 1
at the bottom to get renaming.
Since each test-and-set involves at most two processes, we can carry them
out in O(1) expected register operations using, for example, the protocol of
Tromp and Vitnyi [TV02]. The expected cost for a process to acquire a
name is then O(log n) (using an AKS sorting network). A more complicated
construction in the Alistarh et al. paper shows how to make this adaptive,
giving an expected cost of O(log k) instead.
The use of test-and-sets to route processes to particular names is similar to the line of test-and-sets proposed by Moir and Anderson [MA95] as
described in 24.4.5. Some differences between that protocol and renaming
networks is that renaming networks do not by themselves give fetch-andincrement (although Alistarh et al. show how to build fetch-and-increment
on top of renaming networks at a small additional cost), and renaming networks do not provide any mechanism for releasing names. The question of
whether it is possible to get cheap long-lived strong renaming is still open.
24.5.4
Loose renaming should be easier than strong renaming, and using a randomized algorithm it essentially reduces to randomized load balancing. A basic
approach is to use 2n names, and guard each with a test-and-set; because
less than half of the names are taken at any given time, each process gets a
name after O(1) tries and the most expensive renaming operation over all
n processes takes O(log n) expected steps.
A more sophisticated version of this strategy, which appears in [AAGW13],
uses n(1 + ) output names to get O(log log n) maximum steps. The intuition for why this works is if n processes independently choose one of cn
names uniformly at random, then the expected number of collisionspairs
221
of processes that choose the same nameis n2 /cn, or about n/2c. This
may seem like only a constant-factor improvement, but if we instead look at
the ratio between the survivors n/2c and the number of allocated names cn,
we have now moved from 1/c to 1/2c2 . The 2 gives us some room to reduce
the number of names in the next round, to cn/2, say, while still keeping a
1/c2 ratio of survivors to names.
So the actual renaming algorithm consists of allocating cn/2i names to
round i, and squaring the ratio of survivors to names in each rounds. It only
takes O(log log n) rounds to knock the ratio of survivors to names below 1/n,
so at this point it is likely that all processes will have finished. At the same
time, the sum over all rounds of the allocated names forms a geometric
series, so only O(n) names are needed altogether.
Swept under the carpet here is a lot of careful analysis of the probabilities. Unlike what happens with sifters (see 23.6), Jensens inequality goes
the wrong way here, so some additional technical tricks are needed (see the
paper for details). But the result is that only O(log log n) rounds are to
assign every process a name with high probability, which is the best value
currently known.
There is a rather weak lower bound in the Alistarh et al. paper that
shows that (log log n) steps are needed for some process in the worst case,
under the assumption that the renaming algorithm uses only test-and-set
objects and that a process acquires a name as soon as it wins some test-andset object. This does not give a lower bound on the problem in general, and
indeed the renaming-network based algorithms discussed previously do not
have this property. So the question of the exact complexity of randomized
loose renaming is still open.
Chapter 25
Software transactional
memory
1
Software transactional memory, or STM for short, goes back to
Shavit and Touitou [ST97] based on earlier proposals for hardware support
for transactions by Herlihy and Moss [HM93]. Recently very popular in
programming language circles. Well give a high-level description of the
Shavit and Touitou results; for full details see the actual paper.
We start with the basic idea of a transaction. In a transaction, I read a
bunch of registers and update their values, and all of these operations appear
to be atomic, in the sense that the transaction either happens completely or
not at all, and serializes with other transactions as if each occurred instantaneously. Our goal is to implement this with minimal hardware support,
and use it for everything.
Generally we only consider static transactions where the set of memory locations accessed is known in advance, as opposed to dynamic transactions where it may vary depending on what we read (for example, maybe
we have to follow pointers through some data structure). Static transactions
are easier because we can treat them as multi-word read-modify-write.
Implementations are usually non-blocking: some infinite stream of
transactions succeed, but not necessarily yours. This excludes the simplest method based on acquiring locks, since we have to keep going even if
a lock-holder crashes, but is weaker than wait-freedom since we can have
starvation.
222
25.1
223
Motivation
25.2
Basic approaches
224
25.3
This overhead can be reduced in many cases by sharing components, a subject that
has seen much work in the functional programming literature. See for example [Oka99].
225
also be attached. Its easy to build a 1-register CAS (CAS1) out of this,
though Shavit and Touitou exploit some additional power of LL/SC.
25.3.1
Overlapping LL/SC
if LL(status) = then
if LL(r) = oldValue then
if SC(status, ) = true then
SC(r, newValue)
Algorithm 25.1: Overlapping LL/SC
25.3.2
Representing a transaction
226
transaction, who will be the only process working on the transaction until
it starts acquiring locks.
25.3.3
Executing a transaction
25.3.4
Proof of linearizability
Intuition is:
Linearizability follows from the linearizability of the locking protocol:
acquiring ownership is equivalent to grabbing a lock, and updates occur only when all registers are locked.
227
25.3.5
Proof of non-blockingness
To show that the protocol is non-blocking we must show that if an unbounded number of transactions are attempted, one eventually succeeds.
First observe that in order to fail, a transaction must be blocked by another
transaction that acquired ownership of a higher-address location than it did;
eventually we run out of higher-address locations, so there is some transaction that doesnt fail. Of course, this transaction may not succeed (e.g.,
if its initiator dies), but either (a) it blocks some other transaction, and
that transactions initiator will complete it or die trying, or (b) it blocks no
future transactions. In the second case we can repeat the argument for the
n 1 surviving processes to show that some of them complete transactions,
ignoring the stalled transaction from case (b).
25.4
Improvements
One downside of the Shavit and Touitou protocol is that it uses LL/SC
very aggressively (e.g. with overlapping LL/SC operations) and uses nontrivial (though bounded, if you ignore the ever-increasing version numbers)
amounts of extra space. Subsequent work has aimed at knocking these down;
for example a paper by Harris, Fraser, and Pratt [HFP02] builds multiregister CAS out of single-register CAS with O(1) extra bits per register.
The proof of these later results can be quite involved; Harris et al, for
example, base their algorithm on an implementation of 2-register CAS whose
correctness has been verified only by machine (which may be a plus in some
views).
25.5
228
Limitations
There has been a lot of practical work on STM designed to reduce overhead on real hardware, but theres still a fair bit of overhead. On the
theory side, a lower bound of Attiya, Hillel, and Milani [AHM09] shows that
any STM system that guarantees non-interference between non-overlapping
RMW transactions has the undesirable property of making read-only transactions as expensive as RMW transactions: this conflicts with the stated
goals of many practical STM implementations, where it is assumed that
most transactions will be read-only (and hopefully cheap). So there is quite
a bit of continuing research on finding the right trade-offs.
Chapter 26
Obstruction-freedom
1
The gold standard for shared-memory objects is wait-freedom: I can
finish my operation in a bounded number of steps no matter what anybody
else does. Like the gold standard in real life, this can be overly constraining.
So researchers have developed several weaker progress guarantees that are
nonetheless useful. The main ones are:
Lock-freedom An implementation is lock-free if infinitely many operations finish in any infinite execution. In simpler terms, somebody always makes progress, but maybe not you. (Also called non-blocking.)
Obstruction-freedom An implementation is obstruction-free if, starting from any reachable configuration, any process can finish in a
bounded number of steps if all of the other processes stop. This definition was proposed in 2003 by Herlihy, Luchangco, and Moir [HLM03].
In lower bounds (e.g., the Jayanti-Tan-Toueg bound described in Chapter 20) essentially the same property is often called solo-terminating.
Both of these properties exclude traditional lock-based algorithms, where
some process grabs a lock, updates the data structure, and then release the
lock; if this process halts, no more operations finish. Both properties are
also weaker than wait-freedom. It is not hard to show that lock-freedom is
a stronger condition that obstruction-freedom: given a lock-free implementation, if we can keep some single process running forever in isolation, we
get an infinite execution with only finitely many completed operations. So
we have a hierarchy: wait-free > lock-free > obstruction-free > locking.
229
26.1
230
The pitch is similar to the pitch for building locking algorithms: an obstructionfree algorithm might be simpler to design, implement, and reason about than
a more sophisticated algorithm with stronger properties. Unlike locking algorithms, an obstruction-free algorithm wont fail because some process dies
holding the lock; instead, it fails if more than one process runs the algorithm
at the same time. This possibility may be something we can avoid by building a contention manager, a high-level protocol that detects contention
and delays some processes to avoid it (say, using randomized exponential
back-off).
26.2
Examples
26.2.1
Lock-free implementations
x LL(C)
SC(C, x + 1)
This is lock-free (the only way to prevent a store-conditional from succeeding is if some other store-conditional succeeds, giving infinitely many
successful increments) but not wait-free (I can starve). Its also obstructionfree, but since its already lock-free we dont care about that.
26.2.2
Double-collect snapshots
231
26.2.3
Similar things happen with software transactional memory (see Chapter 25).
Suppose that I have an implementation of multiword compare-and-swap, and
I want to carry out a transaction. I read all the values I need, then execute an
MCAS operation that only updates if these values have not changed. The
resulting algorithm is lock-free (if my transaction fails, its because some
update succeeded). If however I am not very clever and allow some values
to get written outside of transactions, then I might only be obstruction-free.
26.2.4
Obstruction-free test-and-set
232
x0
while true do
x a[1 i]
if = 2 (mod 5) then
return 0
else if = 1 (mod 5) do
return 1
else
x (x + 1) mod 5
a[i] x
1
2
3
4
5
6
7
8
9
10
The worst case is where an increment by my fellow process leaves = 1 just before
my increment.
26.2.5
233
An obstruction-free deque
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
procedure rightPush(v)
while true do
k oracle(right)
prev a[k 1]
next a[k]
if prev.value 6= RN and next.value = RN then
if CAS(a[k 1], prev, [prev.value, prev.version + 1]) then
if CAS(a[k], next, [v, next.version + 1]) then
we win, go home
procedure rightPop()
while true do
k oracle(right)
cur a[k 1]
next a[k]
if cur.value 6= RN and next.value = RN then
if cur.value = LN and A[k 1] = cur then
return empty
else if CAS(a[k], next, [RN, next.version + 1]) do
if CAS(a[k 1], cur, [RN, cur.version + 1]) then
return cur.value
Algorithm 26.2: Obstruction-free deque
234
235
previous values (top, RN) with (top, value) in rightPush or (top, value) with
(top, RN) in rightPop; in either case the operation preserves the invariant.
So the only way we get into trouble is if, for example, a rightPush does a
CAS on a[k 1] (verifying that it is unmodified and incrementing the version
number), but then some other operation changes a[k 1] before the CAS on
a[k]. If this other operation is also a rightPush, we are happy, because it
must have the same value for k (otherwise it would have failed when it saw
a non-null in a[k 1]), and only one of the two right-pushes will succeed
in applying the CAS to a[k]. If the other operation is a rightPop, then it
can only change a[k 1] after updating a[k]; but in this case the update to
a[k] prevents the original right-push from changing a[k]. With some more
tedious effort we can similarly show that any interference from leftPush or
leftPop either causes the interfering operation or the original operation to
fail. This covers 4 of the 16 cases we need to consider. The remaining cases
will be brushed under the carpet to avoid further suffering.
26.3
1
Naturally, having an obstruction-free implementation of some object is
not very helpful if we cant guarantee that some process eventually gets
its unobstructed solo execution. In general, we cant expect to be able
to do this without additional assumptions; for example, if we could, we
could solve consensus using a long sequence of adopt-commit objects with
no randomization at all.2 So we need to make some sort of assumption
about timing, or find somebody else who has already figured out the right
assumption to make.
Those somebodies turn out to be Faith Ellen Fich, Victor Luchangco,
Mark Moir, and Nir Shavit, who give an algorithm for boosting obstructionfreedom to wait-freedom [FLMS05]. The timing assumption is unknownbound semisynchrony, which means that in any execution there is some
maximum ratio R between the shortest and longest time interval between
any two consecutive steps of the same non-faulty process, but the processes
dont know what this ratio is.3 In particular, if I can execute more than R
2
This fact was observed by Herlihy et al. [HLM03] in their original obstruction-free
paper; it also implies that there exists a universal obstruction-free implementation of
anything based on Herlihys universal construction.
3
This is a much older model, which goes back to a famous paper of Dwork, Lynch, and
Stockmeyer [DLS88].
236
steps without you doing anything, I can reasonably conclude that you are
deadthe semisynchrony assumption thus acts as a failure detector.
The fact that R is unknown might seem to be an impediment to using
this failure detector, but we can get around this. The idea is to start with
a small guess for R; if a process is suspected but then wakes up again, we
increment the guess. Eventually, the guessed value is larger than the correct
value, so no live process will be falsely suspected after this point. Formally,
this gives an eventually perfect (P ) failure detector, although the algorithm
does not specifically use the failure detector abstraction.
To arrange for a solo execution, when a process detects a conflict (because its operation didnt finish quickly), it enters into a panic mode where
processes take turns trying to finish unmolested. A fetch-and-increment register is used as a timestamp generator, and only the process with the smallest
timestamp gets to proceed. However, if this process is too sluggish, other
processes may give up and overwrite its low timestamp with , temporarily
ending its turn. If the sluggish process is in fact alive, it can restore its low
timestamp and kill everybody else, allowing it to make progress until some
other process declares it dead again.
The simulation works because eventually the mechanism for detecting
dead processes stops suspecting live ones (using the technique described
above), so the live process with the winning timestamp finishes its operation
without interference. This allows the next process to proceed, and eventually
all live processes complete any operation they start, giving the wait-free
property.
The actual code is in Algorithm 26.3. Its a rather long algorithm but
most of the details are just bookkeeping.
The preamble before entering PANIC mode is a fast-path computation
that allows a process that actually is running in isolation to skip testing
any timestamps or doing any extra work (except for the one register read of
PANIC). The assumption is that the constant B is set high enough that any
process generally will finish its operation in B steps without interference. If
there is interference, then the timestamp-based mechanism kicks in: we grab
a timestamp out of the convenient fetch-and-add register and start slugging
it out with the other processes.
(A side note: while the algorithm as presented in the paper assumes a
fetch-and-add register, any timestamp generator that delivers increasing values over time will work. So if we want to limit ourselves to atomic registers,
we could generate timestamps by taking snapshots of previous timestamps,
adding 1, and appending process ids for tie-breaking.)
Once I have a timestamp, I try to knock all the higher-timestamp pro-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
if PANIC then
execute up to B steps of the underlying algorithm
if we are done then return
PANIC true // enter panic mode
myTimestamp fetchAndIncrement()
A[i] 1 // reset my activity counter
while true do
T [i] myTimestamp
minTimestamp myTimestamp; winner i
for j 1 . . . n, j 6= i do
otherTimestamp T [j]
if otherTimestamp < minTimestamp then
T [winner] // not looking so winning any more
minTimestamp otherTimestamp; winner j
else if otherTimestamp < do
T [j]
if i = winner then
repeat
execute up to B steps of the underlying algorithm
if we are done then
T [i]
PANIC false
return
else
A[i] A[i] + 1
PANIC true
until T [i] =
repeat
a A[winner]
wait a steps
winnerTimestamp T [winner]
until a = A[winner] or winnerTimestamp 6= minTimestamp
if winnerTimestamp = minTimestamp then
T [winner] // kill winner for inactivity
Algorithm 26.3: Obstruction-freedom booster from [FLMS05]
237
238
cesses out of the way (by writing to their timestamp registers). If I see a
smaller timestamp than my own, Ill drop out myself (T [i] ), and fight
on behalf of its owner instead. At the end of the j loop, either Ive decided
I am the winner, in which case I try to finish my operation (periodically
checking T [i] to see if Ive been booted), or Ive decided somebody else is
the winner, in which case I watch them closely and try to shut them down
if they are too slow (T [winner] ). I detect slow processes by inactivity
in A[winner]; similarly, I signal my own activity by incrementing A[i]. The
value in A[i] is also used as an increasing guess for the time between increments of A[i]; eventually this exceeds the R(B + O(1)) operations that I
execute between incrementing it.
We still need to prove that this all works. The essential idea is to show
that whatever process has the lowest timestamp finishes in a bounded number of steps. To do so, we need to show that other processes wont be
fighting it in the underlying algorithm. Call a process active if it is in the
loop guarded by the if i = winner statement. Lemma 1 from the paper
states:
Lemma 26.3.1 ([FLMS05, Lemma 1]). If processes i and j are both active,
then T [i] = or T [j] = .
Proof. Assume without loss of generality that i last set T [i] to myTimestamp
in the main loop after j last set T [j]. In order to reach the active loop, i
must read T [j]. Either T [j] = at this time (and we are done, since only j
can set T [j] < ), or T [j] is greater than is timestamp (or else i wouldnt
think its the winner). In the second case, i sets T [j] = before entering
the active loop, and again the claim holds.
The next step is to show that if there is some process i with a minimum
timestamp that executes infinitely many operations, it increments A[i] infinitely often (thus eventually making the failure detector stop suspecting
it). This gives us Lemma 2 from the paper:
Lemma 26.3.2 ([FLMS05, Lemma 2]). Consider the set of all processes that
execute infinitely many operations without completing an operation. Suppose
this set is non-empty, and let i hold the minimum timestamp of all these
processes. Then i is not active infinitely often.
Proof. Suppose that from some time on, i is active forever, i.e., it never
leaves the active loop. Then T [i] < throughout this interval (or else i
leaves the loop), so for any active j, T [j] = by the preceding lemma. It
follows that any active T [j] leaves the active loop after B + O(1) steps of j
239
(and thus at most R(B + O(1)) steps of i). Can j re-enter? If js timestamp
is less than is, then j will set T [i] = , contradicting our assumption. But
if js timestamp is greater than is, j will not decide its the winner and
will not re-enter the active loop. So now we have i alone in the active loop.
It may still be fighting with processes in the initial fast path, but since i
sets PANIC every time it goes through the loop, and no other process resets
PANIC (since no other process is active), no process enters the fast path after
some bounded number of is steps, and every process in the fast path leaves
after at most R(B + O(1)) of is steps. So eventually i is in the loop alone
foreverand obstruction-freedom means that it finishes its operation and
leaves. This contradicts our initial assumption that i is active forever.
So now we want to argue that our previous assumption that there exists
a bad process that runs forever without winning leads to a contradiction,
by showing that the particular i from Lemma 26.3.2 actually finishes (note
that Lemma 26.3.2 doesnt quite do thiswe only show that i finishes if it
stays active long enough, but maybe it doesnt stay active).
Suppose i is as in Lemma 26.3.2. Then i leaves the active loop infinitely
often. So in particular it increments A[i] infinitely often. After some finite
number of steps, A[i] exceeds the limit R(B +O(1)) on how many steps some
other process can take between increments of A[i]. For each other process j,
either j has a lower timestamp than i, and thus finishes in a finite number of
steps (from the premise of the choice of i), or j has a higher timestamp than
i. Once we have cleared out all the lower-timestamp processes, we follow the
same logic as in the proof of Lemma 26.3.2 to show that eventually (a) i sets
T [i] < and PANIC = true, (b) each remaining j observes T [i] < and
PANIC = true and reaches the waiting loop, (c) all such j wait long enough
(since A[i] is now very big) that i can finish its operation. This contradicts
the assumption that i never finishes the operation and completes the proof.
26.3.1
Cost
If the parameters are badly tuned, the potential cost of this construction is
quite bad. For example, the slow increment process for A[i] means that the
time a process spends in the active loop even after it has defeated all other
processes can be as much as the square of the time it would normally take
to complete an operation aloneand every other process may pay R times
this cost waiting. This can be mitigated to some extent by setting B high
enough that a winning process is likely to finish in its first unmolested pass
through the loop (recall that it doesnt detect that the other processes have
240
reset T [i] until after it makes its attempt to finish). An alternative might
be to double A[i] instead of incrementing it at each pass through the loop.
However, it is worth noting (as the authors do in the paper) that nothing
prevents the underlying algorithm from incorporating its own contention
management scheme to ensure that most operations complete in B steps
and PANIC mode is rarely entered. So we can think of the real function of
the construction as serving as a backstop to some more efficient heuristic
approach that doesnt necessarily guarantee wait-free behavior in the worst
case.
26.4
1
So far we have seen that obstruction-freedom buys us an escape from
the impossibility results that plague wait-free constructions, while still allowing practical implementations of useful objects under plausible timing
assumptions. Yet all is not perfect: it is still possible to show non-trivial
lower bounds on the costs of these implementations in the right model. We
will present one of these lower bounds, the linear-contention lower bound of
Ellen, Hendler, and Shavit [EHS12].4 First we have to define what is meant
by contention.
26.4.1
Contention
241
but got in first. In the original definition, given an execution of the form
A1 2 . . . k A0 , where all operations i are applied to the same object as ,
and the last operation in A is not, then k incurs k memory stalls. Ellen et
al. modify this to only count sequences of non-trivial operations, where an
operation is non-trivial if it changes the state of the object in some states
(e.g., writes, increments, compare-and-swapbut not reads). Note that this
change only strengthens the bound they eventually prove, which shows that
in the worst case, obstruction-free implementations of operations on objects
in a certain class incur a linear number of memory stalls (possibly spread
across multiple base objects).
26.4.2
The class G
242
243
26.4.3
Theorem 26.4.3 ([EHS12, Theorem 5.2]). For any obstruction-free implementation of some object in class G from RMW base objects, there is an
execution in which some operation incurs n 1 stalls.
We cant do better than n 1, because it is easy to come up with implementations of counters (for example) that incur at most n 1 stalls.
Curiously, we can even spread the stalls out in a fairly arbitrary way over
multiple objects, while still incurring at most n 1 stalls. For example, a
counter implemented using a single counter (which is a RMW object) gets
exactly n1 stalls if n1 processes try to increment it at the same time, delaying the remaining process. At the other extreme, a counter implemented
by doing a collect over n 1 single-writer registers (also RMW objects) gets
at least n 1 stallsdistributed as one per registerif each register has a
write delivered to it while the reader waiting to read it during its collect. So
we have to allow for the possibility that stalls are concentrated or scattered
or something in between, as long as the total number adds up at least n 1.
The proof supposes that the theorem is not true and then shows how to
boost an execution with a maximum number k < n1 stalls to an execution
with k+1 stalls, giving a contradiction. (Alternatively, we can read the proof
as giving a mechanism for generating an (n 1)-stall execution by repeated
boosting, starting from the empty execution.)
This is pretty much the usual trick: we assume that there is a class of
bad executions, then look for an extreme member of this class, and show
that it isnt as extreme as we thought. In doing so, we can restrict our
attention to particularly convenient bad executions, so long as the existence
of some bad execution implies the existence of a convenient bad execution.
Formally, the authors define a k-stall execution for process p as an execution E1 . . . i where E and i are sequence of operations such that:
1. p does nothing in E,
2. Sets of processes Sj , j = 1 . . . i, whose union S =
Si
j=1 Sj
has size k,
244
245
satisfying the conditions in the definition. We want to use this fact to shove
at least one more memory stall into E1 . . . i , without breaking any of
the other conditions that would make the resulting execution a (k + k 0 )-stall
execution.
Consider the extension of E where q runs alone until it finishes every
operation in Q. Then applies no nontrivial events to any base object
accessed in 1 . . . k , (from the weird condition on k-stall executions) and
the value of each of these base objects is the same after E and E , and thus
is also the same after E1 . . . k and E 1 . . . k .
Now let 0 be the extension of E 1 . . . k defined analogously to : p
finishes, then each process in each Sj finishes. Let HH 0 factor the linearization of E 1 . . . i 0 . Observe that HH 0 is an interleaving of Q and
the high-level operations in AA0 , that H 0 contains no operations by q (they
all finished in , before started), and that H 0 contains no two operations
by the same process (no new high-level operations start after finishes,
so there is at most one pending operation per process in S that can be
linearized after ).
Now observe that q does some non-trivial operation in to some base
object accessed by p in . If not, then p sees the same responses in 0 and
in , and returns the same value, contradicting the definition of class G.
So does qs operation in cause a stall in ? Not necessarily: there
may be other operations in between. Instead, well use the existence of qs
operation to demonstrate the existence of at least one operation, possibly by
some other process we havent even encountered yet, that does cause a stall.
We do this by considering the set F of all finite extensions of E that are free
of p and S operations, and look for an operation that stalls p somewhere in
this infinitely large haystack.
Let Oi+1 be the first base object accessed by p in that is also accessed
by some non-trivial event in some sequence in F . We will show two things:
first, that Oi+1 exists, and second, that Oi+1 is distinct from the objects
O1 . . . Oi . The first part follows from the fact that is in F , and we have
just shown that contains a non-trivial operation (by q) on a base object
accessed by p in . For the second part, we use the weird condition on
k-stall executions again: since every extension of E in F is ({p} S)-free, no
process applies a non-trivial event to any base object accessed in 1 . . . i ,
which includes all the objects O1 . . . Oi .
Youve probably guessed that we are going to put our stalls in on Oi+1 .
We choose some extension X from F that maximizes the number of processes
with simultaneous pending non-trivial operations on Oi+1 (well call this set
of processes Si+1 and let |Si+1 | be the number k 0 > 0 weve been waiting for),
246
and let E 0 be the minimum prefix of X such that these pending operations
are still pending after EE 0 .
We now look at the properties of EE 0 . We have:
EE 0 is p-free (follows from E being p-free and E 0 F , since everything
in F is p-free).
Each process in Sj has a pending operation on Oj after EE 0 (it did
after E, and didnt do anything in E 0 ).
This means that we can construct an execution EE 0 1 . . . i i+1 that
includes k + k 0 memory stalls, by sending in the same sequences 1 . . . i as
before, then appending a new sequence of events where (a) p does all of its
operations in up to its first operation on Oi+1 ; then (b) all the processes in
the set Si+1 of processes with pending events on Oi+1 execute their pending
events on Oi+1 ; then (c) p does its first access to Oi+1 from . Note that in
addition to giving us k + k 0 memory stalls, i+1 also has the right structure
for a (k + k 0 )-stall execution. But there is one thing missing: we have to
show that the weird condition on further extensions still holds.
Specifically, letting S 0 = SSi+1 , we need to show that any ({p}S 0 )-free
extension of EE 0 includes a non-trivial access to a base object accessed
in 1 . . . i+1 . Observe first that since is ({p} S 0 )-free, then E 0 is
({p} S)-free, and so its in F : so by the weird condition on E1 . . . i , E 0
doesnt have any non-trivial accesses to any object with a non-trivial access
in 1 . . . i . So we only need to squint very closely at i+1 to make sure it
doesnt get any objects in there either.
Recall that i+1 consists of (a) a sequence of accesses by p to objects
already accessed in 1 . . . i (already excluded); (b) an access of p to Oi+1 ;
and (c) a bunch of accesses by processes in Si+1 to Oi+1 . So we only need
to show that includes no non-trivial accesses to Oi+1 . Suppose that it
does: then there is some process that eventually has a pending non-trivial
operation on Oi+1 somewhere in . If we stop after this initial prefix 0 of ,
we get k 0 + 1 processes with pending operations on Oi+1 in EE 0 0 . But then
E 0 0 is an extension of E with k 0 + 1 processes with a simultaneous pending
operation on Oi+1 . This contradicts the choice of X to maximize k 0 . So
if our previous choice was in fact maximal, the weird condition still holds,
and we have just constructed a (k + k 0 )-stall execution. This concludes the
proof.
26.4.4
247
Consequences
Weve just shown that counters and snapshots have (n 1)-stall executions,
because they are in the class G. A further, rather messy argument (given
in the Ellen et al. paper) extends the result to stacks and queues, obtaining
a slightly weaker bound of n total stalls and operations for some process in
the worst case.7 In both cases, we cant expect to get a sublinear worst-case
bound on time under the reasonable assumption that both a memory stall
and an actual operation takes at least one time unit. This puts an inherent
bound on how well we can handle hot spots for many practical objects, and
means that in an asynchronous system, we cant solve contention at the
object level in the worst case (though we may be able to avoid it in our
applications).
But there might be a way out for some restricted classes of objects. We
saw in Chapter 21 that we could escape from the Jayanti-Tan-Toueg [JTT00]
lower bound by considering bounded objects. Something similar may happen here: the Fich-Herlihy-Shavit bound on fetch-and-increments requires
executions with n(n 1)d + n increments to show n 1 stalls for some fetchand-increment if each fetch-and-increment only touches d objects, and even
for d = log n this is already superpolynomial. The max-register construction
of a counter [AAC09] doesnt help here, since everybody hits the switch bit
at the top of the max register, giving n 1 stalls if they all hit it at the
same time. But there might be some better construction that avoids this.
26.4.5
There are many more lower bounds one can prove on lock-free implementations, many of which are based on previous lower bounds for stronger
models. We wont present these in class, but if you are interested, a good
place to start is [AGHK06].
26.5
Practical considerations
Also beyond the scope of what we can do, there is a paper by Fraser and
Harris [FH07] that gives some nice examples of the practical trade-offs in
choosing between multi-register CAS and various forms of software transactional memory in implementing lock-free data structures.
7
This is out of date: Theorem 6.2 of [EHS12] gives a stronger result than whats in
[FHS05].
Chapter 27
BG simulation
The Borowsky-Gafni simulation [BG93], or BG simulation for short, is
a deterministic, wait-free algorithm that allows t+1 processes to collectively
construct a simulated execution of a system of n > t processes of which t may
crash. For both the simulating and simulated system, the underlying sharedmemory primitives are atomic snapshots; these can be replaced by atomic
registers using any standard snapshot algorithm. The main consequence
of the BG simulation is that the question of what decision tasks can be
computed deterministically by an asynchronous shared-memory system that
tolerates t crash failures reduces to the question of what can be computed
by a wait-free system with exactly t + 1 processes. This is an easier problem,
and in principle can be determined exactly using the topological approach
described in Chapter 28.
The intuition for how this works is that the t + 1 simulating processes
solve a sequence of agreement problems to decide what the n simulated
processes are doing; these agreement problems are structured so that the
failure of a simulator stops at most one agreement. So if at most t of the
simulating processes can fail, only t simulated processes get stuck as well.
Well describe here a version of the BG simulation that appears in
a follow-up paper by Borowsky, Gafni, Lynch, and Rajsbaum [BGLR01].
This gives a more rigorous presentation of the mechanisms of the original
Borowsky-Gafni paper, and includes a few simplifications.
27.1
Safe agreement
249
nate only if there are no failures by any process during an initial unsafe
section of its execution. Each process i starts the agreement protocol with a
proposei (v) event for its input value v. At some point during the execution
of the protocol, the process receives a notification safei , followed later (if
the protocol finishes) by a second notification agreei (v 0 ) for some output
value v 0 . It is guaranteed that the protocol terminates as long as all processes continue to take steps until they receive the safe notification, and
that the usual validity (all outputs equal some input) and agreement (all
outputs equal each other) conditions hold. There is also a wait-free progress
condition that the safei notices do eventually arrive for any process that
doesnt fail, no matter what the other processes do (so nobody gets stuck
in their unsafe section).
Pseudocode for a safe agreement object is given in Algorithm 27.1. This
is a translation of the description of the algorithim in [BGLR01], which is
specified at a lower level using I/O automata.
1
2
3
4
6
7
8
// proposei (v)
A[i] hv, ii
if snapshot(A) contains hj, 2i for some j 6= i then
// Back off
A[i] hv, 0i
else
// Advance
A[i] hv, 2i
// safei
repeat
s snapshot(A)
until s does not contain hj, 1i for any j
// agreei
return s[j].value where j is smallest index with s[j].level = 2
Algorithm 27.1: Safe agreement (adapted from [BGLR01])
250
The safei transition occurs when the process leaves level 1 (no matter
which way it goes). This satisfies the progress condition, since there is
no loop before this, and guarantees termination if all processes leave their
unsafe interval, because no process can then wait forever for the last 1 to
disappear.
To show agreement, observe that at least one process advances to level 2
(because the only way a process doesnt is if some other process has already
advanced to level 2), so any process i that terminates observes a snapshot
s that contains at least one level-2 tuple and no level-1 tuples. This means
that any process j whose value is not already at level 2 in s can at worst
reach level 1 after s is taken. But then j sees a level-2 tuples and backs
off. It follows that any other process i0 that takes a later snapshot s0 that
includes no level-1 tuples sees the same level-2 tuples as i, and computes the
same return value. (Validity also holds, for the usual trivial reasons.)
27.2
The basic BG simulation uses a single snapshot object A with t + 1 components (one for each simulating process) and an infinite array of safe agreement objects Sjr , where the output of Sjr represents the value sjr of the
r-th snapshot performed by simulated process j. Each component A[i] of A
is itself a vector of n components A[i][j], each of which is a tuple hv, ri representing the value v that process i determines process j would have written
after taking its r-th snapshot.1
Each simulating process i cycles through all simulated processes j. Simulating one round of a particular process j involves four phases:
1. The process makes an initial guess for sjr by taking a snapshot of A and
taking the value with the largest round number for each component
A[][k].
2. The process initiates the safe agreement protocol Sjr using this guess.
It continues to run Sjr until it leaves the unsafe interval.
1
The underlying assumption is that all simulated processes alternate between taking
snapshots and doing updates. This assumption is not very restrictive, because two snapshots with no intervening update are equivalent to two snapshots separated by an update
that doesnt change anything, and two updates with no intervening snapshot can be replaced by just the second update, since the adversary could choose to schedule them
back-to-back anyway.
251
27.3
Effect of failures
So now what happens if a simulating process i fails? This wont stop any
other process i0 from taking snapshots on behalf of j, or from generating its
own values to put in A[i0 ][j]. What it may do is prevent some safe agreement
object Sjr from terminating. The termination property of Sjr means that
this can only occur if the failure occurs while i is in the unsafe interval for
Sjr but since i is only in the unsafe interval for at most one Sjr at a time,
this stalls only one simulated process j. It doesnt block any i0 , because any
other i0 is guaranteed to leave its own unsafe interval for Sjr after finitely
many steps, and though it may waste some effort waiting for Sjr to finish,
once it is in the safe interval it doesnt actually wait for it before moving on
to other simulated j 0 .
It follows that each failure of a simulating process knocks out at most
one simulated process. So a wait-free system with t + 1 processesand thus
at most t failures in the executions we care aboutwill produces at most t
failures inside the simulation.
27.4
Two details not specified in the description above are how i determines
js initial input and how i determines its own outputs from the outputs
of the simulated processes. For the basic BG simulation, this is pretty
straightforwards: we use the safe agreement objects Sj0 to agree on js
252
input, after each i proposes its own input vector for all j based on its own
input to the simulator protocol. For outputs, i waits for at least n t of the
simulated processes to finish, and computes its own output based on what
it sees.
One issue that arises here is that we can only use the simulation to
solve colorless tasks, which are decision problems where any process can
take the output of any other process without causing trouble.2 This works
for consensus or k-set agreement, but fails pretty badly for renaming. The
extended BG simulation, due to Gafni [Gaf09], solves this problem by
mapping each simulating process p to a specific simulated process qp , and
using a more sophisticated simulation algorithm to guarantee that qp doesnt
crash unless p does. Details can be found in Gafnis paper; there is also a
later paper by Imbs and Raynal [IR09] that simplifies some details of the
construction. Here, we will limit ourselves to the basic BG simulation.
27.5
To show that the simulation works, observe that we can extract a simulated
execution by applying the following rules:
1. The round-r write operation of j is represented by the first write tagged
with round r performed for j.
2. The round-r snapshot operation of j is represented by whichever snapshot operation wins Sjr .
The simulated execution then consists of a sequence of write and snapshot operations, with order of the operations determined by the order of
their representatives in the simulating execution, and the return values of
the snapshots determined by the return values of their representatives.
Because all processes that simulate a write for j in round r use the same
snapshots to compute the state of j, they all write the same value. So
the only way we get into trouble is if the writes included in our simulated
snapshots are inconsistent with the ordering of the simulated operations
defined above. Here the fact that each simulated snapshot corresponds to a
real snapshot makes everything work: when a process performs a snapshot
for Sjr , then it includes all the simulated write operations that happen
2
The term colorless here comes from use of colors to represent process ids in the topological approach described in Chapter 28. These colors arent really colors, but topologists
like coloring nodes better than assigning them ids.
253
before this snapshot, since the s-th write operation by k will be represented
in the snapshot if and only if the first instance of the s-th write operation
by k occurs before it. The only tricky bit is that process is snapshot for
Sjr might include some operations that cant possibly be included in Sjr ,
like js round-r write or some other operation that depends on it. But this
can only occur if some other process finished Sjr before process i takes its
snapshot, in which case is snapshot will not win Sjr and will be discarded.
27.6
Chapter 28
Topological methods
Here well describe some results applying topology to distributed computing,
mostly following a classic paper of Herlihy and Shavit [HS99]. This was one
of several papers [BG93, SZ00] that independently proved lower bounds on
k-set agreement [Cha93], which is a relaxation of consensus where we
require only that there are at most k distinct output values (consensus is
1-set agreement). These lower bounds had failed to succumb to simpler
techniques.
28.1
Basic idea
255
28.2
k-set agreement
The motivating problem for much of this work was getting impossibility
results for k-set agreement, proposed by Chaudhuri [Cha93]. The k-set
agreement problem is similar to consensus, where each process starts with
an input and eventually returns a decision value that must be equal to some
processs input, but the agreement condition is relaxed to require only that
the set of decision values include at most k values.
With k 1 crash failures, its easy to build a k-set agreement algorithm:
wait until you seen n k + 1 input values, then choose the smallest one you
see. This works because any value a process returns is necessarily among
the k smallest input values (including the k 1 it didnt see). Chaudhuri
conjectured that k-set agreement was not solvable with k failures, and gave
a proof of a partial result (analogous to the existence of an initial bivalent
configuration for consensus) based on Sperners Lemma [Spe28]. This is a
classic result in topology that says that certain colorings of the vertices of a
graph in the form of a triangle that has been divided into smaller triangles
necessarily contain a small triangle with three different colors on its corners.
This connection between k-set renaming and Sperners Lemma became the
basic idea behind each the three independent proofs of the conjecture that
appeared shortly thereafter [HS99, BG93, SZ00].
Our plan is to give a sufficient high-level description of the topological approach that the connection between k-set agreement and Sperners
Lemma becomes obvious. It is possible to avoid this by approaching the
problem purely combinatorially, as is done in Section 16.3 of [AW04]. The
presentation there is obtained by starting with a topological argument and
getting rid of the topology (in fact, the proof in [AW04] contains a proof
of Sperners Lemma with the serial numbers filed off). The disadvantage of
this approach is that it obscures what is really going in and makes it harder
256
to obtain insight into how topological techniques might help for other problems. The advantage is that (unlike these notes) the resulting text includes
actual proofs instead of handwaving.
28.3
Topology is the study of properties of shapes that are preserved by continuous functions between their points that have continuous inverses, which get
the rather fancy name of homeomorphisms. A continuous function1 is one
that maps nearby points to nearby points. A homeomorphism is continuous
in both directions: this basically means that you can stretch and twist and
otherwise deform your object however you like, as long as you dont tear
it (which would map nearby points on opposite sides of the tear to distant
points) or glue bits of it together (which turns into tearing when we look
at the inverse function). Topologists are particularly interested in showing
when there is no homeomorphism between two objects; the classic example
is that you cant turn a sphere into a donut without damaging it, but you
can turn a donut into a coffee mug (with a handle).
Working with arbitrary objects embedded in umpteen-dimensional spaces
is messy, so topologists invented a finite way of describing certain wellbehaved objects combinatorially, by replacing ugly continuous objects like
spheres and coffee mugs with simpler objects pasted together in complex
ways. The simpler objects are simplexes, and the more complicated pastedtogether objects are called simplicial complexes. The nifty thing about
simplicial complexes is that they give a convenient tool for describing what
states or outputs of processes in a distributed algorithm are compatible in
some sense, and because topologists know a lot about simplicial complexes,
we can steal their tools to describe distributed algorithms.
28.3.1
Strictly speaking, a continuous function between metric spaces; there is an even more
general definition of continuity that holds for spaces that are too strange to have a consistent notion of distance.
257
258
Example: For 2-process binary consensus with processes 0 and 1, the input complex, which describes all possible combinations of inputs, consists
of the sets
{{}, {p0}, {q0}, {p1}, {q1}, {p0, q0}, {p0, q1}, {p1, q0}, {p1, q1}} ,
which we might draw like this:
p0
q0
q1
p1
q0
q1
p1
One thing to notice about this output complex is that it is not connected: there is no path from the p0q0 component to the q1p1 component.
Here is a simplicial complex describing the possible states of two processes p and q, after each writes 1 to its own bit then reads the other processs
bit. Each node in the picture is labeled by a sequence of process ids. The
first id in the sequence is the process whose view this node represents; any
other process ids are processes this first process sees (by seeing a 1 in the
other processs register). So p is the view of process p running by itself,
while pq is the view of process p running in an execution where it reads qs
register after q writes it.
p
qp
pq
259
The edges express the constraint that if we both write before we read,
then if I dont see your value you must see mine (which is why there is no
pq edge), but all other combinations are possible. Note that this complex
is connected: there is a path between any two points.
Heres a fancier version in which each process writes its input (and remembers it), then reads the other processs register (i.e., a one-round fullinformation protocol). We now have final states that include the processs
own id and input first, then the other processs id and input if it is visible.
For example, p1 means p starts with 1 but sees a null and q0p1 means q
starts with 0 but sees ps 1. The general rule is that two states are compatible if p either sees nothing or qs actual input and similarly for q, and that
at least one of p or q must see the others input. This gives the following
simplicial complex:
p0
q0p0
p0q0
q0
q1p0
p1q0
p0q1
q0p1
q1
p1q1
q1p1
p1
260
pq
p qp pq q
p (qp)p p(qp) qp (pq)(qp) (qp)(pq) pq q(pq) (pq)q q
Here (pq)(qp) is the view of p after seeing pq in the first round and seeing
that q saw qp in the first round.
28.3.2
Subdivisions
In the simple write-then-read protocol above, we saw a single input edge turn
into 3 edges. Topologically, this is an example of a subdivision, where we
represent a simplex using several new simplexes pasted together that cover
exactly the same points.
Certain classes of protocols naturally yield subdivisions of the input
complex. The iterated immediate snapshot (IIS) model, defined by
Borowsky and Gafni [BG97], considers executions made up of a sequence
of rounds (the iterated part) where each round is made up of one or more
mini-rounds in which some subset of the processes all write out their current views to their own registers and then take snapshots of all the registers
(the immediate snapshot part). The two-process protocols of the previous
section are special cases of this model.
Within each round, each process p obtains a view vp that contains the
previous-round views of some subset of the processes. We can represent the
views as a subset of the processes, which we will abbreviate in pictures by
putting the view owner first: pqr will be the view {p, q, r} as seen by p, while
qpr will be the same view as seen by q. The requirements on these views
are that (a) every process sees its own previous view: p vp for all p; (b)
all views are comparable: vp vq or vq vp ; and (c) if I see you, then I see
everything you see: q vp implies vq vp . This last requirement is called
immediacy and follows from the assumption that writes and snapshots are
done in the same mini-round: if I see your write, then your snapshot takes
place no later than mine does.
The IIS model does not correspond exactly to a standard shared-memory
model (or even a standard shared-memory model augmented with cheap
snapshots). There are two reasons for this: standard snapshots dont provide
261
262
qp
rp
qpr
rpq
pq
pr
pqr
qr
rq
263
qp
rp
qpr
rpq
pq
pr
pqr
qr
rq
264
1
3
1
2
28.4
265
We now run into Sperners Lemma [Spe28], which says that, for any
subdivision of a simplex into smaller simplexes, if each corner of the original
simplex has a different color, and each corner that appears on some face of
the original simplex has a color equal to the color of one of the corners of
that face, then within the subdivision there are an odd number of simplexes
whose corners are all colored differently.3
How this applies to k-set agreement: Suppose we have n = k+1 processes
in a wait-free system (corresponding to allowing up to k failures). With
the cooperation of the adversary, we can restrict ourselves to executions
consisting of ` rounds of iterated immediate snapshot for some ` (termination
comes in here to show that ` is finite). This gives a subdivision of a simplex,
where each little simplex corresponds to some particular execution and each
corner some processs view. Color all the corners of the little simplexes in
this subdivision with the output of the process holding the corresponding
view. Validity means that these colors satisfy the requirements of Sperners
Lemma. Sperners Lemma then says that some little simplex has all k + 1
colors, giving us a bad execution with more than k distinct output values.
The general result says that we cant do k-set agreement with k failures
for any n > k. We havent proved this result, but it can be obtained from
the n = k + 1 version using a simulation of k + 1 processes with k failures
by n processes with k failures due to Borowsky and Gafni [BG93].
28.5
266
One thing we could conclude from the fact that the output complex for
consensus was not connected but the ones describing our simple protocols
were was that we cant solve consensus (non-trivially) using these protocols.
The reason is that to solve consensus using such a protocol, we would need
to have a mapping from states to outputs (this is just whatever rule tells
each process what to decide in each state) with the property that if some
collection of states are consistent, then the outputs they are mapped to are
consistent.
In simplical complex terms, this means that the mapping from states
to outputs is a simplicial map, a function f from points in one simplicial
complex C to points in another simplicial complex D such that for any
simplex A C, f (A) = {f (x)|x A} gives a simplex in D. (Recall that
consistency is represented by including a simplex, in both the state complex
and the output complex.) A mapping from states to outputs that satisfies
the consistency requirements encoded in the output complex s always a
simplicial map, with the additional requirement that it preserves process ids
(we dont want process p to decide the output for process q). Conversely,
any id-preserving simplicial map gives an output function that satisfies the
consistency requirements.
Simplicial maps are examples of continuous functions, which have all
sorts of nice topological properties. One nice property is that a continuous
function cant separate a connected space into disconnected components. We
can prove this directly for simplical maps: if there is a path of 1-simplexes
{x1 , x2 }, {x2 , x3 }, . . . {xk1 , xk } from x1 to xk in C, and f : C D is a
simplicial map, then there is a path of 1-simplexes {f (x1 ), f (x2 )}, . . . from
f (x1 ) to f (xk ). Since being connected just means that there is a path
between any two points,4 if C is connected weve just shown that f (C) is as
well.
Getting back to our consensus example, it doesnt matter what simplicial
map f you pick to map process states to outputs; since the state complex C
is connected, so is f (C), so it lies entirely within one of the two connected
components of the output complex. This means in particular that everybody
always outputs 0 or 1: the protocol is trivial.
28.5.1
For general decision tasks, its not enough for the outputs to be consistent
with each other. They also have to be consistent with the inputs. This can
4
267
28.6
Given a decision task specified in this way, there is a topological characterization of when it has a wait-free solution. This is given by the Asynchronous
Computability Theorem (Theorem 3.1 in [HS99]), which says:
Theorem 28.6.1. A decision task (I, O, ) has a wait-free protocol using
shared memory if and only if there exists a chromatic subdivision of I and
a color-preserving simplicial map : (I) O such that for each simplex s
in (I), (S) (carrier(S, I)).
To unpack this slightly, a chromatic subdivision is a subdivision where
each vertex is labeled by a process id (a color), and no simplex has two
vertices with the same color. A color-preserving simplicial map is a simplicial
map that preserves ids. The carrier of a simplex in a subdivision is whatever
original simplex it is part of. So the theorem says that I can only solve a
task if I can find a simplicial map from a subdivision of the input complex
to the output complex that doesnt do anything strange to process ids and
that is consistent with .
Looking just at the theorem, one might imagine that the proof consists
of showing that the protocol complex defined by the state complex after
running the protocol to completion is a subdivision of the input complex,
followed by the same argument weve seen already about mapping the state
complex to the output complex. This is almost right, but its complicated by
two inconvenient facts: (a) the state complex generally isnt a subdivision of
the input complex, and (b) if we have a map from an arbitrary subdivision
of the input complex, it is not clear that there is a corresponding protocol
that produces this particular subdivision.
So instead the proof works like this:
Protocol implies map Even though we dont get a subdivision with the
full protocol, there is a restricted set of executions that does give a
268
subdivision. So if the protocol works on this restricted set of executions, an appropriate map exists. There are two ways to prove this:
Herlihy and Shavit do so directly, by showing that this restricted set
of executions exists, and Borowksy and Gafni [BG97] do so indirectly,
by showing that the IIS model (which produces exactly the standard
chromatic subdivision used in the ACT proof) can simulate an ordinary snapshot model. Both methods are a bit involved, so we will skip
over this part.
Map implies protocol This requires an algorithm. The idea here is that
that participating set algorithm, originally developed to solve k-set
agreement [BG93], produces precisely the standard chromatic subdivision used in the ACT proof. In particular, it can be used to solve the
problem of simplex agreement, the problem of getting the processes
to agree on a particular simplex contained within the subdivision of
their original common input simplex. This is a little easier to explain,
so well do it.
28.6.1
Algorithm 28.1 depicts the participating set protocol; this first appeared
in [BG93], although the presentation here is heavily influenced by the version
in Elizabeth Borowskys dissertation [Bor95]. The shared data consists of
a snapshot object level, and processes start at a high level and float down
until they reach a level i such that there are already i processes at this level
or below. The set returned by a process consists of all processes it sees at
its own level or below, and it can be shown that this in fact implements a
one-shot immediate snapshot. Since immediate snapshots yield a standard
subdivision, this gives us what we want for converting a color-preserving
simplicial map to an actual protocol.
1
2
3
4
5
6
7
269
The following theorem shows that the return values from participating
set have all the properties we want for iterated immediate snapshot:
Theorem 28.6.2. Let Si be the output of the participating set algorithm for
process i. Then all of the following conditions hold:
1. For all i, i Si . (Self-containment.)
2. For all i, j, Si Sj or Sj Si . (Atomic snapshot.)
3. For all i, j, if i Sj , then Si Sj . (Immediacy.)
Proof. Self-inclusion is trivial, but we will have to do some work for the
other two properties.
The first step is to show that Algorithm 28.1 neatly sorts the processes
out into levels, where each process that returns at level k returns precisely
the set of processes at level k and below.
For each process i, let Si be defined as above, let `i be the final value of
level[i] when i returns, and let Si0 = {j | `j Si }. Our goal is to show that
Si0 = Si , justifying the above claim.
Because no process ever increases its level, if process i observes level[j]
`i in its last snapshot, then `j level[j] `i . So Si0 is a superset of Si . We
thus need to show only that no extra processes sneak in; in particular, we
will to show that Si = Si0 , by showing that both equal `i .
The first step is to show that |Si0 | |Si | `i . The first inequality follows
from the fact that Si0 Si ; the second follows from the code (if not, i would
have stayed in the loop).
The second step is to show that |Si0 | `i . Suppose not; that is, suppose
that |Si0 | > `i . Then there are at least `i +1 processes with level `i or less, all
of which take a snapshot on level `i + 1. Let i0 be the last of these processes
to take a snapshot while on level `i + 1. Then i0 sees at least `i + 1 processes
at level `i + 1 or less and exits, contradicting the assumption that it reaches
level `i . So |Si0 | `i .
The atomic snapshot property follows immediately from the fact that if
`i `j , then `k `i implies `k `j , giving Si = Si0 Sj0 = Sj . Similarly,
for immediacy we have that if i Sj , then `i `j , giving Si Sj by the
same argument.
The missing piece for turning this into IIS is that in Algorithm 28.1, I
only learn the identities of the processes I am supposed to include but not
their input values. This is easily dealt with by adding an extra register for
each process, to which it writes its input before executing participating set.
28.7
270
To show something is impossible using the ACT, we need to show that there
is no color-preserving simplicial map from a subdivision of I to O satisfying
the conditions in . This turns out to be equivalent to showing that there
is no continuous function from I to O with the same properties, because
any such simplicial map can be turned into a continuous function (on the
geometric version of I, which includes the intermediate points in addition
to the corners). Fortunately, topologists have many tools for proving nonexistence of continuous functions.
28.7.1
k-connectivity
Define the m-dimensional disk to be the set of all points at most 1 unit away
from the origin in Rm , and the m-dimensional sphere to be the surface of
the (m + 1)-dimensional disk (i.e., all points exactly 1 unit away from the
origin in Rm+1 ). Note that what we usually think of as a sphere (a solid
body), topologists call a disk, leaving the term sphere for just the outside
part.
An object is k-connected if any continuous image of an m-dimensional
sphere can be extended to a continuous image of an (m + 1)-dimensional
disk, for all m k.5 This is a roundabout way of saying that if we can
draw something that looks like a deformed sphere inside our object, we can
always include the inside as well: there are no holes that get in the way.
The punch line is that continuous functions preserve k-connectivity: if we
map an object with no holes into some other object, the image had better
not have any holes either.
Ordinary path-connectivity is the special case when k = 0; here, the
0-sphere consists of two points and the 1-disk is the path between them. So
0-connectivity says that for any two points, there is a path between them.
For 1-connectivity, if we draw a loop (a path that returns to its origin), we
can include the interior of the loop somewhere. One way to thinking about
this is to say that we can shrink the loop to a point without leaving the object
(the technical term for this is that the path is null-homotopic, where a
homotopy is a way to transform one thing continuously into another thing
over time and the null path sits on a single point). An object that is
1-connected is also called simply connected.
5
This definition is for the topological version of k-connectivity. It is not related in any
way to the definition of k-connectivity in graph theory, where a graph is k-connected if
there are k disjoint paths between any two points.
271
28.7.2
b1
c3
a1
a4
b2
a1
c1
a2
c1
b2
c4
b3
272
a3
b1
a2
c3
b4
c2
b1
a1
Chapter 29
Approximate agreement
1
The approximate agreement [DLP+ 86] or -agreement problem is
another relaxation of consensus where input and output values are real numbers, and a protocol is required to satisfy modified validity and agreement
conditions.
Let xi be the input of process i and yi its output. Then a protocol
satisfies approximate agreement if it satisfies:
Termination Every nonfaulty process eventually decides.
Validity Every process returns an output within the range of inputs. Formally, for all i, it holds that (minj xj ) yi (maxj xj ).
-agreement For all i and j, |i j| .
Unlike consensus, approximate agreement has wait-free algorithms for
asynchronous shared memory, which well see in 29.1). But a curious property of approximate agreement is that it has no bounded wait-free algorithms, even for two processes (see 29.2)
29.1
273
274
Algorithm 54] but with a slight bug fix;1 pseudocode appears in Algorithm 29.1.2
The algorithm carries out a sequence of asynchronous rounds in which
processes adopt new values, such that the spread of the vector of all values
Vr in round r, defined as spread Vr = max Vr min Vr , drops by a factor of 2
per round. This is done by having each process choose a new value in each
round by taking the midpoint (average of min and max) of all the values it
sees in the previous round. Slow processes will jump to the maximum round
they see rather than propagating old values up from ancient rounds; this
is enough to guarantee that latecomer values that arrive after some process
writes in round 2 are ignored.
The algorithm uses a single snapshot object A to communicate, and each
process stores its initial input and a round number along with its current
preference. We assume that the initial values in this object all have round
number 0, and that log2 0 = (which avoids a special case in the termination test).
A[i] hxi , 1, xi i
repeat
hx01 , r1 , v1 i . . . hx0n , rn , vn i snapshot(A)
rmax maxj rj
v midpoint{vj | rj = rmax }
A[i] hxi , rmax + 1, vi
until rmax 2 and rmax log2 (spread({x0j })/)
return v
Algorithm 29.1: Approximate agreement
1
2
3
4
5
6
7
8
To show this works, we want to show that the midpoint operation guarantees that the spread shrinks by a factor of 2 in each round. Let Vr be the
set of all values v that are ever written to the snapshot object with round
1
The original algorithm from [AW04] does not include the test rmax 2. This allows
for bad executions in which process 1 writes its input of 0 in round 1 and takes a snapshot
that includes only its own input, after which process 2 runs the algorithm to completion
with input 1. Here process 2 will see 0 and 1 in round 1, and will write (1/2, 2, 1) to
A[2]; on subsequent iterations, it will see only the value 1/2 in the maximum round, and
after dlog2 (1/)e rounds it will decide on 1/2. But if we now wake process 1 up, it will
decided 0 immediately based on its snapshot, which includes only its own input and gives
spread(x) = 0. Adding the extra test prevents this from happening, as new values that
arrive after somebody writes round 2 will be ignored.
2
Showing that this particular algorithm works takes a lot of effort. If I were to do this
over, Id probably go with a different algorithm due to Schenk [Sch95].
275
number r. Let Ur Vr be the set of values that are ever written to the snapshot object with round number r before some process writes a value with
round number r + 1 or greater; the intuition here is that Ur includes only
those values that might contribute to the computation of some round-(r + 1)
value.
Lemma 29.1.1. For all r for which Vr+1 is nonempty,
spread(Vr+1 ) spread(Ur )/2.
Uri
Proof. Let
be the set of round-r values observed by a process i in the
iteration in which it sees rmax = r in some iteration, if such an iteration
exists. Note that Uri Ur , because if some value with round r + 1 or greater
is written before is snapshot, then i will compute a larger value for rmax .
Given two processes i and j, we can argue from the properties of snapshot
that either Uri Urj or Urj Uri . The reason is that if is snapshot comes
first, then j sees at least as many round-r values as i does, because the only
way for a round-r value to disappear is if it is replaced by a value in a later
round. But in this case, process j will compute a larger value for rmax and
will not get a view for round r. The same holds in reverse if js snapshot
comes first.
Observe that if Uri Urj , then
midpoint(Uri ) midpoint(Urj ) spread(Urj )/2.
i
This holds because midpoint(Ur ) lies within the interval min Urj , max Urj ,
and every point in this interval is within spread(Urj )/2 of midpoint(Urj ). The
same holds if Urj Uri . So any two values written in round r + 1 are within
spread(Ur )/2 of each other.
In particular, the minimum and maximum values in Vr+1 are within
spread(Ur )/2 of each other, so spread(Vr+1 ) spread(Ur )/2.
276
Let i be some process that finishes in the fewest number of rounds. Process i cant finish until it reaches round rmax +1, where rmax log2 (spread({x0j })/)
for a vector of input values x0 that it reads after some process writes round
2 or greater. We have spread({x0j }) spread(U1 ), because every value in
U1 is included in x0 . So rmax log2 (spread(U1 )/) and spread(Vrmax +1 )
spread(U1 )/2rmax spread(U1 )/(spread(U1 )/) = . Since any value returned is either included in Vrmax +1 or some later Vr0 Vrmax +1 , this gives
us that the spread of all the outputs is less than : Algorithm 29.1 solves
approximate agreement.
The cost of Algorithm 29.1 depends on the cost of the snapshot operations, on , and on the initial input spread D. For linear-cost snapshots,
this works out to O(n log(D/)).
29.2
277
follows that after k steps the best spread we can get is D/3k , requiring
k log3 (D/) steps to get -agreement.
Herlihy uses this result to show that there are decisions problems that
have wait-free but not bounded wait-free deterministic solutions using registers. Curiously, the lower bound says nothing about the dependence on the
number of processes; it is conceivable that there is an approximate agreement protocol with running time that depends only on D/ and not n.
Appendix
278
Appendix A
Assignments
Assignments are typically due Wednesdays at 5:00pm. Assignments can be
turned in to Ennan Zhais mailbox on the first floor of AKW.
A.1
Bureaucratic part
Send me email! My address is james.aspnes@gmail.com.
In your message, include:
1. Your name.
2. Your status: whether you are an undergraduate, grad student, auditor,
etc.
3. Anything else youd like to say.
(You will not be graded on the bureaucratic part, but you should do it
anyway.)
A.1.1
A connected bidirectional asynchronous network of n processes with identities has diameter D and may contain zero or more evil processes. Fortunately, the evil processes, if they exist, are not Byzantine, fully conform to
RFC 3514 [Bel03], and will correctly execute any code we provide for them.
279
APPENDIX A. ASSIGNMENTS
280
Suppose that all processes wake up at time 0 and start whatever protocol
we have given them. Suppose that each process initially knows whether it is
evil, and knows the identities of all of its neighbors. However, the processes
do not know the number of processes n or the diameter of the network D.
Give a protocol that allows every process to correctly return the number
of evil processes no later than time D. Your protocol should only return a
value once for each process (no converging to the correct answer after an
initial wrong guess).
Solution
There are a lot of ways to do this. Since the problem doesnt ask about
message complexity, well do it in a way that optimizes for algorithmic simplicity.
At time 0, each process initiates a separate copy of the flooding algorithm
(Algorithm 4.1). The message hp, N (p), ei it distributes consists of its own
identity, the identities of all of its neighbors, and whether or not it is evil.
In addition to the data for the flooding protocol, each process tracks a
set I of all processes it has seen that initiated a protocol and a set N of all
processes that have been mentioned as neighbors. The initial values of these
sets for process p are {p} and N (p), the neighbors of p.
Upon receiving a message hq, N (q), ei, a process adds q to I and N (q) to
N . As soon as I = N , the process returns a count of all processes for which
e = true.
Termination by D: Follows from the same analysis as flooding. Any
process at distance d from p has p I by time d, so I is complete by time
D.
S
Correct answer: Observe that N = iI N (i) always. Suppose that
there is some process q that is not in I. Since the graph is connected, there
is a path from p to q. Let r be the last node in this path in I, and let s be
the following node. Then s N \ I and N 6= I. By contraposition, if I = N
then I contains all nodes in the network, and so the count returned at this
time is correct.
A.1.2
Suppose that you have a bidirectional but not necessarily complete asynchronous message-passing network represented by a graph G = (V, E) where
each node in V represents a process and each edge in E connects two processes that can send messages to each other. Suppose further that each
APPENDIX A. ASSIGNMENTS
281
APPENDIX A. ASSIGNMENTS
282
5.3 algorithm again, we only send up to D messages per real edge, giving
O(D) time and O(DE) messages.
If we dont like reductions, we could also tweak one of our existing algorithms. Gallagers layered BFS (5.2) is easily modified by changing the
depth bound for each round to a total-weight bound. The synchronizerbased BFS can also be modified to work, but the details are messy.
A.2
A.2.1
The par solution for this is an ( f ) lower bound and O(f ) upper bound.
I dont know if it is easy to do better than this.
For the lower bound, observe that the adversary can simulate an ordinary
crash failure by jamming a process in every round starting in the round it
crashes in. This means that in an r-round protocol, we can simulate k crash
failures with kr jamming faults. From the Dolev-Strong lower bound [DS83]
2
Clarifications added 2014-02-10: We assume that processes dont know that they are
being jammed or which messages are lost (unless the recipient manages to tell them that
a message was not delivered). As in the original model, we assume a complete network
and that all processes have known identities.
APPENDIX A. ASSIGNMENTS
283
(see also Chapter 7), we know that there is no r-round protocol with k = r
crash failures faults, so there isno r-round protocol with r2 jamming faults.
f + 1 on the number of rounds needed to
This gives a lower bound of
solve synchronous agreement with f jamming faults.3
For the upper bound, have every process broadcast its input every round.
After f +1 rounds, there is at least one round in which no process is jammed,
so every process learns all the inputs and can take, say, the majority value.
A.2.2
Since Dolev-Strong only needs to crash one process per round, we dont really need
the full r jamming faults for processes that crash late. This could be used to improve the
constant for this argument.
4
Problem modified 2014-02-03. In the original version, it asked to compute f for all
m, but there are some nasty special cases when m is small.
APPENDIX A. ASSIGNMENTS
284
A.3
A.3.1
The adversary has decided to be polite and notify each non-faulty processes
when he gives up crashing it. Specifically, we have the usual asynchronous
message-passing system with up to f faulty processes, but every non-faulty
process is eventually told that it is non-faulty. (Faulty processes are told
nothing.)
APPENDIX A. ASSIGNMENTS
285
A.3.2
Suppose we do not have the budget to equip all of our machines with failure
detectors. Instead, we order an eventually strong failure detector for k
machines, and the remaining n k machines get fake failure detectors that
never suspect anybody. The choice of which machines get the real failure
detectors and which get the fake ones is under the control of the adversary.
This means that every faulty process is eventually permanently suspected
by every non-faulty process with a real failure detector, and there is at
least one non-faulty process that is eventually permanently not suspected
by anybody. Lets call the resulting failure detector Sk .
Let f be the number of actual failures. Under what conditions on f , k,
and n can you still solve consensus in the usual deterministic asynchronous
message-passing model using Sk ?
Solution
First observe that S can simulate Sk for any k by having n k processes
ignore the output of their failure detectors. So we need f < n/2 by the
usual lower bound on S.
APPENDIX A. ASSIGNMENTS
286
A.4
A.4.1
APPENDIX A. ASSIGNMENTS
A.4.2
287
A message-passing counter
A counter is a shared object that support operations inc and read, where
read returns the number of previous inc operations.
Algorithm A.1 purports to implement a counter in an asynchronous
message-passing system subject to f < n/2 crash failures. In the algorithm, each process i maintains a vector ci of contributions to the counter
from all the processes, as well as a nonce ri used to distinguish responses to
different read operations from each other. All of these values are initially
zero.
Show that the implemented counter is linearizable, or give an example
of an execution where it isnt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
procedure inc
ci [i] ci [i] + 1
Send ci [i] to all processes.
Wait to receive ack(ci [i]) from a majority of processes.
upon receiving c from j do
ci [j] max(ci [j], c)
Send ack(c) to j.
procedure read
ri ri + 1
Send read(ri ) to all processes.
Wait to receive respond(ri , cj ) from a majority of processes j.
P
return k maxj cj [k]
upon receiving read(r) from j do
Send respond(r, ci ) to j
Algorithm A.1: Counter algorithm for Problem A.4.2.
A.5
A.5.1
APPENDIX A. ASSIGNMENTS
288
Algorithm A.2: Two-process consensus using the object from Problem A.5.1
Termination is immediate from the absence of loops in the code.
To show validity and termination, observe that one of two cases holds:
1. Process 1 executes exit1 before process 2 executes enter2 . In this
APPENDIX A. ASSIGNMENTS
289
A.5.2
A two-writer sticky bit is a sticky bit that can be read by any process,
but that can only be written to by two specific processes.
Suppose that you have an unlimited collection of two-writer sticky bits
for each pair of processes, plus as many ordinary atomic registers as you
need. What is the maximum number of processes for which you can solve
wait-free binary consensus?
Solution
If n = 2, then a two-writer sticky bit is equivalent to a sticky bit, so we can
solve consensus.
If n 3, suppose that we maneuver our processes as usual to a bivalent
configuration C with no bivalent successors. Then there are three pending
operations x, y, and z, that among them produce both 0-valent and 1-valent
configurations. Without loss of generality, suppose that Cx and Cy are both
0-valent and Cz is 1-valent. We now consider what operations these might
be.
1. If x and z apply to different objects, then Cxz = Czx must be both
0-valent and 1-valent, a contradiction. Similarly if y and z apply to
different objects. This shows that all three operations apply to the
same object O.
APPENDIX A. ASSIGNMENTS
290
2. If O is a register, then the usual case analysis of Loui and AbuAmara [LAA87] gives us a contradiction.
3. If O is a two-writer sticky bit, then we can split cases further based
on z:
(a) If z is a read, then either:
i. At least one of x and y is a read. But then Cxz = Czx or
Cyz = Czy, and we are in trouble.
ii. Both x and y are writes. But then Czx (1-valent) is indistinguishable from Cx (0-valent) by the two processes that
didnt perform z: more trouble.
(b) If z is a write, then at least one of x or y is a read; suppose its
x. Then Cxz is indistinguishable from Cz by the two processes
that didnt perform x.
Since we reach a contradiction in all cases, it must be that when n 3,
every bivalent configuration has a bivalent successor, which shows that we
cant solve consensus in this case. The maximum value of n for which we
can solve consensus is 2.
A.6
A.6.1
Suppose that you are asked to implement a concurrent m-bit register that
supports in addition to the usual read and write operations a RotateLeft
operation that rotates all the bits to the left; this is equivalent to doing a
left shift (multiplying the value in the register by two) followed by replacing
the lowest-order bit with the previous highest-order bit.
For example, if the register contains 1101, and we do RotateLeft, it now
contains 1011.
Show that if m is sufficiently large as a function of the number of processes n, (n) steps per operation in the worst case are necessary and sufficient to implement a linearizable wait-free m-bit shift register from atomic
registers.
APPENDIX A. ASSIGNMENTS
291
Solution
The necessary part is easier, although we cant use JTT (Chapter 20) directly because having write operations means that our rotate register is not
perturbable. Instead, we argue that if we initialize the register to 1, we
get a mod-m counter, where increment is implemented by RotateLeft and
read is implemented by taking the log of the actual value of the counter.
Letting m 2n gives the desired (n) lower bound, since a mod-2n counter
is perturbable.
For sufficiency, well show how to implement the rotate register using
snapshots. This is pretty much a standard application of known techniques [AH90b, AM93], but its not a bad exercise to write it out.
Pseudocode for one possible solution is given in Algorithm A.3.
The register is implemented using a single snapshot array A. Each entry
in the snapshot array holds four values: a timestamp and process id indicating which write the processs most recent operations apply to, the initial
write value corresponding to this timestamp, and the number of rotate operations this process has applied to this value. A write operation generates
a new timestamp, sets the written value to its input, and resets the rotate
count to 0. A rotate operation updates the timestamp and associated write
value to the most recent that the process sees, and adjusts the rotate count
as appropriate. A read operation combines all the rotate counts associated
with the most recent write to obtain the value of the simulated register.
Since each operation requires one snapshot and at most one update, the
cost is O(n) using the linear-time snapshot algorithm of Inoue et al. [IMCT94].
Linearizability is easily verified by observing that ordering all operations by
the maximum timestamp/process tuple that they compute and then by the
total number of rotations that they observe produces an ordering consistent with the concurrent execution for which all return values of reads are
correct.
A.6.2
Algorithm A.4 gives pseudocode for a protocol for two processes p0 and p1 .
It uses two shared unbounded single-writer atomic registers r0 and r1 , both
initially 0. Each process also has a local variable s.
1. Show that any return values of the protocol are consistent with a
linearizable, single-use test-and-set.
APPENDIX A. ASSIGNMENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
procedure write(A, v)
s snapshot(A)
A[id] hmaxi s[i].timestamp + 1, id, v, 0i
procedure RotateLeft(A)
s snapshot(A)
Let i maximize hs[i].timestamp, s[i].processi
if s[i].timestamp = A[id].timestamp and
s[i].process = A[id].process then
// Increment my rotation count
A[id].rotations A[id].rotations + 1
else
// Reset and increment my rotation count
A[id] hs[i].timestamp, s[i].process, s[i].value, 1i
procedure read(A)
s snapshot(A)
Let i maximize hs[i].timestamp, s[i].processi
Let
P
r = j,s[j].timestamp=s[i].timestamps[j].process=s[i].process s[j].rotations
return s[i].value rotated r times.
Algorithm A.3: Implementation of a rotate register
1
2
3
4
5
6
7
8
9
10
11
procedure TASi ()
while true do
with probability 1/2 do
ri ri + 1
else
ri ri
s ri
if s > ri then
return 1
else if s < ri 1 do
return 0
Algorithm A.4: Randomized two-process test-and-set for A.6.2
292
APPENDIX A. ASSIGNMENTS
293
APPENDIX A. ASSIGNMENTS
294
terminate. But
t
X
t
s
r0 r1t =
s=1
t
X
= (cs + Xs )
s=1
t
t
X
X
cs +
Xs .
=
s=1
s=1
The left-hand sum is a constant, while the right-hand sum has a binomial distribution. For any fixed constant, the probability that a
binomial distribution lands within 2 of the constant goes to zero in
the limit as t , so with probability 1 there is some t for which
this event does not occur.
3. For an adaptive adversary, the following strategy prevents agreement:
(a) Run p0 until it is about to increment r0 .
(b) Run p1 until it is about to increment r1 .
(c) Allow both increments to proceed and repeat.
The effect is that both processes always observe r0 = r1 whenever
they do a read, and so never finish. This works because the adaptive
adversary can see the coin-flips done by the processes before they act
on them; it would not work with an oblivious adversary or in a model
that supported probabilistic writes.
A.7
Write your answers in the blue book(s). Justify your answers. Work alone.
Do not use any notes or books.
There are four problems on this exam, each worth 20 points, for a total
of 80 points. You have approximately three hours to complete this exam.
A.7.1
APPENDIX A. ASSIGNMENTS
295
size of the ring. We would like the processes to each compute the maximum
input. As usual, each process may only return an output once, and must do
so after a finite number of rounds, although it may continue to participate
in the protocol (say, by relaying messages) even after it returns an output.
Prove or disprove: It is possible to solve this problem in this model.
Solution
Its not possible.
Consider an execution with n = 3 processes, each with input 0. If the
protocol is correct, then after some finite number of rounds t, each process
returns 0. By symmetry, the processes all have the same states and send
the same messages throughout this execution.
Now consider a ring of size 2(t + 1) where every process has input 0,
except for one process p that has input 1. Let q be the process at maximum
distance from p. By induction on r, we can show that after r rounds of
communication, every process that is more than r + 1 hops away from p has
the same state as all of the processes in the 3-process execution above. So
in particular, after t rounds, process q (at distance t + 1) is in the same state
as it would be in the 3-process execution, and thus it returns 0. Butas it
learns to its horror, one round too latethe correct maximum is 1.
A.7.2
APPENDIX A. ASSIGNMENTS
296
A.7.3
Hamazon, LLC, claims to be the worlds biggest delivery service for canned
hams, with guaranteed delivery of a canned ham to your home anywhere
on Earth via suborbital trajectory from secret launch facilities at the North
and South Poles. Unfortunately, these launch facilities may be subject to
crash failures due to inclement weather, trademark infringement actions, or
military retaliation for misdirected hams.
For this problem, you are to evaluate Hamazons business model from
the perspective of distributed algorithms. Consider a system consisting of
a client process and two server processes (corresponding to the North and
South Pole facilities) that communicate by means of asynchronous message
passing. In addition to the usual message-passing actions, each server also
has an irrevocable launch action that launches a ham at the client. As with
messages, hams are delivered asynchronously: it is impossible for the client
to tell if a ham has been launched until it arrives.
A ham protocol is correct provided (a) a client that orders no ham receives no ham; and (b) a client that orders a ham receives exactly one ham.
Show that there can be no correct deterministic protocol for this problem if
one of the servers can crash.
Solution
Consider an execution in which the client orders ham. Run the northern
server together with the client until the server is about to issue a launch
action (if it never does so, the client receives no ham when the southern
server is faulty).
Now run the client together with the southern server. There are two
cases:
1. If the southern server ever issues launch, execute both this and the
northern servers launch actions: the client gets two hams.
APPENDIX A. ASSIGNMENTS
297
2. If the southern server never issues launch, never run the northern
server again: the client gets no hams.
In either case, the one-ham rule is violated, and the protocol is not
correct.5
A.7.4
procedure mutex()
predecessor swap(s, myId)
while r 6= predecessor do
try again
// Start of critical section
...
// End of critical section
r myId
Algorithm A.5: Mutex using a swap object and register
Prove that Algorithm A.5 gives a starvation-free mutex, or give an example of an execution where it fails. You should assume that s and r are
both initialized to .
5
Its tempting to try to solve this problem by reduction from a known impossibility
result, like Two Generals or FLP. For these specific problems, direct reductions dont
appear to work. Two Generals assumes message loss, but in this model, messages are not
lost. FLP needs any process to be able to fail, but in this model, the client never fails.
Indeed, we can solve consensus in the Hamazon model by just having the client transmit
its input to both servers.
APPENDIX A. ASSIGNMENTS
298
Solution
Because processes use the same id if they try to access the mutex twice, the
algorithm doesnt work.
Heres an example of a bad execution:
1. Process 1 swaps 1 into s and gets , reads from r, performs its
critical section, and writes 1 to r.
2. Process 2 swaps 2 into s and gets 1, reads 1 from r, and enters the
critical section.
3. Process 1 swaps 1 into s and gets 2, and spins waiting to see 2 in r.
4. Process 3 swaps 3 into s and gets 1. Because r is still 1, process 3 reads
this 1 and enters the critical section. We now have two processes in
the critical section, violating mutual exclusion.
I believe this works if each process adopts a new id every time it calls
mutex, but the proof is a little tricky.6
The simplest proof I can come up with is to apply an invariant that says that (a)
the processes that have executed swap(s, myId) but have not yet left the while loop have
predecessor values that form a linked list, with the last pointer either equal to (if no
process has yet entered the critical section) or the last process to enter the critical section;
(b) r is if no process has yet left the critical section, or the last process to leave the
critical section otherwise; and (c) if there is a process that is in the critical section, its
predecessor field points to the last process to leave the critical section. Checking the effects
of each operation shows that this invariant is preserved through the execution, and (a)
combined with (c) show that we cant have two processes in the critical section at the
same time. Additional work is still needed to show starvation-freedom. Its a good thing
this algorithm doesnt work as written.
Appendix B
Bureaucratic part
Send me email! My address is aspnes@cs.yale.edu.
In your message, include:
1. Your name.
2. Your status: whether you are an undergraduate, grad student, auditor,
etc.
3. Anything else youd like to say.
(You will not be graded on the bureaucratic part, but you should do it
anyway.)
B.1.1
299
300
B.1.2
Clustering
301
B.1.3
Negotiation
Two merchants A and B are colluding to fix the price of some valuable
commodity, by sending messages to each other for r rounds in a synchronous
message-passing system. To avoid the attention of antitrust regulators, the
merchants are transmitting their messages via carrier pigeons, which are
unreliable and may become lost. Each merchant has an initial price pA or
pB , which are integer values satisfying 0 p m for some known value
m, and their goal is to choose new prices p0A and p0B , where |p0A p0B | 1.
If pA = pB and no messages are lost, they want the stronger goal that
p0A = p0B = pA = pB .
Prove the best lower bound you can on r, as a function of m, for all
protocols that achieve these goals.
Solution
This is a thinly-disguised version of the Two Generals Problem from Chapter 3, with the agreement condition p0A = p0B replaced by an approximate
agreement condition |p0A p0B | 1. We can use a proof based on the
indistinguishability argument in 3.2 to show that r m/2.
Fix r, and suppose that in a failure-free execution both processes send
messages in all rounds (we can easily modify an algorithm that does not
have this property to have it, without increasing r). We will start with a
sequence of executions with pA = pB = 0. Let X0 be the execution in which
no messages are lost, X1 the execution in which As last message is lost,
X2 the execution in which both A and Bs last messages are lost, and so
on, with Xk for 0 k 2r losing k messages split evenly between the two
processes, breaking ties in favor of losing messages from A.
When i is even, Xi is indistinguishable from Xi+1 by A; it follows that
p0A is the same in both executions. Because we no longer have agreement,
it may be that p0B (Xi ) and p0B (Xi+1 ) are not the same as p0A in either execution; but since both are within 1 of p0A , the difference between them is
at most 2. Next, because Xi+1 to Xi+2 are indistinguishable to B, we have
p0B (Xi+1 ) = p0B (Xi+2 ), which we can combine with the previous claim to get
|p0B (Xi ) p0B (Xi+2 )|. A simple induction then gives p0B (X2r ) 2r, where
302
B.2
B.2.1
303
Suppose that we augment the system so that senders are notified immediately when their messages are delivered. We can model this by making the
delivery of a single message an event that updates the state of both sender
and recipient, both of which may send additional messages in response. Let
us suppose that this includes attempted deliveries to faulty processes, so
that any non-faulty process that sends a message m is eventually notified
that m has been delivered (although it might not have any effect on the
recipient if the recipient has already crashed).
1. Show that this system can solve consensus with one faulty process
when n = 2.
2. Show that this system cannot solve consensus with two faulty processes
when n = 3.
Solution
1. To solve consensus, each process sends its input to the other. Whichever
input is delivered first becomes the output value for both processes.
2. To show impossibility with n = 3 and two faults, run the usual FLP
proof until we get to a configuration C with events e0 and e such that
Ce is 0-valent and Ce0 e is 1-valent (or vice versa). Observe that e
and e0 may involve two processes each (sender and receiver), for up
to four processes total, but only a process that is involved in both e
and e0 can tell which happened first. There can be at most two such
processes. Kill both, and get that Ce0 e is indistinguishable from Cee0
for the remaining process, giving the usual contradiction.
B.2.2
304
Solution
There is an easy reduction to FLP that shows f n/2 is necessary (when n
in one segment crashes, all n 1 process in the segment crash, and (c) if
any process in a segment takes a step, all take a step, in some fixed order.
Under this additional conditions, each segment can be simulated by a single
process in an asynchronous system with no failure detectors, and the extra
a gap of about 2 between the upper and lower bounds; I dont know which
one can be improved.
305
B.2.3
An odd problem
Suppose that each of n processes in a message-passing system with a complete network is attached to a sensor. Each sensor has two states, active
and inactive; initially, all sensors are off. When the sensor changes state,
the corresponding process is notified immediately, and can update its state
and send messages to other processes in response to this event. It is also
guaranteed that if a sensor changes state, it does not change state again for
at least two time units. We would like to detect when an odd number of
sensors are active, by having at least one process update its state to set off
an alarm at a time when this condition holds.
A correct protocol for this problem should satisfy two conditions:
No false positives If a process sets of an alarm, then an odd number of
sensors are active.
Termination If at some time an odd number of sensors are active, and from
that point on no sensor changes its state, then some process eventually
sets off an alarm.
For what values of n is it possible to construct such a protocol?
Solution
It is feasible to solve the problem for n < 3.
For n = 1, the unique process sets off its alarm as soon as its sensor
becomes active.
For n = 2, have each process send a message to the other containing
its sensor state whenever the sensor state changes. Let s1 and s2 be the
state of the two processs sensors, with 0 representing inactive and 1 active,
and let pi set off its alarm if it receives a message s such that s si = 1.
This satisfies termination, because if we reach a configuration with an odd
number of active sensors, the last sensor to change causes a message to be
sent to the other process that will cause it to set off its alarm. It satisfies
no-false-positives, because if pi sets off its alarm, then si = s because at
most one time unit has elapsed since pi sent s; it follows that si si = 1
and an odd number of sensors are active.
306
B.3
B.3.1
Suppose you have an atomic queue Q that supports operations enq and deq,
restricted so that:
enq(Q) always pushes the identity of the current process onto the tail
of the queue.
deq(Q) tests if the queue is nonempty and its head is equal to the
identity of the current process. If so, it pops the head and returns
true. If not, it does nothing and returns false.
The rationale for these restrictions is that this is the minimal version of
a queue needed to implement a starvation-free mutex using Algorithm 17.2.
What is the consensus number of this object?
Solution
The restricted queue has consensus number 1.
Suppose we have 2 processes, and consider all pairs of operations on Q
that might get us out of a bivalent configuration C. Let x be an operation
carried out by p that leads to a b-valent state, and y an operation by q that
leads to a (b)-valent state. There are three cases:
Two deq operations. If Q is empty, the operations commute. If the
head of the Q is p, then y is a no-op and p cant distinguish between
Cx and Cyx. Similarly for q if the head is q.
One enq and one deq operation. Suppose x is an enq and y a deq. If
Q is empty or the head is not q, then y is a no-op: p cant distinguish
Cx from Cyx. If the head is q, then x and y commute. The same
holds in reverse if x is a deq and y an enq.
307
Two enq operations. This is a little tricky, because Cxy and Cyx
are different states. However, if Q is nonempty in C, whichever process isnt at the head of Q cant distinguish them, because any deq
operation returns false and never reaches the newly-enqueued values.
This leaves the case where Q is empty in C. Run p until it is poised
to do x0 = deq(Q) (if this never happens, p cant distinguish Cxy
from Cyx); then run q until it is poised to do y 0 = deq(Q) as well
(same argument as for p). Now allow both deq operations to proceed
in whichever order causes them both to succeed. Since the processes
cant tell which deq happened first, they cant tell which enq happened first either. Slightly more formally, if we let be the sequence
of operations leading up to the two deq operations, weve just shown
Cxyx0 y 0 is indistinguishable from Cyxy 0 x0 to both processes.
In all cases, we find that we cant escape bivalence. It follows that Q cant
solve 2-process consensus.
B.3.2
Writable fetch-and-increment
Suppose you are given an unlimited supply of atomic registers and fetchand-increment objects, where the fetch-and-increment objects are all initialized to 0 and supply only a fetch-and-increment operation that increments
the object and returns the old value. Show how to use these objects to
construct a wait-free, linearizable implementation of an augmented fetchand-increment that also supports a write operation that sets the value of
the fetch-and-increment and returns nothing.
Solution
Well use a snapshot object a to control access to an infinite array f of fetchand-increments, where each time somebody writes to the implemented object, we switch to a new fetch-and-increment. Each cell in a holds (timestamp, base),
where base is the starting value of the simulated fetch-and-increment. Well
also use an extra fetch-and-increment T to hand out timestamps.
Code is in Algorithm B.1.
Since this is all straight-line code, its trivially wait-free.
Proof of linearizability is by grouping all operations by timestamp, using s[i].timestamp for FetchAndIncrement operations and t for write operations, then putting write before FetchAndIncrement, then ordering FetchAndIncrement
by return value. Each group will consist of a write(v) for some v followed by
zero or more FetchAndIncrement operations, which will return increasing
1
2
3
4
5
6
7
308
procedure FetchAndIncrement()
s snapshot(a)
i argmaxi (s[i].timestamp)
return f [s[i].timestamp] + s[i].base
procedure write(v)
t FetchAndIncrement(T )
a[myId] (t, v)
Algorithm B.1: Resettable fetch-and-increment
values starting at v since they are just returning values from the underlying
FetchAndIncrement object; the implementation thus meets the specification.
To show consistency with the actual execution order, observe that timestamps only increase over time and that the use of snapshot means that
any process that observes or writes a timestamp t does so at a time later
than any process that observes or writes any t0 < t; this shows the group
order is consistent. Within each group, the write writes a[myId] before
any FetchAndIncrement reads it, so again we have consistency between the
write and any FetchAndIncrement operations. The FetchAndIncrement
operations are linearized in the order in which they access the underlying
f [. . . ] object, so we win here too.
B.3.3
A box object
309
B.4
Write your answers in the blue book(s). Justify your answers. Work alone.
Do not use any notes or books.
There are four problems on this exam, each worth 20 points, for a total
of 80 points. You have approximately three hours to complete this exam.
General clarifications added during exam Assume all processes have
unique ids and know n. Assume that the network is complete in the messagepassing model.
B.4.1
write(r, input)
lock(r)
return read(r)
Algorithm B.2: Consensus using a lockable register
310
Termination and validity are trivial. Agreement follows from the fact
that whatever value is in r when lock(r) is first called will never change,
and thus will be read and returned by all processes.
B.4.2
Suppose you have an asynchronous message passing system with exactly one
Byzantine process.
You would like the non-faulty processes to be able to acquire an increasing sequence of timestamps. A process should be able to execute the timestamp protocol as often as it likes, and it should be guaranteed that when a
process is non-faulty, it eventually obtains a timestamp that is larger than
any timestamp returned in any execution of the protocol by a non-faulty
process that finishes before the current processs execution started.
Note that there is no bound on the size of a timestamp, so having the
Byzantine process run up the timestamp values is not a problem, as long as
it cant cause the timestamps to go down.
For what values of n is it possible to solve this problem?
Solution
It is possible to solve the problem for all n except n = 3. For n = 1, there are
no non-faulty processes, so the specification is satisfied trivially. For n = 2,
there is only one non-faulty process: it can just keep its own counter and
return an increasing sequence of timestamps without talking to the other
process at all.
For n = 3, it is not possible. Consider an execution in which messages
between non-faulty processes p and q are delayed indefinitely. If the Byzantine process r acts to each of p and q as it would if the other had crashed,
this execution is indistinguishable to p and q from an execution in which r
is correct and the other is faulty. Since there is no communication between
p and q, it is easy to construct and execution in which the specification is
violated.
For n 4, the protocol given in Algorithm B.3 works.
The idea is similar to the Attiya, Bar-Noy, Dolev distributed shared
memory algorithm [ABND95]. A process that needs a timestamp polls n 1
other processes for the maximum values theyve seen and adds 1 to it; before
returning, it sends the new timestamp to all other processes and waits to
receive n 1 acknowledgments. The Byzantine process may choose not to
answer, but this is not enough to block completion of the protocol.
1
2
3
4
5
6
7
8
9
10
11
12
13
311
procedure getTimestamp()
ci ci + 1
send probe(ci ) to all processes
wait to receive response(ci , vj ) from n 1 processes
vi (maxj vj ) + 1
send newTimestamp(ci , vi ) to all processes
wait to receive ack(ci ) from n 1 processes
return vi
upon receiving probe(cj ) from j do
send response(cj , vi ) to j
upon receiving newTimestamp(cj , vj ) from j do
vi max(vi , vj )
send ack(cj ) to j
B.4.3
312
B.4.4
1
2
3
procedure read(S)
return size(S)
4
5
Appendix C
C.1
Write your answers in the blue book(s). Justify your answers. Work alone.
Do not use any notes or books.
There are three problems on this exam, each worth 20 points, for a total
of 60 points. You have approximately three hours to complete this exam.
C.1.1
314
of your choosing, and that the design of the consensus protocol can depend
on the number of processes N .
Solution
The consensus number is 2.
To implement 2-process wait-free consensus, use a single fetch-and-subtract
register initialized to 1 plus two auxiliary read/write registers to hold the
input values of the processes. Each process writes its input to its own register, then performs a fetch-and-subtract(1) on the fetch-and-subtract register.
Whichever process gets 1 from the fetch-and-subtract returns its own input;
the other process (which gets 0) returns the winning processs input (which
it can read from the winning processs read/write register.)
To show that the consensus number is at most 2, observe that any
two fetch-and-subtract operations commute: starting from state x, after
fetch-and-subtract(k1 ) and fetch-and-subtract(k2 ) the value in the fetchand-subtract register is max(0, x k1 k2 ) regardless of the order of the
operations.
C.1.2
315
Solution
Upper bound
Because there are no failures, we can appoint a leader and have it decide.
The natural choice is some process near the middle, say pb(N +1)/2c . Upon
receiving an input, either directly through an input event or indirectly from
another process, the process sends the input value along the line toward the
leader. The leader takes the first input it receives and broadcasts it back
out in both directions as the decision value. The worst case is when the
protocol is initiated at pN ; then we pay 2(N b(N + 1)/2c) time to send all
messages out and back, which is N time units when N is even and N 1
time units when N is odd.
Lower bound
Proving an almost-matching lower bound of N 1 time units is trivial: if
p1 is the only initiator and it starts at time t0 , then by an easy induction
argument,in the worst case pi doesnt learn of any input until time t0 +(i1),
and in particular pN doesnt find out until after N 1 time units. If pN
nonetheless decides early, its decision value will violate validity in some
executions.
But we can actually prove something stronger than this: that N time
units are indeed required when N is odd. Consider two slow executions 0
and 1 , where (a) all messages are delivered after exactly one time unit in
each execution; (b) in 0 only p1 receives an input and the input is 0; and
(c) in 1 only pN receives an input and the input is 1. For each of the
executions, construct a causal ordering on events in the usual fashion: a
send is ordered before a receive, two events of the same process are ordered
by time, and other events are partially ordered by the transitive closure of
this relation.
Now consider for 0 the set of all events that precede the decide(0)
event of p1 and for 1 the set of all events that precede the decide(1) event
of pN . Consider further the sets of processes S0 and S1 at which these events
occur; if these two sets of processes do not overlap, then we can construct
an execution in which both sets of events occur, violating Agreement.
Because S0 and S1 overlap, we must have |S0 | + |S1 | N + 1, and so at
least one of the two sets has size at least d(N + 1)/2e, which is N/2 + 1 when
N is even. Suppose that it is S0 . Then in order for any event to occur at
pN/2+1 at all some sequence of messages must travel from the initial input
to p1 to process pN/2+1 (taking N/2 time units), and the causal ordering
316
C.1.3
An append register supports standard read operations plus an append operation that appends its argument to the list of values already in the register.
An append-and-fetch register is similar to an append register, except that
it returns the value in the register after performing the append operation.
Suppose that you have an failure-free asynchronous system with anonymous
deterministic processes (i.e., deterministic processes that all run exactly the
same code). Prove or disprove each of the following statements:
1. It is possible to solve mutual exclusion using only append registers.
2. It is possible to solve mutual exclusion using only append-and-fetch
registers.
In either case, the solution should work for arbitrarily many processes
solving mutual exclusion when N = 1 is not interesting. You are also not
required in either case to guarantee lockout-freedom.
Clarification given during exam
1. If it helps, you may assume that the processes know N . (It probably
doesnt help.)
Solution
1. Disproof: With append registers only, it is not possible to solve mutual
exclusion. To prove this, construct a failure-free execution in which
the processes never break symmetry. In the initial configuration, all
processes have the same state and thus execute either the same read
operation or the same append operation; in either case we let all N
operations occur in some arbitrary order. If the operations are all
reads, all processes read the same value and move to the same new
state. If the operations are all appends, then no values are returned
and again all processes enter the same new state. (Its also the case
that the processes cant tell from the registers state which of the
identical append operations went first, but we dont actually need to
use this fact.)
317
C.2
Write your answers in the blue book(s). Justify your answers. Work alone.
Do not use any notes or books.
There are four problems on this exam, each worth 20 points, for a total
of 80 points. You have approximately three hours to complete this exam.
C.2.1
Suppose you have an asynchronous message-passing system with a complete communication graph, unique node identities, and no failures. Show
that any deterministic atomic shared-memory object can be simulated in
this model, or give an example of a shared-memory object that cant be
simulated.
Solution
Pick some leader node to implement the object. To execute an operation,
send the operation to the leader node, then have the leader carry out the
operation (sequentially) on its copy of the object and send the results back.
C.2.2
Suppose you are given a ring buffer object that consists of k 1 memory
locations a[0] . . . a[k 1] with an atomic shift-and-fetch operation that takes
an argument v and (a) shifts v into the buffer, so that a[i] a[i + 1] for
318
each i less than k 1 and a[k 1] v; and (b) returns a snapshot of the
new contents of the array (after the shift).
What is the consensus number of this object as a function of k?
Solution
We can clearly solve consensus for at least k processes: each process calls
shift-and-fetch on its input, and returns the first non-null value in the buffer.
So now we want to show that we cant solve consensus for k+1 processes.
Apply the usual FLP-style argument to get to a bivalent configuration C
where each of the k + 1 processes has a pending operation that leads to
a univalent configuration. Let e0 and e1 be particular operations leading
to 0-valent and 1-valent configurations, respectively, and let e2 . . . ek be the
remaining k 1 pending operations.
We need to argue first that no two distinct operations ei and ej are
operations of different objects. Suppose that Cei is 0-valent and Cej is
1-valent; then if ei and ej are on different objects, Cei ej (still 0-valent) is
indistinguishable by all processes from Cej ei (still 1-valent), a contradiction.
Alternatively, if ei and ej are both b-valent, there exists some (1b)-valent ek
such that ei and ej both operate on the same object as ek , by the preceding
argument. So all of e0 . . . ek are operations on the same object.
By the usual argument we know that this object cant be a register. Lets
show it cant be a ring buffer either. Consider the configurations Ce0 e1 . . . ek
and Ce1 . . . ek . These are indistinguishable to the process carrying out ek
(because its sees only the inputs to e1 through ek in its snapshot). So they
must have the same valence, a contradiction.
It follows that the consensus number of a k-element ring buffer is exactly
k.
C.2.3
319
Solution
First observe that each row and column of the torus is a bidirectional ring,
so we can run e.g. Hirschbirg and Sinclairs O(n log n)-message protocol
within each of these rings to find the smallest identifier in the ring. Well
use this to construct the following algorithm:
1. Run Hirschbirg-Sinclair in each row to get a local leader for each row;
this takes n O(n log n) = O(n2 log n) messages. Use an additional n
messages per row to distribute the identifier for the row leader to all
nodes and initiate the next stage of the protocol.
2. Run Hirschbirg-Sinclair in each column with each node adopting the
row leader identifier as its own. This costs another O(n2 log n) messages; at the end, every node knows the minimum identifier of all nodes
in the torus.
The total message complexity is O(n2 log n). (I suspect this is optimal,
but I dont have a proof.)
C.2.4
320
3. Give the best lower bound you can on the total message complexity of
the pre-processing and search algorithms in the case above.
Solution
1. Run depth-first search to find the matching key and return the corresponding value back up the tree. Message complexity is O(|E|) = O(n)
(since each node has only O(1) links).
2. Basic idea: give each node a copy of all key-value pairs, then searches
take zero messages. To give each node a copy of all key-value pairs we
could do convergecast followed by broadcast (O(n) message complexity) or just flood each pair O(n2 ). Either is fine since we dont care
about the message complexity of the pre-processing stage.
3. Suppose the total message complexity of both the pre-processing stage
and the search protocol is less than n 1. Then there is some node
other than the initiator of the search that sends no messages at any
time during the protocol. If this is the node with the matching keyvalue pair, we dont find it. It follows that any solution to the search
problem. requires a total of (n) messages in the pre-processing and
search protocols.
C.3
Write your answers in the blue book(s). Justify your answers. Work alone.
Do not use any notes or books.
There are four problems on this exam, each worth 20 points, for a total
of 80 points. You have approximately three hours to complete this exam.
C.3.1
321
Solution
No protocol for two: turn an anti-consensus protocol with outputs in {0, 1}
into a consensus protocol by having one of the processes always negate its
output.
A protocol for three: Use a splitter.
C.3.2
Solution
Here is an impossibility proof. Suppose there is such an algorithm, and let
it correctly decide odd on a ring of size 2k + 1 for some k and some set
of leader inputs. Now construct a ring of size 4k + 2 by pasting two such
rings together (assigning the same values to the leader bits in each copy)
and run the algorithm on this ring. By the usual symmetry argument,
every corresponding process sends the same messages and makes the same
decisions in both rings, implying that the processes incorrectly decide the
ring of size 4k + 2 is odd.
C.3.3
Consider the following variant of Attiya-Bar-Noy-Dolev for obtaining snapshots of an array instead of individual register values, in an asynchronous
message-passing system with t < n/4 crash failures. The data structure we
322
C.3.4
323
Let Q be a priority queue whose states are multisets of natural numbers and
that has operations enq(v) and deq(), where enq(p) adds a new value v to
the queue, and deq() removes and returns the smallest value in the queue,
or returns null if the queue is empty. (If there is more than one copy of the
smallest value, only one copy is removed.)
What is the consensus number of this object?
Solution
The consensus number is 2. The proof is similar to that for a queue.
To show we can do consensus for n = 2, start with a priority queue with
a single value in it, and have each process attempt to dequeue this value. If
a process gets the value, it decides on its own input; if it gets null, it decides
on the other processs input.
To show we cant do consensus for n = 3, observe first that starting from
any states C of the queue, given any two operations x and y that are both
enqueues or both dequeues, the states Cxy and Cyx are identical. This
means that a third process cant tell which operation went first, meaning
that a pair of enqueues or a pair of dequeues cant get us out of a bivalent
configuration in the FLP argument. We can also exclude any split involving
two operations on different queues (or other objects) But we still need to
consider the case of a dequeue operation d and an enqueue operation e on
the same queue Q. This splits into several subcases, depending on the state
C of the queue in some bivalent configuration:
1. C = {}. Then Ced = Cd = {}, and a third process cant tell which of
d or e went first.
2. C is nonempty and e = enq(v), where v is greater than or equal to the
smallest value in C. Then Cde and Ced are identical, and no third
process can tell which of d or e went first.
3. C is nonempty and e = enq(v), where v is less than any value in C.
Consider the configurations Ced and Cde. Here the process pd that
performs d can tell which operation went first, because it either obtains
v or some other value v 0 6= v. Kill this process. No other process in Ced
or Cde can distinguish the two states without dequeuing whichever of
v or v 0 was not dequeued by pd . So consider two parallel executions
Ced and Cde where consists of an arbitrary sequence of operations
ending with a deq on Q by some process p (if no process ever attempts
324
to dequeue from Q, then we have already won, since the survivors cant
distinguish Ced from Cde). Now the state of all objects is the same
after Ced and Cde, and only pd and p have different states in these
two configurations. So any third process is out of luck.
Appendix D
I/O automata
D.1
D.1.1
Enabled actions
326
D.1.2
D.1.3
Composition of automata
327
D.1.4
Hiding actions
D.1.5
Fairness
328
Fairness is useful e.g. for guaranteeing message delivery in a messagepassing system: make each message-delivery action its own task class and
each message will eventually be delivered; similarly make each messagesending action its own task class and a process will eventually send every
message it intends to send. Tweaking the task classes can allow for possibilities of starvation, e.g. if all message-delivery actions are equivalent then
a spammer can shut down the system in a fair execution where only his
(infinitely many) messages are delivered.
D.1.6
Specifying an automaton
The typical approach is to write down preconditions and effects for each
action (for input actions, the preconditions are empty). An example would
be the spambot in Algorithm D.1.
1
2
3
4
5
6
7
8
effects
none (keep spamming)
Algorithm D.1: Spambot as an I/O automaton
D.2
When studying the behavior of a system, traces are what we really care
about, and we want to avoid talking about states as much as possible. So
what well aim to do is to get rid of the states early by computing the set of
traces (or fair traces) of each automaton in our system, then compose traces
to get traces for the system as a whole. Our typical goal will be to show
that the resulting set of traces has some desirable properties, usually of the
form (1) nothing bad happens (a safety property); (2) something good
329
D.2.1
Example
A property we might demand of the spambot above (or some other abstraction of a message channel) is that it only delivers messages that have
previously been given to it. As a trace property this says that in any trace
t, if tk = spam(m), then tj = setMessage(m) for some j < k. (As a set, this
is just the set of all sequences of external spambot-actions that have this
property.) Call this property P .
To prove that the spambot automaton given above satisfies P , we might
argue that for any execution s0 a0 s1 a1 . . . , that si = m in the last setMessage
action preceding si , or if there is no such action. This is easily proved
by induction on i. It then follows that since spam(m) can only transmit the
current state, that if spam(m) follows si = m that it follows some earlier
setMessage(m) as claimed.
However, there are traces that satisfy P that dont correspond to executions of the spambot; for example, consider the trace setMessage(0)setMessage(1)spam(0).
This satisfies P (0 was previously given to the automaton spam(0)), but the
automaton wont generate it because the 0 was overwritten by the later
setMessage(1) action. Whether this is indicates a problem with our automaton not being nondeterministic enough or our trace property being too weak
is a question about what we really want the automaton to do.
D.2.2
D.2.2.1
P is a safety property if
1. P is nonempty.
330
Liveness properties
331
task(A), then the spambot doesnt satisfy the liveness property: in an execution that alternates setMessage(m1 )setMessage(m2 )setMessage(m1 )setMessage(m2 ) . . .
there are infinitely many states in which spam(m1 ) is not enabled, so fairness
doesnt require doing it even once, and similarly for spam(m2 ).
D.2.2.3
Other properties
Any other property P can be expressed as the intersection of a safety property (the closure of P ) and a liveness property (the union of P and the set of
all finite sequences that arent prefixes of traces in P ). The intuition is that
the safety property prunes out the excess junk we threw into the liveness
property to make it a liveness property, since any sequence that isnt a prefix
of a trace in P wont go into the safety property. This leaves only the traces
in P .
Example: Let P = {0n 1 } be the set of traces where we eventually give
up on our pointless 0-action and start doing only 1-actions forever. Then P
is the intersection of the safety property S = {0n 1m } P (the extra junk is
from prefix-closure) and the liveness property L = {0n 11m 0x|xin{0, 1} }P .
Property S says that once we do a 1 we never do a 0, but allows finite
executions of the form 0n where we never do a 1. Property L says that we
eventually do a 1-action, but that we cant stop unless we later do at least
one 0-action.
D.2.3
Compositional arguments
332
Example
D.2.4
Simulation arguments
333
Example
A single spambot A can simulate the conjoined spambots A1 +A2 . Proof: Let
f (s) = (s, s). Then f () = (, ) is a start state of A1 + A2 . Now consider
a transition (s, a, s0 ) of A; the action a is either (a) setMessage(m), giving
s0 = m; here we let x = setMessage(m)spam1 (m) with trace(x) = trace(a)
since spam1 (m) is internal and f (s0 ) = (m, m) the result of applying x; or (b)
a = spam(m), which does not change s or f (s); the matching x is spam(m),
which also does not change f (s) and has the same trace.
A different proof could take advantage of f being a relation by defining
f (s) = {(s, s0 )|s0 states(A2 )}. Now we dont care about the state of
A2 , and treat a setMessage(m) action of A as the sequence setMessage(m)
in A1 + A2 (which updates the first component of the state correctly) and
treat a spam(m) action as spam1 (m)spam(m) (which updates the second
componentwhich we dont care aboutand has the correct trace.) In
some cases an approach of this sort is necessary because we dont know
which simulated state we are heading for until we get an action from A.
Note that the converse doesnt work: A1 + A2 dont simulate A, since
there are traces of A1 +A2 (e.g. setMessage(0)spam1 (0)setMessage(1)spam(0))
that dont restrict to traces of A. See [Lyn96, 8.5.5] for a more complicated
example of how one FIFO queue can simulate two FIFO queues and vice
versa (a situation called bisimulation).
Since we are looking at traces rather than fair traces, this kind of simulation doesnt help much with liveness properties, but sometimes the connection between states plus a liveness proof for B can be used to get a liveness
proof for A (essentially we have to argue that A cant do infinitely many
action without triggering a B-action in an appropriate task class). Again
see [Lyn96, 8.5.5].
Bibliography
[AA11]
[AAC09]
BIBLIOGRAPHY
335
[AAG+ 10]
[AAGG11]
Dan Alistarh, James Aspnes, Seth Gilbert, and Rachid Guerraoui. The complexity of renaming. In Fifty-Second Annual
IEEE Symposium on Foundations of Computer Science, pages
718727, October 2011.
Hagit Attiya, Amotz Bar-Noy, and Danny Dolev. Sharing memory robustly in message-passing systems. Journal of the ACM,
42(1):124142, 1995.
[Abr88]
[AC08]
[AC09]
BIBLIOGRAPHY
336
[ACH10]
Hagit Attiya and Keren Censor-Hillel. Lower bounds for randomized consensus under a weak adversary. SIAM J. Comput.,
39(8):38853904, 2010.
[ACH13]
[AE11]
[AEH75]
E. A. Akkoyunlu, K. Ekanadham, and R. V. Huber. Some constraints and tradeoffs in the design of network communications.
SIGOPS Oper. Syst. Rev., 9:6774, November 1975.
[AF01]
Hagit Attiya and Arie Fouren. Adaptive and efficient algorithms for lattice agreement and renaming. SIAM Journal on
Computing, 31(2):642664, 2001.
[AFL83]
[AG91]
Yehuda Afek and Eli Gafni. Time and message bounds for
election in synchronous and asynchronous complete networks.
SIAM Journal on Computing, 20(2):376394, 1991.
[AGGT09]
[AGHK06]
BIBLIOGRAPHY
337
[AGTV92]
[AH90a]
[AH90b]
[AHM09]
Hagit Attiya, Eshcar Hillel, and Alessia Milani. Inherent limitations on disjoint-access parallel implementations of transactional memory. In Friedhelm Meyer auf der Heide and
Michael A. Bender, editors, SPAA 2009: Proceedings of the
21st Annual ACM Symposium on Parallelism in Algorithms
and Architectures, Calgary, Alberta, Canada, August 11-13,
2009, pages 6978. ACM, 2009.
[AHR95]
[AHS94]
James Aspnes, Maurice Herlihy, and Nir Shavit. Counting networks. Journal of the ACM, 41(5):10201048, September 1994.
[AHW08]
[AKP+ 06]
Hagit Attiya, Fabian Kuhn, C. Greg Plaxton, Mirjam Wattenhofer, and Roger Wattenhofer. Efficient adaptive collect using
randomization. Distributed Computing, 18(3):179188, 2006.
BIBLIOGRAPHY
338
[AKS83]
[AM93]
[AM94]
Hagit Attiya and Marios Mavronicolas. Efficiency of semisynchronous versus asynchronous networks. Mathematical Systems
Theory, 27(6):547571, November 1994.
[AM99]
Yehuda Afek and Michael Merritt. Fast, wait-free (2k 1)renaming. In PODC, pages 105112, 1999.
[And90]
Thomas E. Anderson. The performance of spin lock alternatives for shared-money multiprocessors. IEEE Trans. Parallel
Distrib. Syst., 1(1):616, 1990.
[And94]
[Ang80]
[Asp10]
[Asp11]
[Asp12a]
James Aspnes. Faster randomized consensus with an oblivious adversary. In 2012 ACM Symposium on Principles of Distributed Computing, pages 18, July 2012.
BIBLIOGRAPHY
339
[Asp12b]
James Aspnes. A modular approach to shared-memory consensus, with applications to the probabilistic-write model. Distributed Computing, 25(2):179188, May 2012.
[ASW88]
Hagit Attiya, Marc Snir, and Manfred K. Warmuth. Computing on an anonymous ring. J. ACM, 35:845875, October
1988.
[Aum97]
[AW99]
[AW04]
Hagit Attiya and Jennifer Welch. Distributed Computing: Fundamentals, Simulations, and Advanced Topics. Wiley, second
edition, 2004. On-line version: http://dx.doi.org/10.1002/
0471478210. (This may not work outside Yale.).
[Awe85]
[AWW93]
Yehuda Afek, Eytan Weisberger, and Hanan Weisman. A completeness theorem for a class of synchronization objects (extended abstract). In Proceedings of the Twelfth Annual ACM
Symposium on Principles of Distributed Computing, pages 159
170, 1993.
[Bat68]
[BDLP08]
[Bel03]
BIBLIOGRAPHY
340
[BEW11]
[BG93]
Elizabeth Borowsky and Eli Gafni. Generalized flp impossibility result for t-resilient asynchronous computations. In STOC,
pages 91100, 1993.
[BG97]
[BG11]
[BGA94]
[BGLR01]
[BGP89]
Piotr Berman, Juan A. Garay, and Kenneth J. Perry. Towards optimal distributed consensus (extended abstract). In
30th Annual Symposium on Foundations of Computer Science,
30 October-1 November 1989, Research Triangle Park, North
Carolina, USA, pages 410415, 1989.
[BL93]
James E. Burns and Nancy A. Lynch. Bounds on shared memory for mutual exclusion. Inf. Comput., 107(2):171184, 1993.
[BND89]
[Bor95]
BIBLIOGRAPHY
341
[BPSV06]
[BR91]
[Bur80]
[Cha93]
Soma Chaudhuri. More choices allow more faults: Set consensus problems in totally asynchronous systems. Inf. Comput.,
105(1):132158, 1993.
[Cha96]
Tushar Deepak Chandra. Polylog randomized wait-free consensus. In Proceedings of the Fifteenth Annual ACM Symposium on Principles of Distributed Computing, pages 166175,
Philadelphia, Pennsylvania, USA, 2326 May 1996.
[CHT96]
[CIL94]
[CL85]
[CR79]
BIBLIOGRAPHY
342
[CR08]
Armando Castaeda and Sergio Rajsbaum. New combinatorial topology upper and lower bounds for renaming. In
Rida A. Bazzi and Boaz Patt-Shamir, editors, Proceedings of
the Twenty-Seventh Annual ACM Symposium on Principles of
Distributed Computing, PODC 2008, Toronto, Canada, August
18-21, 2008, pages 295304. ACM, 2008.
[CT96]
[DH04]
[DHW97]
[DLP+ 86]
[DLS88]
[DS83]
Danny Dolev and H. Raymond Strong. Authenticated algorithms for byzantine agreement. SIAM J. Comput., 12(4):656
666, 1983.
[EHS12]
[FH07]
[FHS98]
Faith Ellen Fich, Maurice Herlihy, and Nir Shavit. On the space
complexity of randomized synchronization. J. ACM, 45(5):843
862, 1998.
BIBLIOGRAPHY
343
[FHS05]
Faith Ellen Fich, Danny Hendler, and Nir Shavit. Linear lower
bounds on real-world implementations of concurrent objects.
In Foundations of Computer Science, Annual IEEE Symposium on, pages 165173, Los Alamitos, CA, USA, 2005. IEEE
Computer Society.
[Fic05]
[Fid91]
[FK07]
[FL82]
[FL87]
[FL06]
[FLM86]
BIBLIOGRAPHY
344
[FLMS05]
[FLP85]
[Gaf98]
[Gaf09]
Eli Gafni. The extended BG-simulation and the characterization of t-resiliency. In Proceedings of the 41st annual ACM
symposium on Theory of computing, pages 8592. ACM, 2009.
[Gal82]
[Gol11]
BIBLIOGRAPHY
345
[Gra78]
[GRS90]
[GW12a]
[GW12b]
[Her91a]
[Her91b]
Maurice Herlihy. Wait-free synchronization. ACM Transactions on Programming Languages and Systems, 13(1):124149,
January 1991.
[Her93]
Maurice Herlihy. A methodology for implementing highly concurrent objects. ACM Trans. Program. Lang. Syst., 15(5):745
770, 1993.
[HFP02]
Timothy L. Harris, Keir Fraser, and Ian A. Pratt. A practical multi-word compare-and-swap operation. In Dahlia Malkhi,
editor, Distributed Computing, 16th International Conference,
DISC 2002, Toulouse, France, October 28-30, 2002 Proceedings, volume 2508 of Lecture Notes in Computer Science, pages
265279. Springer, 2002.
[HLM03]
BIBLIOGRAPHY
346
[HM93]
[HS80]
Daniel S. Hirschberg and J. B. Sinclair. Decentralized extremafinding in circular configurations of processors. Commun.
ACM, 23(11):627628, 1980.
[HS99]
[HW90]
[HW11]
Danny Hendler and Philipp Woelfel. Randomized mutual exclusion with sub-logarithmic rmr-complexity. Distributed Computing, 24(1):319, 2011.
[IMCT94]
[IR09]
[Jay97]
[Jay02]
[Jay11]
[JTT00]
Prasad Jayanti, King Tan, and Sam Toueg. Time and space
lower bounds for nonblocking implementations. SIAM J. Comput., 30(2):438456, 2000.
J. ACM,
BIBLIOGRAPHY
347
[Kaw00]
Jawal Y. Kawash. Limitations and Capabilities of Weak Memory Consistency Systems. PhD thesis, University of Calgary,
January 2000.
[LAA87]
Michael C. Loui and Hosame H. Abu-Amara. Memory requirements for agreement among unreliable asynchronous processes.
In Franco P. Preparata, editor, Parallel and Distributed Computing, volume 4 of Advances in Computing Research, pages
163183. JAI Press, 1987.
[Lam77]
Leslie Lamport. Concurrent reading and writing. Communications of the ACM, 20(11):806811, November 1977.
[Lam78]
[Lam79]
[Lam83]
[Lam87]
[Lam98]
Leslie Lamport. The part-time parliament. ACM Trans. Comput. Syst., 16(2):133169, 1998.
[Lam01]
[LL77]
Grard Le Lann. Distributed systemstowards a formal approach. In B. Gilchrist, editor, Information Processing 77,
pages 155160. North-Holland, 1977.
[Lyn96]
[MA95]
BIBLIOGRAPHY
348
[Mat93]
Friedemann Mattern. Efficient algorithms for distributed snapshots and global virtual time approximation. J. Parallel Distrib. Comput., 18(4):423434, 1993.
[MCS91]
[Mor95]
Shlomo Moran. Using approximate agreement to obtain complete disagreement: the output structure of input-free asynchronous computations. In Third Israel Symposium on the
Theory of Computing and Systems, pages 251257, January
1995.
[MR98]
Dahlia Malkhi and Michael K. Reiter. Byzantine quorum systems. Distributed Computing, 11(4):203213, 1998.
[MR10]
[MRRT08]
[MRWW01] Dahlia Malkhi, Michael K. Reiter, Avishai Wool, and Rebecca N. Wright. Probabilistic quorum systems. Inf. Comput.,
170(2):184206, 2001.
[NT87]
Gil Neiger and Sam Toueg. Substituting for real time and
common knowledge in asynchronous distributed systems. In
Proceedings of the sixth annual ACM Symposium on Principles
of distributed computing, PODC 87, pages 281293, New York,
NY, USA, 1987. ACM.
[NW98]
Moni Naor and Avishai Wool. The load, capacity, and availability of quorum systems. SIAM J. Comput., 27(2):423447,
1998.
[Oka99]
BIBLIOGRAPHY
349
[Pet81]
[Pet82]
[PF77]
Gary L. Peterson and Michael J. Fischer. Economical solutions for the critical section problem in a distributed system
(extended abstract). In John E. Hopcroft, Emily P. Friedman, and Michael A. Harrison, editors, Proceedings of the 9th
Annual ACM Symposium on Theory of Computing, May 4-6,
1977, Boulder, Colorado, USA, pages 9197. ACM, 1977.
[Plo89]
[PSL80]
[PW95]
[PW97a]
[PW97b]
[RST01]
[Rup00]
[Sch95]
BIBLIOGRAPHY
350
E. Sperner. Neuer Beweis fr die Invarianz der Dimensionszahl und des Gebietes. Abhandlungen aus dem Mathematischen Seminar der Universitt Hamburg, 6:265272, 1928.
10.1007/BF02940617.
[SSW91]
[ST97]
[SZ00]
Michael E. Saks and Fotios Zaharoglou. Wait-free k-set agreement is impossible: The topology of public knowledge. SIAM
J. Comput., 29(5):14491483, 2000.
[TV02]
[VL92]
[Wel87]
[YA95]
[Yu06]
Index
-high-quality quorum, 105
-agreement, 273
-intersecting quorum system, 104
b-disseminating quorum system, 103
b-masking quorum system, 104
k-connectivity, 270
k-neighborhood, 41
k-set agreement, 254, 255, 311
0-valent, 63
1-valent, 63
abstract simplicial complex, 257
accepter, 67
accessible state, 7
accuracy, 74
action, 325
input, 325
internal, 325
output, 325
active round, 41
adaptive, 208, 216
adaptive adversary, 193
adaptive collect, 217
admissible, 8
adopt-commit object, 195
adopt-commit protocol, 195
adversary
adaptive, 193
content-oblivious, 15, 193
intermediate, 193
location-oblivious, 193
oblivious, 15, 193
strong, 193
value-oblivious, 193
weak, 193
agreement, 13, 43, 62
-, 273
k-set, 254, 255, 311
approximate, 273, 301
Byzantine, 50
probabilistic, 196
randomized, 15
safe, 248
simplex, 268
synchronous, 43
alpha synchronizer, 28, 94
anonymous, 32
anti-consensus, 320
append, 316
append-and-fetch, 316
approximate agreement, 273, 301
array
max, 181
asynchronous, 8
Asynchronous Computability Theorem, 267
asynchronous message-passing, 2, 8
atomic, 115, 222
atomic queue, 2
atomic register, 108
atomic registers, 2
atomic snapshot object, 153
average-case complexity, 38
351
INDEX
collect, 120, 153
adaptive, 217
coordinated, 167
colorless task, 252
common node, 56
common2, 186
communication pattern, 45
commuting object, 186
commuting operations, 143
comparability, 159
comparators, 219
compare-and-swap, 2, 113, 145
comparison-based algorithm, 40
complement, 103
completeness, 74, 186
complex
input, 258
output, 258
protocol, 267
simplicial, 255
complexity
bit, 113
message, 11
obstruction-free step, 232
space, 113
cache-coherent, 135
step, 10
capacity, 101
individual, 10, 112
CAS, 145
per-process, 112
causal ordering, 85
total, 10, 112
causal shuffle, 86
time, 10, 112
Chandra-Toueg consensus protocol, 79 composite register, 154
chromatic subdivision, 267
computation event, 6
class G, 241
conciliator, 196
client, 8
concurrency detector, 287
client-server, 8
concurrent execution, 110
clock
configuration, 2, 6
logical, 85
initial, 6
Lamport, 87
connected, 258
Neiger-Toueg-Welch, 88
simply, 270
coherence, 195
consensus, 12, 192
beta synchronizer, 28
BFS, 25
BG simulation, 248
extended, 252
big-step, 112
binary consensus, 49
birthday paradox, 216
bisimulation, 333
bit complexity, 113
bivalence, 63
bivalent, 63
Borowsky-Gafni simulation, 248
bounded, 13
bounded bypass, 122
bounded fetch-and-subtract, 313
bounded wait-free, 273
breadth-first search, 25
broadcast
reliable, 80
terminating reliable, 83
busy-waiting, 112
Byzantine agreement, 50
weak, 53
Byzantine failure, 2, 50
352
INDEX
binary, 49
Chandra-Toeug, 79
randomized, 192
synchronous, 43
universality of, 150
consensus number, 140
consensus object, 149
consistency property, 111
consistent cut, 89
consistent scan, 154
consistent snapshot, 89
content-oblivious adversary, 15, 193
contention, 113, 240
contention management, 240
contention manager, 230
continuous function, 266
convergecast, 22
Convergence., 195
coordinated attack, 12
randomized, 14
coordinated collect, 167
coordinator, 79
copy
memory-to-memory, 146
counter, 287
counting network, 219
course staff, xviii
cover, 133
crash failure, 2, 44
crashes fully, 45
critical, 121
critical section, 121
deadlock, 122
decision bit, 195
delivery event, 6
depth
sorting network, 219
deque, 233
detector
353
failure, 73
deterministic, 7, 32
deterministic renaming, 209
diameter, 26
direct scan, 154, 158
disk, 270
distributed breadth-first search, 21
distributed computing, 1
distributed shared memory, 115, 136
distributed shared-memory, 2
downward validity, 159
dual graph, 103
dynamic transaction, 222
Elias gamma code, 179
enabled, 325
equivalence relation, 32
event, 6
computation, 6
delivery, 6
receive, 85
send, 85
eventually perfect failure detector, 74,
76
eventually strong failure detector, 76,
311
execution, 6, 326
concurrent, 110
fair, 327
execution segment, 6
exiting, 121
exponential information gathering, 47
extended BG simulation, 252
failure
Byzantine, 2, 50
crash, 2, 44
omission, 2
failure detector, 2, 72, 73
eventually perfect, 74, 76
INDEX
eventually strong, 76, 311
perfect, 76
strong, 76
failure proability
quorum system, 101
fair, 327
fair execution, 327
fairness, 3, 8
fast path, 131
fault-tolerance
quorum system, 101
faulty, 44
fetch-and-add, 113, 144
fetch-and-cons, 114, 145, 152
fetch-and-increment, 307
fetch-and-subtract
bounded, 313
flooding, 18, 25
Frankenexecution, 51
full-information algorithm, 48
full-information protocol, 40
function
continuous, 266
global synchronizer, 93
Gnutella, 19
handshake, 157
happens-before, 85, 94
hierarchy
robust, 140
wait-free, 140
high quality quorum, 105
historyless, 295
historyless object, 173, 186
homeomorphism, 256
homotopy, 270
I/O automaton, 325
identity, 33
IIS, 260
354
immediacy, 260
impossibility, 3, 4
indirect scan, 154, 158
indistinguishability, 4, 44
indistinguishability proof, 13
indistinguishability proofs, 7
indistinguishable, 13
individual step complexity, 10, 112
individual work, 112
initial configuration, 6
initiator, 25
input action, 325
input complex, 258
instructor, xviii
interfering operations, 143
intermediate adversary, 193
internal action, 325
interval, 110
invariant, 3, 4
invariants, 330
invocation, 110, 115
iterated immediate snapshot, 260
join, 159
Knigs lemma, 13
Lamport clock, 87
lattice, 159
lattice agreement, 159
leader election, 11
learner, 67
left null, 233
limit-closed, 330
linearizability, 111, 118
linearizable, 111, 115
linearization, 118
linearization point, 111, 156
liveness, 3, 4
liveness property, 329, 330
LL/SC, 145, 224
INDEX
load, 101
load balancing, 216
load-linked, 145, 224
load-linked/store-conditional, 2, 167,
224
load-linked/stored-conditional, 145
local coin, 192
local synchronizer, 93
location-oblivious adversary, 193
lock-free, 229
lockable register, 309
lockout, 122
lockout-freedom, 122
logical clock, 85, 87
Lamport, 87
Neiger-Toueg-Welch, 88
long-lived renaming, 211, 216
long-lived strong renaming, 216
lower bound, 4
355
counting, 219
overlay, 8
renaming, 218
sorting, 218
node
common, 56
non-blocking, 222, 229
non-triviality, 44
nonce, 117
nondeterminism, 1
nondeterministic solo termination, 205
null
left, 233
right, 233
null path, 270
null-homotopic, 270
object, 108
commuting, 186
historyless, 173, 186
resilient, 171
map
ring buffer, 317
simplicial, 266
snapshot, 153, 171
max array, 181
swap, 173
max register, 176
oblivious adversary, 15, 193
meet, 159
obstruction-free, 229
memory stall, 240
obstruction-free step complexity, 232
memory-to-memory copy, 146
omission failure, 2
memory-to-memory swap, 145
one-time building blocks, 130
message complexity, 11
operation, 66
message-passing, 2
operations
asynchronous, 2, 8
commuting, 143
semi-synchronous, 2
interfering, 143
synchronous, 2, 10
overwriting, 143
multi-writer multi-reader register, 109
oracle, 233
multi-writer register, 109
order-equivalent, 40
mutual exclusion, 113, 121
order-preserving renaming, 209
mutual exclusion protocol, 121
ordering
Neiger-Toueg-Welch clock, 88
causal, 85
network, 8
output action, 325
INDEX
output complex, 258
overlay network, 8
overwriting operations, 143
participating set, 268
path
null, 270
path-connected, 266
Paxos, 66
per-process step complexity, 112
per-process work, 112
perfect failure detector, 76
persona, 201
perturbable, 173, 174
phase king, 57
preference, 276
prefix code, 178
prefix-closed, 330
probabilistic agreement, 196
probabilistic quorum system, 104
probabilistic termination, 192
process, 6
product, 331
progress, 122
progress function, 330
progress measure, 4
proof
impossibility, 4
invariant, 4
liveness, 4
lower bound, 4
safety, 4
termination, 4
property
stable, 91
proposer, 67
protocol complex, 267
queue
atomic, 2
356
wait-free, 144
with peek, 145
quiesce, 20
quiescent, 40, 326
quorum
-high-quality, 105
high quality, 105
quorum size, 101
quorum system, 100
-intersecting, 104
b-disseminating, 103
b-masking, 104
probabilistic, 104
signed, 106
strict, 104
racing counters, 231
Ramsey theory, 41
Ramseys Theorem, 41
randomization, 2, 33
randomized agreement, 15
randomized consensus, 192
randomized coordinated attack, 14
randomized splitter, 217
RatRace, 217
read, 115
read-modify-write, 113, 122
receive event, 85
register, 108, 115
atomic, 2, 108
composite, 154
lockable, 309
max, 176
multi-writer, 109
single-reader, 109
single-writer, 109
relation
simulation, 332
reliable broadcast, 80
terminating, 83
INDEX
357
sense of direction, 32
sequential consistency, 111
sequential execution, 115
server, 8
session, 98
session problem, 97
shared memory, 2
distributed, 115
sifter, 199
signature, 325
signed quorum system, 106
similar, 40, 85
simplex, 256
simplex agreement, 268
simplicial complex, 255, 256
abstract, 257
simplicial map, 266
simply connected, 270
simulation, 3, 329
simulation relation, 332
single-reader single-writer register, 109
single-use swap object, 189
single-writer multi-reader register, 109
single-writer register, 109
slow path, 131
snapshot, 153
snapshot object, 171
safe agreement, 248
software transactional memory, 222
safety, 3
solo termination, 173
safety property, 4, 328, 329
solo-terminating, 173, 229
scan
sorting network, 218
direct, 154, 158
space complexity, 113
indirect, 154, 158
special action, 98
schedule, 6
Sperners Lemma, 255
admissible, 8
sphere, 270
semi-lattice, 160
splitter, 129, 130
semi-synchronous message-passing, 2
randomized, 217
semisynchrony
splitters, 212
unknown-bound, 235
spread, 274
send event, 85
stable property, 91
remainder, 121
remote memory reference, 112, 135
renaming, 130, 207
deterministic, 209
long-lived, 211
long-lived strong, 216
order-preserving, 209
strong, 208, 216
tight, 208
renaming network, 218
replicated state machine, 66, 91
representative, 202
request, 8
reset, 122
ReShuffle, 218
resilience, 171
resilient object, 171
response, 8, 66, 110, 115
restriction, 7
right null, 233
ring, 32
ring buffer object, 317
RMR, 112, 135
RMW, 113
robust hierarchy, 140
round, 10, 69, 112
INDEX
staff, xviii
stall, 240
starvation, 3
state, 6, 66
accessible, 7
static transaction, 222
step complexity, 10
individual, 112
obstruction-free, 232
per-process, 112
total, 112
sticky bit, 114, 145
two-writer, 289
sticky register, 114
STM, 222
store-conditional, 145, 224
strict quorum system, 104
strong adversary, 193
strong failure detector, 76
strong renaming, 208, 216
subdivision, 260
chromatic, 267
suspect, 73
swap, 144
memory-to-memory, 145
swap object, 173
single-use, 189
symmetry, 32
symmetry breaking, 32
synchronizer, 10, 25, 93
alpha, 28, 94
beta, 28, 94
gamma, 95
global, 93
local, 93
synchronizers, 3
synchronous agreement, 43
synchronous message-passing, 2, 10
task
358
colorless, 252
teaching fellow, xviii
terminating reliable broadcast, 83
termination, 4, 13, 43, 62, 192
solo, 173
test-and-set, 113, 122, 144, 187
tight renaming, 208
time complexity, 10, 112
time-to-live, 19
torus, 299
total step complexity, 10, 112
total work, 112
trace, 326
trace property, 329
transaction, 222
dynamic, 222
static, 222
transactional memory
software, 222
transition function, 7
transition relation, 325
transitive closure, 86
triangulation, 261
trying, 121
Two Generals, 3, 12
two-writer sticky bit, 289
unidirectional ring, 33
uniform, 38
univalent, 63
universality of consensus, 150
unknown-bound semisynchrony, 235
unsafe, 249
upward validity, 159
validity, 13, 43, 62
downward, 159
upward, 159
value-oblivious adversary, 193
values, 195
INDEX
vector clock, 89
wait-free, 110, 140, 229
bounded, 273
wait-free hierarchy, 140
wait-free queue, 144
wait-freedom, 160, 229
weak adversary, 193
weak Byzantine agreement, 53
weird condition, 244
width, 113
sorting network, 219
wire, 219
work
individual, 112
per-process, 112
total, 112
write, 115
359