blob: 903150b553208d2bc8a32c95a1bd38932d4a4a8b [file] [log] [blame]
Austin Schuh20b2b082019-09-11 20:42:56 -07001#include "aos/ipc_lib/lockless_queue.h"
2
3#include <linux/futex.h>
4#include <sys/types.h>
5#include <syscall.h>
6#include <unistd.h>
7#include <algorithm>
8#include <iomanip>
9#include <iostream>
10#include <sstream>
11
Austin Schuh20b2b082019-09-11 20:42:56 -070012#include "aos/ipc_lib/lockless_queue_memory.h"
Alex Perrycb7da4b2019-08-28 19:35:56 -070013#include "aos/realtime.h"
Austin Schuh20b2b082019-09-11 20:42:56 -070014#include "aos/util/compiler_memory_barrier.h"
Austin Schuhf257f3c2019-10-27 21:00:43 -070015#include "glog/logging.h"
Austin Schuh20b2b082019-09-11 20:42:56 -070016
17namespace aos {
18namespace ipc_lib {
Austin Schuh20b2b082019-09-11 20:42:56 -070019namespace {
20
Brian Silvermanfafe1fa2019-12-18 21:42:18 -080021class GrabQueueSetupLockOrDie {
22 public:
23 GrabQueueSetupLockOrDie(LocklessQueueMemory *memory) : memory_(memory) {
24 const int result = mutex_grab(&(memory->queue_setup_lock));
25 CHECK(result == 0 || result == 1) << ": " << result;
26 }
Austin Schuh20b2b082019-09-11 20:42:56 -070027
Brian Silvermanfafe1fa2019-12-18 21:42:18 -080028 ~GrabQueueSetupLockOrDie() { mutex_unlock(&(memory_->queue_setup_lock)); }
29
30 GrabQueueSetupLockOrDie(const GrabQueueSetupLockOrDie &) = delete;
31 GrabQueueSetupLockOrDie &operator=(const GrabQueueSetupLockOrDie &) = delete;
32
33 private:
34 LocklessQueueMemory *const memory_;
35};
36
37void Cleanup(LocklessQueueMemory *memory, const GrabQueueSetupLockOrDie &) {
38 // Make sure we start looking at shared memory fresh right now. We'll handle
39 // people dying partway through by either cleaning up after them or not, but
40 // we want to ensure we clean up after anybody who has already died when we
41 // start.
42 aos_compiler_memory_barrier();
43
Austin Schuh20b2b082019-09-11 20:42:56 -070044 const size_t num_senders = memory->num_senders();
45 const size_t queue_size = memory->queue_size();
46 const size_t num_messages = memory->num_messages();
47
48 // There are a large number of crazy cases here for how things can go wrong
49 // and how we have to recover. They either require us to keep extra track of
50 // what is going on, slowing down the send path, or require a large number of
51 // cases.
52 //
53 // The solution here is to not over-think it. This is running while not real
54 // time during construction. It is allowed to be slow. It will also very
55 // rarely trigger. There is a small uS window where process death is
56 // ambiguous.
57 //
58 // So, build up a list N long, where N is the number of messages. Search
59 // through the entire queue and the sender list (ignoring any dead senders),
60 // and mark down which ones we have seen. Once we have seen all the messages
61 // except the N dead senders, we know which messages are dead. Because the
62 // queue is active while we do this, it may take a couple of go arounds to see
63 // everything.
64
65 // Do the easy case. Find all senders who have died. See if they are either
66 // consistent already, or if they have copied over to_replace to the scratch
67 // index, but haven't cleared to_replace. Count them.
68 size_t valid_senders = 0;
69 for (size_t i = 0; i < num_senders; ++i) {
70 Sender *sender = memory->GetSender(i);
71 const uint32_t tid =
Brian Silvermanfafe1fa2019-12-18 21:42:18 -080072 __atomic_load_n(&(sender->tid.futex), __ATOMIC_ACQUIRE);
Austin Schuh20b2b082019-09-11 20:42:56 -070073 if (tid & FUTEX_OWNER_DIED) {
Alex Perrycb7da4b2019-08-28 19:35:56 -070074 VLOG(3) << "Found an easy death for sender " << i;
Brian Silvermanfafe1fa2019-12-18 21:42:18 -080075 // We can do a relaxed load here because we're the only person touching
76 // this sender at this point.
Austin Schuh20b2b082019-09-11 20:42:56 -070077 const Index to_replace = sender->to_replace.RelaxedLoad();
78 const Index scratch_index = sender->scratch_index.Load();
79
80 // I find it easiest to think about this in terms of the set of observable
Brian Silvermanfafe1fa2019-12-18 21:42:18 -080081 // states. The main code progresses through the following states:
Austin Schuh20b2b082019-09-11 20:42:56 -070082
83 // 1) scratch_index = xxx
84 // to_replace = invalid
85 // This is unambiguous. Already good.
86
87 // 2) scratch_index = xxx
88 // to_replace = yyy
89 // Very ambiguous. Is xxx or yyy the correct one? Need to either roll
90 // this forwards or backwards.
91
92 // 3) scratch_index = yyy
93 // to_replace = yyy
94 // We are in the act of moving to_replace to scratch_index, but didn't
95 // finish. Easy.
96
97 // 4) scratch_index = yyy
98 // to_replace = invalid
99 // Finished, but died. Looks like 1)
100
101 // Any cleanup code needs to follow the same set of states to be robust to
102 // death, so death can be restarted.
103
104 // Could be 2) or 3).
105 if (to_replace.valid()) {
106 // 3)
107 if (to_replace == scratch_index) {
108 // Just need to invalidate to_replace to finish.
109 sender->to_replace.Invalidate();
110
111 // And mark that we succeeded.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800112 __atomic_store_n(&(sender->tid.futex), 0, __ATOMIC_RELEASE);
Austin Schuh20b2b082019-09-11 20:42:56 -0700113 ++valid_senders;
114 }
115 } else {
116 // 1) or 4). Make sure we aren't corrupted and declare victory.
117 CHECK(scratch_index.valid());
118
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800119 __atomic_store_n(&(sender->tid.futex), 0, __ATOMIC_RELEASE);
Austin Schuh20b2b082019-09-11 20:42:56 -0700120 ++valid_senders;
121 }
122 } else {
123 // Not dead.
124 ++valid_senders;
125 }
126 }
127
128 // If all the senders are (or were made) good, there is no need to do the hard
129 // case.
130 if (valid_senders == num_senders) {
131 return;
132 }
133
Alex Perrycb7da4b2019-08-28 19:35:56 -0700134 VLOG(3) << "Starting hard cleanup";
Austin Schuh20b2b082019-09-11 20:42:56 -0700135
136 size_t num_accounted_for = 0;
137 size_t num_missing = 0;
138 ::std::vector<bool> accounted_for(num_messages, false);
139
140 while ((num_accounted_for + num_missing) != num_messages) {
141 num_missing = 0;
142 for (size_t i = 0; i < num_senders; ++i) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800143 Sender *const sender = memory->GetSender(i);
Austin Schuh20b2b082019-09-11 20:42:56 -0700144 const uint32_t tid =
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800145 __atomic_load_n(&(sender->tid.futex), __ATOMIC_ACQUIRE);
Austin Schuh20b2b082019-09-11 20:42:56 -0700146 if (tid & FUTEX_OWNER_DIED) {
147 ++num_missing;
148 } else {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800149 // We can do a relaxed load here because we're the only person touching
150 // this sender at this point, if it matters. If it's not a dead sender,
151 // then any message it every has will already be accounted for, so this
152 // will always be a NOP.
Austin Schuh20b2b082019-09-11 20:42:56 -0700153 const Index scratch_index = sender->scratch_index.RelaxedLoad();
154 if (!accounted_for[scratch_index.message_index()]) {
155 ++num_accounted_for;
156 }
157 accounted_for[scratch_index.message_index()] = true;
158 }
159 }
160
161 for (size_t i = 0; i < queue_size; ++i) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800162 // Same logic as above for scratch_index applies here too.
Austin Schuh20b2b082019-09-11 20:42:56 -0700163 const Index index = memory->GetQueue(i)->RelaxedLoad();
164 if (!accounted_for[index.message_index()]) {
165 ++num_accounted_for;
166 }
167 accounted_for[index.message_index()] = true;
168 }
169 }
170
171 while (num_missing != 0) {
172 const size_t starting_num_missing = num_missing;
173 for (size_t i = 0; i < num_senders; ++i) {
174 Sender *sender = memory->GetSender(i);
175 const uint32_t tid =
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800176 __atomic_load_n(&(sender->tid.futex), __ATOMIC_ACQUIRE);
Austin Schuh20b2b082019-09-11 20:42:56 -0700177 if (tid & FUTEX_OWNER_DIED) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800178 // We can do relaxed loads here because we're the only person touching
179 // this sender at this point.
Austin Schuh20b2b082019-09-11 20:42:56 -0700180 const Index scratch_index = sender->scratch_index.RelaxedLoad();
181 const Index to_replace = sender->to_replace.RelaxedLoad();
182
183 // Candidate.
184 CHECK_LE(to_replace.message_index(), accounted_for.size());
185 if (accounted_for[to_replace.message_index()]) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700186 VLOG(3) << "Sender " << i
187 << " died, to_replace is already accounted for";
Austin Schuh20b2b082019-09-11 20:42:56 -0700188 // If both are accounted for, we are corrupt...
189 CHECK(!accounted_for[scratch_index.message_index()]);
190
191 // to_replace is already accounted for. This means that we didn't
192 // atomically insert scratch_index into the queue yet. So
193 // invalidate to_replace.
194 sender->to_replace.Invalidate();
195
196 // And then mark this sender clean.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800197 __atomic_store_n(&(sender->tid.futex), 0, __ATOMIC_RELEASE);
Austin Schuh20b2b082019-09-11 20:42:56 -0700198
199 // And account for scratch_index.
200 accounted_for[scratch_index.message_index()] = true;
201 --num_missing;
202 ++num_accounted_for;
203 } else if (accounted_for[scratch_index.message_index()]) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700204 VLOG(3) << "Sender " << i
205 << " died, scratch_index is already accounted for";
Austin Schuh20b2b082019-09-11 20:42:56 -0700206 // scratch_index is accounted for. That means we did the insert,
207 // but didn't record it.
208 CHECK(to_replace.valid());
209 // Finish the transaction. Copy to_replace, then clear it.
210
211 sender->scratch_index.Store(to_replace);
212 sender->to_replace.Invalidate();
213
214 // And then mark this sender clean.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800215 __atomic_store_n(&(sender->tid.futex), 0, __ATOMIC_RELEASE);
Austin Schuh20b2b082019-09-11 20:42:56 -0700216
217 // And account for to_replace.
218 accounted_for[to_replace.message_index()] = true;
219 --num_missing;
220 ++num_accounted_for;
221 } else {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700222 VLOG(3) << "Sender " << i << " died, neither is accounted for";
Austin Schuh20b2b082019-09-11 20:42:56 -0700223 // Ambiguous. There will be an unambiguous one somewhere that we
224 // can do first.
225 }
226 }
227 }
228 // CHECK that we are making progress.
229 CHECK_NE(num_missing, starting_num_missing);
230 }
231}
232
233// Exposes rt_tgsigqueueinfo so we can send the signal *just* to the target
234// thread.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800235// TODO(Brian): Do directly in assembly for armhf at least for efficiency.
Austin Schuh20b2b082019-09-11 20:42:56 -0700236int rt_tgsigqueueinfo(pid_t tgid, pid_t tid, int sig, siginfo_t *si) {
237 return syscall(SYS_rt_tgsigqueueinfo, tgid, tid, sig, si);
238}
239
240} // namespace
241
Austin Schuh4bc4f902019-12-23 18:04:51 -0800242size_t LocklessQueueConfiguration::message_size() const {
243 // Round up the message size so following data is aligned appropriately.
244 return LocklessQueueMemory::AlignmentRoundUp(message_data_size) +
245 sizeof(Message);
246}
247
Austin Schuh20b2b082019-09-11 20:42:56 -0700248size_t LocklessQueueMemorySize(LocklessQueueConfiguration config) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800249 // Round up the message size so following data is aligned appropriately.
250 config.message_data_size =
251 LocklessQueueMemory::AlignmentRoundUp(config.message_data_size);
Austin Schuh20b2b082019-09-11 20:42:56 -0700252
253 // As we build up the size, confirm that everything is aligned to the
254 // alignment requirements of the type.
255 size_t size = sizeof(LocklessQueueMemory);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800256 CHECK_EQ(size % alignof(LocklessQueueMemory), 0u);
Austin Schuh20b2b082019-09-11 20:42:56 -0700257
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800258 CHECK_EQ(size % alignof(AtomicIndex), 0u);
Austin Schuh20b2b082019-09-11 20:42:56 -0700259 size += LocklessQueueMemory::SizeOfQueue(config);
260
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800261 CHECK_EQ(size % alignof(Message), 0u);
Austin Schuh20b2b082019-09-11 20:42:56 -0700262 size += LocklessQueueMemory::SizeOfMessages(config);
263
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800264 CHECK_EQ(size % alignof(Watcher), 0u);
Austin Schuh20b2b082019-09-11 20:42:56 -0700265 size += LocklessQueueMemory::SizeOfWatchers(config);
266
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800267 CHECK_EQ(size % alignof(Sender), 0u);
Austin Schuh20b2b082019-09-11 20:42:56 -0700268 size += LocklessQueueMemory::SizeOfSenders(config);
269
270 return size;
271}
272
273LocklessQueueMemory *InitializeLocklessQueueMemory(
274 LocklessQueueMemory *memory, LocklessQueueConfiguration config) {
275 // Everything should be zero initialized already. So we just need to fill
276 // everything out properly.
277
278 // Grab the mutex. We don't care if the previous reader died. We are going
279 // to check everything anyways.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800280 GrabQueueSetupLockOrDie grab_queue_setup_lock(memory);
Austin Schuh20b2b082019-09-11 20:42:56 -0700281
282 if (!memory->initialized) {
283 // TODO(austin): Check these for out of bounds.
284 memory->config.num_watchers = config.num_watchers;
285 memory->config.num_senders = config.num_senders;
286 memory->config.queue_size = config.queue_size;
Austin Schuh4bc4f902019-12-23 18:04:51 -0800287 memory->config.message_data_size = config.message_data_size;
Austin Schuh20b2b082019-09-11 20:42:56 -0700288
289 const size_t num_messages = memory->num_messages();
290 // There need to be at most MaxMessages() messages allocated.
291 CHECK_LE(num_messages, Index::MaxMessages());
292
293 for (size_t i = 0; i < num_messages; ++i) {
294 memory->GetMessage(Index(QueueIndex::Zero(memory->queue_size()), i))
295 ->header.queue_index.Invalidate();
296 }
297
298 for (size_t i = 0; i < memory->queue_size(); ++i) {
299 // Make the initial counter be the furthest away number. That means that
300 // index 0 should be 0xffff, 1 should be 0, etc.
301 memory->GetQueue(i)->Store(Index(QueueIndex::Zero(memory->queue_size())
302 .IncrementBy(i)
303 .DecrementBy(memory->queue_size()),
304 i));
305 }
306
307 memory->next_queue_index.Invalidate();
308
309 for (size_t i = 0; i < memory->num_senders(); ++i) {
310 ::aos::ipc_lib::Sender *s = memory->GetSender(i);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800311 // Nobody else can possibly be touching these because we haven't set
312 // initialized to true yet.
313 s->scratch_index.RelaxedStore(Index(0xffff, i + memory->queue_size()));
Austin Schuh20b2b082019-09-11 20:42:56 -0700314 s->to_replace.RelaxedInvalidate();
315 }
316
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800317 aos_compiler_memory_barrier();
Austin Schuh20b2b082019-09-11 20:42:56 -0700318 // Signal everything is done. This needs to be done last, so if we die, we
319 // redo initialization.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800320 memory->initialized = true;
Austin Schuh20b2b082019-09-11 20:42:56 -0700321 }
322
Austin Schuh20b2b082019-09-11 20:42:56 -0700323 return memory;
324}
325
326LocklessQueue::LocklessQueue(LocklessQueueMemory *memory,
327 LocklessQueueConfiguration config)
328 : memory_(InitializeLocklessQueueMemory(memory, config)),
329 watcher_copy_(memory_->num_watchers()),
330 pid_(getpid()),
331 uid_(getuid()) {}
332
333LocklessQueue::~LocklessQueue() {
334 CHECK_EQ(watcher_index_, -1);
335
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800336 GrabQueueSetupLockOrDie grab_queue_setup_lock(memory_);
Austin Schuh20b2b082019-09-11 20:42:56 -0700337 const int num_watchers = memory_->num_watchers();
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800338 // Cleanup is cheap. The next user will do it anyways, so no need for us to do
339 // anything right now.
Austin Schuh20b2b082019-09-11 20:42:56 -0700340
341 // And confirm that nothing is owned by us.
342 for (int i = 0; i < num_watchers; ++i) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800343 CHECK(!death_notification_is_held(&(memory_->GetWatcher(i)->tid)));
Austin Schuh20b2b082019-09-11 20:42:56 -0700344 }
Austin Schuh20b2b082019-09-11 20:42:56 -0700345}
346
347size_t LocklessQueue::QueueSize() const { return memory_->queue_size(); }
348
349bool LocklessQueue::RegisterWakeup(int priority) {
350 // TODO(austin): Make sure signal coalescing is turned on. We don't need
351 // duplicates. That will improve performance under high load.
352
353 // Since everything is self consistent, all we need to do is make sure nobody
354 // else is running. Someone dying will get caught in the generic consistency
355 // check.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800356 GrabQueueSetupLockOrDie grab_queue_setup_lock(memory_);
Austin Schuh20b2b082019-09-11 20:42:56 -0700357 const int num_watchers = memory_->num_watchers();
358
359 // Now, find the first empty watcher and grab it.
360 CHECK_EQ(watcher_index_, -1);
361 for (int i = 0; i < num_watchers; ++i) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800362 // If we see a slot the kernel has marked as dead, everything we do reusing
363 // it needs to happen-after whatever that process did before dying.
Brian Silverman2484eea2019-12-21 16:48:46 -0800364 auto *const futex = &(memory_->GetWatcher(i)->tid.futex);
365 const uint32_t tid = __atomic_load_n(futex, __ATOMIC_ACQUIRE);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800366 if (tid == 0 || (tid & FUTEX_OWNER_DIED)) {
Austin Schuh20b2b082019-09-11 20:42:56 -0700367 watcher_index_ = i;
Brian Silverman2484eea2019-12-21 16:48:46 -0800368 // Relaxed is OK here because we're the only task going to touch it
369 // between here and the write in death_notification_init below (other
370 // recovery is blocked by us holding the setup lock).
371 __atomic_store_n(futex, 0, __ATOMIC_RELAXED);
Austin Schuh20b2b082019-09-11 20:42:56 -0700372 break;
373 }
374 }
375
376 // Bail if we failed to find an open slot.
377 if (watcher_index_ == -1) {
Austin Schuh20b2b082019-09-11 20:42:56 -0700378 return false;
379 }
380
381 Watcher *w = memory_->GetWatcher(watcher_index_);
382
383 w->pid = getpid();
384 w->priority = priority;
385
386 // Grabbing a mutex is a compiler and memory barrier, so nothing before will
387 // get rearranged afterwords.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800388 death_notification_init(&(w->tid));
389 return true;
Austin Schuh20b2b082019-09-11 20:42:56 -0700390}
391
392void LocklessQueue::UnregisterWakeup() {
393 // Since everything is self consistent, all we need to do is make sure nobody
394 // else is running. Someone dying will get caught in the generic consistency
395 // check.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800396 GrabQueueSetupLockOrDie grab_queue_setup_lock(memory_);
Austin Schuh20b2b082019-09-11 20:42:56 -0700397
398 // Make sure we are registered.
399 CHECK_NE(watcher_index_, -1);
400
401 // Make sure we still own the slot we are supposed to.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800402 CHECK(
403 death_notification_is_held(&(memory_->GetWatcher(watcher_index_)->tid)));
Austin Schuh20b2b082019-09-11 20:42:56 -0700404
405 // The act of unlocking invalidates the entry. Invalidate it.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800406 death_notification_release(&(memory_->GetWatcher(watcher_index_)->tid));
Austin Schuh20b2b082019-09-11 20:42:56 -0700407 // And internally forget the slot.
408 watcher_index_ = -1;
Austin Schuh20b2b082019-09-11 20:42:56 -0700409}
410
411int LocklessQueue::Wakeup(const int current_priority) {
412 const size_t num_watchers = memory_->num_watchers();
413
414 CHECK_EQ(watcher_copy_.size(), num_watchers);
415
416 // Grab a copy so it won't change out from underneath us, and we can sort it
417 // nicely in C++.
418 // Do note that there is still a window where the process can die *after* we
419 // read everything. We will still PI boost and send a signal to the thread in
420 // question. There is no way without pidfd's to close this window, and
421 // creating a pidfd is likely not RT.
422 for (size_t i = 0; i < num_watchers; ++i) {
423 Watcher *w = memory_->GetWatcher(i);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800424 watcher_copy_[i].tid = __atomic_load_n(&(w->tid.futex), __ATOMIC_RELAXED);
425 // Force the load of the TID to come first.
426 aos_compiler_memory_barrier();
427 watcher_copy_[i].pid = w->pid.load(std::memory_order_relaxed);
428 watcher_copy_[i].priority = w->priority.load(std::memory_order_relaxed);
Austin Schuh20b2b082019-09-11 20:42:56 -0700429
430 // Use a priority of -1 to mean an invalid entry to make sorting easier.
431 if (watcher_copy_[i].tid & FUTEX_OWNER_DIED || watcher_copy_[i].tid == 0) {
432 watcher_copy_[i].priority = -1;
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800433 } else {
434 // Ensure all of this happens after we're done looking at the pid+priority
435 // in shared memory.
436 aos_compiler_memory_barrier();
437 if (watcher_copy_[i].tid != static_cast<pid_t>(__atomic_load_n(
438 &(w->tid.futex), __ATOMIC_RELAXED))) {
439 // Confirm that the watcher hasn't been re-used and modified while we
440 // read it. If it has, mark it invalid again.
441 watcher_copy_[i].priority = -1;
442 watcher_copy_[i].tid = 0;
443 }
Austin Schuh20b2b082019-09-11 20:42:56 -0700444 }
445 }
446
447 // Now sort.
448 ::std::sort(watcher_copy_.begin(), watcher_copy_.end(),
449 [](const WatcherCopy &a, const WatcherCopy &b) {
450 return a.priority > b.priority;
451 });
452
453 int count = 0;
454 if (watcher_copy_[0].priority != -1) {
455 const int max_priority =
456 ::std::max(current_priority, watcher_copy_[0].priority);
457 // Boost if we are RT and there is a higher priority sender out there.
458 // Otherwise we might run into priority inversions.
459 if (max_priority > current_priority && current_priority > 0) {
460 SetCurrentThreadRealtimePriority(max_priority);
461 }
462
463 // Build up the siginfo to send.
464 siginfo_t uinfo;
465 memset(&uinfo, 0, sizeof(uinfo));
466
467 uinfo.si_code = SI_QUEUE;
468 uinfo.si_pid = pid_;
469 uinfo.si_uid = uid_;
470 uinfo.si_value.sival_int = 0;
471
472 for (const WatcherCopy &watcher_copy : watcher_copy_) {
473 // The first -1 priority means we are at the end of the valid list.
474 if (watcher_copy.priority == -1) {
475 break;
476 }
477
478 // Send the signal. Target just the thread that sent it so that we can
479 // support multiple watchers in a process (when someone creates multiple
480 // event loops in different threads).
481 rt_tgsigqueueinfo(watcher_copy.pid, watcher_copy.tid, kWakeupSignal,
482 &uinfo);
483
484 ++count;
485 }
486
487 // Drop back down if we were boosted.
488 if (max_priority > current_priority && current_priority > 0) {
489 SetCurrentThreadRealtimePriority(current_priority);
490 }
491 }
492
493 return count;
494}
495
496LocklessQueue::Sender::Sender(LocklessQueueMemory *memory) : memory_(memory) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800497 GrabQueueSetupLockOrDie grab_queue_setup_lock(memory_);
Austin Schuh20b2b082019-09-11 20:42:56 -0700498
499 // Since we already have the lock, go ahead and try cleaning up.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800500 Cleanup(memory_, grab_queue_setup_lock);
Austin Schuh20b2b082019-09-11 20:42:56 -0700501
502 const int num_senders = memory_->num_senders();
503
504 for (int i = 0; i < num_senders; ++i) {
505 ::aos::ipc_lib::Sender *s = memory->GetSender(i);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800506 // This doesn't need synchronization because we're the only process doing
507 // initialization right now, and nobody else will be touching senders which
508 // we're interested in.
Austin Schuh20b2b082019-09-11 20:42:56 -0700509 const uint32_t tid = __atomic_load_n(&(s->tid.futex), __ATOMIC_RELAXED);
510 if (tid == 0) {
511 sender_index_ = i;
512 break;
513 }
514 }
515
516 if (sender_index_ == -1) {
Austin Schuhf257f3c2019-10-27 21:00:43 -0700517 LOG(FATAL) << "Too many senders";
Austin Schuh20b2b082019-09-11 20:42:56 -0700518 }
519
520 ::aos::ipc_lib::Sender *s = memory_->GetSender(sender_index_);
521
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800522 // Indicate that we are now alive by taking over the slot. If the previous
523 // owner died, we still want to do this.
524 death_notification_init(&(s->tid));
Austin Schuh20b2b082019-09-11 20:42:56 -0700525}
526
527LocklessQueue::Sender::~Sender() {
528 if (memory_ != nullptr) {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800529 death_notification_release(&(memory_->GetSender(sender_index_)->tid));
Austin Schuh20b2b082019-09-11 20:42:56 -0700530 }
531}
532
533LocklessQueue::Sender LocklessQueue::MakeSender() {
534 return LocklessQueue::Sender(memory_);
535}
536
537QueueIndex ZeroOrValid(QueueIndex index) {
538 if (!index.valid()) {
539 return index.Clear();
540 }
541 return index;
542}
543
Alex Perrycb7da4b2019-08-28 19:35:56 -0700544size_t LocklessQueue::Sender::size() { return memory_->message_data_size(); }
545
546void *LocklessQueue::Sender::Data() {
547 ::aos::ipc_lib::Sender *sender = memory_->GetSender(sender_index_);
548 Index scratch_index = sender->scratch_index.RelaxedLoad();
549 Message *message = memory_->GetMessage(scratch_index);
550 message->header.queue_index.Invalidate();
551
552 return &message->data[0];
553}
554
Austin Schuhad154822019-12-27 15:45:13 -0800555void LocklessQueue::Sender::Send(
556 const char *data, size_t length,
557 aos::monotonic_clock::time_point monotonic_remote_time,
558 aos::realtime_clock::time_point realtime_remote_time,
559 uint32_t remote_queue_index,
560 aos::monotonic_clock::time_point *monotonic_sent_time,
561 aos::realtime_clock::time_point *realtime_sent_time,
562 uint32_t *queue_index) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700563 CHECK_LE(length, size());
Austin Schuh67420a42019-12-21 21:55:04 -0800564 // Flatbuffers write from the back of the buffer to the front. If we are
565 // going to write an explicit chunk of memory into the buffer, we need to
566 // adhere to this convention and place it at the end.
567 memcpy((reinterpret_cast<char *>(Data()) + size() - length), data, length);
Austin Schuhad154822019-12-27 15:45:13 -0800568 Send(length, monotonic_remote_time, realtime_remote_time, remote_queue_index,
569 monotonic_sent_time, realtime_sent_time, queue_index);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700570}
571
Austin Schuhad154822019-12-27 15:45:13 -0800572void LocklessQueue::Sender::Send(
573 size_t length, aos::monotonic_clock::time_point monotonic_remote_time,
574 aos::realtime_clock::time_point realtime_remote_time,
575 uint32_t remote_queue_index,
576 aos::monotonic_clock::time_point *monotonic_sent_time,
577 aos::realtime_clock::time_point *realtime_sent_time,
578 uint32_t *queue_index) {
Austin Schuh20b2b082019-09-11 20:42:56 -0700579 const size_t queue_size = memory_->queue_size();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700580 CHECK_LE(length, size());
Austin Schuh20b2b082019-09-11 20:42:56 -0700581
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800582 ::aos::ipc_lib::Sender *const sender = memory_->GetSender(sender_index_);
583 // We can do a relaxed load on our sender because we're the only person
584 // modifying it right now.
585 const Index scratch_index = sender->scratch_index.RelaxedLoad();
586 Message *const message = memory_->GetMessage(scratch_index);
Austin Schuh20b2b082019-09-11 20:42:56 -0700587
Austin Schuh20b2b082019-09-11 20:42:56 -0700588 message->header.length = length;
Austin Schuhad154822019-12-27 15:45:13 -0800589 // Pass these through. Any alternative behavior can be implemented out a
590 // layer.
591 message->header.remote_queue_index = remote_queue_index;
592 message->header.monotonic_remote_time = monotonic_remote_time;
593 message->header.realtime_remote_time = realtime_remote_time;
Austin Schuh20b2b082019-09-11 20:42:56 -0700594
595 while (true) {
596 const QueueIndex actual_next_queue_index =
597 memory_->next_queue_index.Load(queue_size);
598 const QueueIndex next_queue_index = ZeroOrValid(actual_next_queue_index);
599
600 const QueueIndex incremented_queue_index = next_queue_index.Increment();
601
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800602 // This needs to synchronize with whoever the previous writer at this
603 // location was.
Austin Schuh20b2b082019-09-11 20:42:56 -0700604 const Index to_replace = memory_->LoadIndex(next_queue_index);
605
606 const QueueIndex decremented_queue_index =
607 next_queue_index.DecrementBy(queue_size);
608
609 // See if we got beat. If we did, try to atomically update
610 // next_queue_index in case the previous writer failed and retry.
611 if (!to_replace.IsPlausible(decremented_queue_index)) {
612 // We don't care about the result. It will either succeed, or we got
613 // beat in fixing it and just need to give up and try again. If we got
614 // beat multiple times, the only way progress can be made is if the queue
615 // is updated as well. This means that if we retry reading
616 // next_queue_index, we will be at most off by one and can retry.
617 //
618 // Both require no further action from us.
619 //
620 // TODO(austin): If we are having fairness issues under contention, we
621 // could have a mode bit in next_queue_index, and could use a lock or some
622 // other form of PI boosting to let the higher priority task win.
623 memory_->next_queue_index.CompareAndExchangeStrong(
624 actual_next_queue_index, incremented_queue_index);
625
Alex Perrycb7da4b2019-08-28 19:35:56 -0700626 VLOG(3) << "We were beat. Try again. Was " << std::hex
627 << to_replace.get() << ", is " << decremented_queue_index.index();
Austin Schuh20b2b082019-09-11 20:42:56 -0700628 continue;
629 }
630
631 // Confirm that the message is what it should be.
632 {
Austin Schuh20b2b082019-09-11 20:42:56 -0700633 const QueueIndex previous_index =
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800634 memory_->GetMessage(to_replace)->header.queue_index.Load(queue_size);
Austin Schuh20b2b082019-09-11 20:42:56 -0700635 if (previous_index != decremented_queue_index && previous_index.valid()) {
636 // Retry.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700637 VLOG(3) << "Something fishy happened, queue index doesn't match. "
638 "Retrying. Previous index was "
639 << std::hex << previous_index.index() << ", should be "
640 << decremented_queue_index.index();
Austin Schuh20b2b082019-09-11 20:42:56 -0700641 continue;
642 }
643 }
644
645 message->header.monotonic_sent_time = ::aos::monotonic_clock::now();
646 message->header.realtime_sent_time = ::aos::realtime_clock::now();
Austin Schuhad154822019-12-27 15:45:13 -0800647 if (monotonic_sent_time != nullptr) {
648 *monotonic_sent_time = message->header.monotonic_sent_time;
649 }
650 if (realtime_sent_time != nullptr) {
651 *realtime_sent_time = message->header.realtime_sent_time;
652 }
653 if (queue_index != nullptr) {
654 *queue_index = next_queue_index.index();
655 }
Austin Schuh20b2b082019-09-11 20:42:56 -0700656
657 // Before we are fully done filling out the message, update the Sender state
658 // with the new index to write. This re-uses the barrier for the
659 // queue_index store.
Alex Perrycb7da4b2019-08-28 19:35:56 -0700660 const Index index_to_write(next_queue_index, scratch_index.message_index());
Austin Schuh20b2b082019-09-11 20:42:56 -0700661
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800662 aos_compiler_memory_barrier();
663 // We're the only person who cares about our scratch index, besides somebody
664 // cleaning up after us.
Austin Schuh20b2b082019-09-11 20:42:56 -0700665 sender->scratch_index.RelaxedStore(index_to_write);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800666 aos_compiler_memory_barrier();
Austin Schuh20b2b082019-09-11 20:42:56 -0700667
668 message->header.queue_index.Store(next_queue_index);
669
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800670 aos_compiler_memory_barrier();
Austin Schuh20b2b082019-09-11 20:42:56 -0700671 // The message is now filled out, and we have a confirmed slot to store
672 // into.
673 //
674 // Start by writing down what we are going to pull out of the queue. This
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800675 // was Invalid before now. Only person who will read this is whoever cleans
676 // up after us, so no synchronization necessary.
Austin Schuh20b2b082019-09-11 20:42:56 -0700677 sender->to_replace.RelaxedStore(to_replace);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800678 aos_compiler_memory_barrier();
Austin Schuh20b2b082019-09-11 20:42:56 -0700679
680 // Then exchange the next index into the queue.
681 if (!memory_->GetQueue(next_queue_index.Wrapped())
682 ->CompareAndExchangeStrong(to_replace, index_to_write)) {
683 // Aw, didn't succeed. Retry.
684 sender->to_replace.RelaxedInvalidate();
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800685 aos_compiler_memory_barrier();
Alex Perrycb7da4b2019-08-28 19:35:56 -0700686 VLOG(3) << "Failed to wrap into queue";
Austin Schuh20b2b082019-09-11 20:42:56 -0700687 continue;
688 }
689
690 // Then update next_queue_index to save the next user some computation time.
691 memory_->next_queue_index.CompareAndExchangeStrong(actual_next_queue_index,
692 incremented_queue_index);
693
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800694 aos_compiler_memory_barrier();
Austin Schuh20b2b082019-09-11 20:42:56 -0700695 // Now update the scratch space and record that we succeeded.
696 sender->scratch_index.Store(to_replace);
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800697 aos_compiler_memory_barrier();
698 // And then record that we succeeded, but definitely after the above store.
Austin Schuh20b2b082019-09-11 20:42:56 -0700699 sender->to_replace.RelaxedInvalidate();
700 break;
701 }
702}
703
704LocklessQueue::ReadResult LocklessQueue::Read(
705 uint32_t uint32_queue_index,
706 ::aos::monotonic_clock::time_point *monotonic_sent_time,
Austin Schuhad154822019-12-27 15:45:13 -0800707 ::aos::realtime_clock::time_point *realtime_sent_time,
708 ::aos::monotonic_clock::time_point *monotonic_remote_time,
709 ::aos::realtime_clock::time_point *realtime_remote_time,
710 uint32_t *remote_queue_index, size_t *length, char *data) {
Austin Schuh20b2b082019-09-11 20:42:56 -0700711 const size_t queue_size = memory_->queue_size();
712
713 // Build up the QueueIndex.
714 const QueueIndex queue_index =
715 QueueIndex::Zero(queue_size).IncrementBy(uint32_queue_index);
716
717 // Read the message stored at the requested location.
718 Index mi = memory_->LoadIndex(queue_index);
719 Message *m = memory_->GetMessage(mi);
720
721 while (true) {
722 // We need to confirm that the data doesn't change while we are reading it.
723 // Do that by first confirming that the message points to the queue index we
724 // want.
725 const QueueIndex starting_queue_index =
726 m->header.queue_index.Load(queue_size);
727 if (starting_queue_index != queue_index) {
728 // If we found a message that is exactly 1 loop old, we just wrapped.
729 if (starting_queue_index == queue_index.DecrementBy(queue_size)) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700730 VLOG(3) << "Matches: " << std::hex << starting_queue_index.index()
731 << ", " << queue_index.DecrementBy(queue_size).index();
Austin Schuh20b2b082019-09-11 20:42:56 -0700732 return ReadResult::NOTHING_NEW;
733 } else {
734 // Someone has re-used this message between when we pulled it out of the
735 // queue and when we grabbed its index. It is pretty hard to deduce
736 // what happened. Just try again.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800737 Message *const new_m = memory_->GetMessage(queue_index);
Austin Schuh20b2b082019-09-11 20:42:56 -0700738 if (m != new_m) {
739 m = new_m;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700740 VLOG(3) << "Retrying, m doesn't match";
Austin Schuh20b2b082019-09-11 20:42:56 -0700741 continue;
742 }
743
744 // We have confirmed that message still points to the same message. This
745 // means that the message didn't get swapped out from under us, so
746 // starting_queue_index is correct.
747 //
748 // Either we got too far behind (signaled by this being a valid
749 // message), or this is one of the initial messages which are invalid.
750 if (starting_queue_index.valid()) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700751 VLOG(3) << "Too old. Tried for " << std::hex << queue_index.index()
752 << ", got " << starting_queue_index.index() << ", behind by "
753 << std::dec
754 << (starting_queue_index.index() - queue_index.index());
Austin Schuh20b2b082019-09-11 20:42:56 -0700755 return ReadResult::TOO_OLD;
756 }
757
Alex Perrycb7da4b2019-08-28 19:35:56 -0700758 VLOG(3) << "Initial";
Austin Schuh20b2b082019-09-11 20:42:56 -0700759
760 // There isn't a valid message at this location.
761 //
762 // If someone asks for one of the messages within the first go around,
763 // then they need to wait. They got ahead. Otherwise, they are
764 // asking for something crazy, like something before the beginning of
765 // the queue. Tell them that they are behind.
766 if (uint32_queue_index < memory_->queue_size()) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700767 VLOG(3) << "Near zero, " << std::hex << uint32_queue_index;
Austin Schuh20b2b082019-09-11 20:42:56 -0700768 return ReadResult::NOTHING_NEW;
769 } else {
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800770 VLOG(3) << "Not near zero, " << std::hex << uint32_queue_index;
Austin Schuh20b2b082019-09-11 20:42:56 -0700771 return ReadResult::TOO_OLD;
772 }
773 }
774 }
Alex Perrycb7da4b2019-08-28 19:35:56 -0700775 VLOG(3) << "Eq: " << std::hex << starting_queue_index.index() << ", "
776 << queue_index.index();
Austin Schuh20b2b082019-09-11 20:42:56 -0700777 break;
778 }
779
Alex Perrycb7da4b2019-08-28 19:35:56 -0700780 // Then read the data out. Copy it all out to be deterministic and so we can
781 // make length be from either end.
Austin Schuh20b2b082019-09-11 20:42:56 -0700782 *monotonic_sent_time = m->header.monotonic_sent_time;
783 *realtime_sent_time = m->header.realtime_sent_time;
Austin Schuhad154822019-12-27 15:45:13 -0800784 if (m->header.remote_queue_index == 0xffffffffu) {
785 *remote_queue_index = queue_index.index();
786 } else {
787 *remote_queue_index = m->header.remote_queue_index;
788 }
789 *monotonic_remote_time = m->header.monotonic_remote_time;
790 *realtime_remote_time = m->header.realtime_remote_time;
Alex Perrycb7da4b2019-08-28 19:35:56 -0700791 memcpy(data, &m->data[0], message_data_size());
Austin Schuh20b2b082019-09-11 20:42:56 -0700792 *length = m->header.length;
793
794 // And finally, confirm that the message *still* points to the queue index we
795 // want. This means it didn't change out from under us.
796 // If something changed out from under us, we were reading it much too late in
797 // it's lifetime.
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800798 aos_compiler_memory_barrier();
Austin Schuh20b2b082019-09-11 20:42:56 -0700799 const QueueIndex final_queue_index = m->header.queue_index.Load(queue_size);
800 if (final_queue_index != queue_index) {
Alex Perrycb7da4b2019-08-28 19:35:56 -0700801 VLOG(3) << "Changed out from under us. Reading " << std::hex
802 << queue_index.index() << ", finished with "
803 << final_queue_index.index() << ", delta: " << std::dec
804 << (final_queue_index.index() - queue_index.index());
805 return ReadResult::OVERWROTE;
Austin Schuh20b2b082019-09-11 20:42:56 -0700806 }
807
808 return ReadResult::GOOD;
809}
810
Alex Perrycb7da4b2019-08-28 19:35:56 -0700811size_t LocklessQueue::queue_size() const { return memory_->queue_size(); }
812size_t LocklessQueue::message_data_size() const {
813 return memory_->message_data_size();
814}
815
816QueueIndex LocklessQueue::LatestQueueIndex() {
Austin Schuh20b2b082019-09-11 20:42:56 -0700817 const size_t queue_size = memory_->queue_size();
818
819 // There is only one interesting case. We need to know if the queue is empty.
820 // That is done with a sentinel value. At worst, this will be off by one.
821 const QueueIndex next_queue_index =
822 memory_->next_queue_index.Load(queue_size);
823 if (next_queue_index.valid()) {
824 const QueueIndex current_queue_index = next_queue_index.DecrementBy(1u);
Alex Perrycb7da4b2019-08-28 19:35:56 -0700825 return current_queue_index;
Austin Schuh20b2b082019-09-11 20:42:56 -0700826 } else {
827 return empty_queue_index();
828 }
829}
830
831namespace {
832
833// Prints out the mutex state. Not safe to use while the mutex is being
834// changed.
835::std::string PrintMutex(aos_mutex *mutex) {
836 ::std::stringstream s;
837 s << "aos_mutex(" << ::std::hex << mutex->futex;
838
839 if (mutex->futex != 0) {
840 s << ":";
841 if (mutex->futex & FUTEX_OWNER_DIED) {
842 s << "FUTEX_OWNER_DIED|";
843 }
844 s << "tid=" << (mutex->futex & FUTEX_TID_MASK);
845 }
846
847 s << ")";
848 return s.str();
849}
850
851} // namespace
852
853void PrintLocklessQueueMemory(LocklessQueueMemory *memory) {
854 const size_t queue_size = memory->queue_size();
855 ::std::cout << "LocklessQueueMemory (" << memory << ") {" << ::std::endl;
856 ::std::cout << " aos_mutex queue_setup_lock = "
857 << PrintMutex(&memory->queue_setup_lock) << ::std::endl;
Brian Silvermanfafe1fa2019-12-18 21:42:18 -0800858 ::std::cout << " bool initialized = " << memory->initialized << ::std::endl;
Austin Schuh20b2b082019-09-11 20:42:56 -0700859 ::std::cout << " config {" << ::std::endl;
860 ::std::cout << " size_t num_watchers = " << memory->config.num_watchers
861 << ::std::endl;
862 ::std::cout << " size_t num_senders = " << memory->config.num_senders
863 << ::std::endl;
864 ::std::cout << " size_t queue_size = " << memory->config.queue_size
865 << ::std::endl;
866 ::std::cout << " size_t message_data_size = "
867 << memory->config.message_data_size << ::std::endl;
868
869 ::std::cout << " AtomicQueueIndex next_queue_index = "
870 << memory->next_queue_index.Load(queue_size).DebugString()
871 << ::std::endl;
872
873 ::std::cout << " }" << ::std::endl;
874 ::std::cout << " AtomicIndex queue[" << queue_size << "] {" << ::std::endl;
875 for (size_t i = 0; i < queue_size; ++i) {
876 ::std::cout << " [" << i << "] -> "
877 << memory->GetQueue(i)->Load().DebugString() << ::std::endl;
878 }
879 ::std::cout << " }" << ::std::endl;
880 ::std::cout << " Message messages[" << memory->num_messages() << "] {"
881 << ::std::endl;
882 for (size_t i = 0; i < memory->num_messages(); ++i) {
883 Message *m = memory->GetMessage(Index(i, i));
884 ::std::cout << " [" << i << "] -> Message {" << ::std::endl;
885 ::std::cout << " Header {" << ::std::endl;
886 ::std::cout << " AtomicQueueIndex queue_index = "
887 << m->header.queue_index.Load(queue_size).DebugString()
888 << ::std::endl;
889 ::std::cout << " size_t length = " << m->header.length
890 << ::std::endl;
891 ::std::cout << " }" << ::std::endl;
892 ::std::cout << " data: {";
893
894 for (size_t j = 0; j < m->header.length; ++j) {
895 char data = m->data[j];
896 if (j != 0) {
897 ::std::cout << " ";
898 }
899 if (::std::isprint(data)) {
900 ::std::cout << ::std::setfill(' ') << ::std::setw(2) << ::std::hex
901 << data;
902 } else {
903 ::std::cout << "0x" << ::std::setfill('0') << ::std::setw(2)
904 << ::std::hex << (static_cast<unsigned>(data) & 0xff);
905 }
906 }
907 ::std::cout << ::std::setfill(' ') << ::std::dec << "}" << ::std::endl;
908 ::std::cout << " }," << ::std::endl;
909 }
910 ::std::cout << " }" << ::std::endl;
911
Alex Perrycb7da4b2019-08-28 19:35:56 -0700912 ::std::cout << " Sender senders[" << memory->num_senders() << "] {"
913 << ::std::endl;
Austin Schuh20b2b082019-09-11 20:42:56 -0700914 for (size_t i = 0; i < memory->num_senders(); ++i) {
915 Sender *s = memory->GetSender(i);
916 ::std::cout << " [" << i << "] -> Sender {" << ::std::endl;
917 ::std::cout << " aos_mutex tid = " << PrintMutex(&s->tid)
918 << ::std::endl;
919 ::std::cout << " AtomicIndex scratch_index = "
920 << s->scratch_index.Load().DebugString() << ::std::endl;
921 ::std::cout << " AtomicIndex to_replace = "
922 << s->to_replace.Load().DebugString() << ::std::endl;
923 ::std::cout << " }" << ::std::endl;
924 }
925 ::std::cout << " }" << ::std::endl;
926
927 ::std::cout << " Watcher watchers[" << memory->num_watchers() << "] {"
928 << ::std::endl;
929 for (size_t i = 0; i < memory->num_watchers(); ++i) {
930 Watcher *w = memory->GetWatcher(i);
931 ::std::cout << " [" << i << "] -> Watcher {" << ::std::endl;
932 ::std::cout << " aos_mutex tid = " << PrintMutex(&w->tid)
933 << ::std::endl;
934 ::std::cout << " pid_t pid = " << w->pid << ::std::endl;
935 ::std::cout << " int priority = " << w->priority << ::std::endl;
936 ::std::cout << " }" << ::std::endl;
937 }
938 ::std::cout << " }" << ::std::endl;
939
940 ::std::cout << "}" << ::std::endl;
941}
942
943} // namespace ipc_lib
944} // namespace aos