1*61c4878aSAndroid Build Coastguard Worker // Copyright 2021 The Pigweed Authors
2*61c4878aSAndroid Build Coastguard Worker //
3*61c4878aSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License"); you may not
4*61c4878aSAndroid Build Coastguard Worker // use this file except in compliance with the License. You may obtain a copy of
5*61c4878aSAndroid Build Coastguard Worker // the License at
6*61c4878aSAndroid Build Coastguard Worker //
7*61c4878aSAndroid Build Coastguard Worker // https://www.apache.org/licenses/LICENSE-2.0
8*61c4878aSAndroid Build Coastguard Worker //
9*61c4878aSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software
10*61c4878aSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11*61c4878aSAndroid Build Coastguard Worker // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12*61c4878aSAndroid Build Coastguard Worker // License for the specific language governing permissions and limitations under
13*61c4878aSAndroid Build Coastguard Worker // the License.
14*61c4878aSAndroid Build Coastguard Worker
15*61c4878aSAndroid Build Coastguard Worker #define PW_LOG_LEVEL PW_THREAD_CONFIG_LOG_LEVEL
16*61c4878aSAndroid Build Coastguard Worker
17*61c4878aSAndroid Build Coastguard Worker #include "pw_thread/snapshot.h"
18*61c4878aSAndroid Build Coastguard Worker
19*61c4878aSAndroid Build Coastguard Worker #include <cinttypes>
20*61c4878aSAndroid Build Coastguard Worker #include <string_view>
21*61c4878aSAndroid Build Coastguard Worker
22*61c4878aSAndroid Build Coastguard Worker #include "pw_bytes/span.h"
23*61c4878aSAndroid Build Coastguard Worker #include "pw_function/function.h"
24*61c4878aSAndroid Build Coastguard Worker #include "pw_log/log.h"
25*61c4878aSAndroid Build Coastguard Worker #include "pw_protobuf/encoder.h"
26*61c4878aSAndroid Build Coastguard Worker #include "pw_status/status.h"
27*61c4878aSAndroid Build Coastguard Worker #include "pw_thread/config.h"
28*61c4878aSAndroid Build Coastguard Worker #include "pw_thread_protos/thread.pwpb.h"
29*61c4878aSAndroid Build Coastguard Worker
30*61c4878aSAndroid Build Coastguard Worker namespace pw::thread {
31*61c4878aSAndroid Build Coastguard Worker
SnapshotStack(const StackContext & stack,proto::pwpb::Thread::StreamEncoder & encoder,const ProcessThreadStackCallback & thread_stack_callback)32*61c4878aSAndroid Build Coastguard Worker Status SnapshotStack(const StackContext& stack,
33*61c4878aSAndroid Build Coastguard Worker proto::pwpb::Thread::StreamEncoder& encoder,
34*61c4878aSAndroid Build Coastguard Worker const ProcessThreadStackCallback& thread_stack_callback) {
35*61c4878aSAndroid Build Coastguard Worker // TODO: b/234890430 - Add support for ascending stacks.
36*61c4878aSAndroid Build Coastguard Worker encoder.WriteStackStartPointer(stack.stack_high_addr).IgnoreError();
37*61c4878aSAndroid Build Coastguard Worker encoder.WriteStackEndPointer(stack.stack_low_addr).IgnoreError();
38*61c4878aSAndroid Build Coastguard Worker encoder.WriteStackPointer(stack.stack_pointer).IgnoreError();
39*61c4878aSAndroid Build Coastguard Worker // The PRIxPTR is an appropriate format specifier for hex uintptr_t values
40*61c4878aSAndroid Build Coastguard Worker // https://stackoverflow.com/a/5796039/1224002
41*61c4878aSAndroid Build Coastguard Worker PW_LOG_DEBUG("Active stack: 0x%08" PRIxPTR "-0x%08" PRIxPTR " (%ld bytes)",
42*61c4878aSAndroid Build Coastguard Worker stack.stack_high_addr,
43*61c4878aSAndroid Build Coastguard Worker stack.stack_pointer,
44*61c4878aSAndroid Build Coastguard Worker static_cast<long>(stack.stack_high_addr) -
45*61c4878aSAndroid Build Coastguard Worker static_cast<long>(stack.stack_pointer));
46*61c4878aSAndroid Build Coastguard Worker if (stack.stack_pointer_est_peak.has_value()) {
47*61c4878aSAndroid Build Coastguard Worker const uintptr_t stack_pointer_est_peak =
48*61c4878aSAndroid Build Coastguard Worker stack.stack_pointer_est_peak.value();
49*61c4878aSAndroid Build Coastguard Worker encoder.WriteStackPointerEstPeak(stack_pointer_est_peak).IgnoreError();
50*61c4878aSAndroid Build Coastguard Worker PW_LOG_DEBUG("Est peak stack: 0x%08" PRIxPTR "-0x%08" PRIxPTR
51*61c4878aSAndroid Build Coastguard Worker " (%ld bytes)",
52*61c4878aSAndroid Build Coastguard Worker stack.stack_high_addr,
53*61c4878aSAndroid Build Coastguard Worker stack_pointer_est_peak,
54*61c4878aSAndroid Build Coastguard Worker static_cast<long>(stack.stack_high_addr) -
55*61c4878aSAndroid Build Coastguard Worker static_cast<long>(stack_pointer_est_peak));
56*61c4878aSAndroid Build Coastguard Worker }
57*61c4878aSAndroid Build Coastguard Worker PW_LOG_DEBUG("Stack Limits: 0x%08" PRIxPTR "-0x%08" PRIxPTR " (%ld bytes)",
58*61c4878aSAndroid Build Coastguard Worker stack.stack_low_addr,
59*61c4878aSAndroid Build Coastguard Worker stack.stack_high_addr,
60*61c4878aSAndroid Build Coastguard Worker static_cast<long>(stack.stack_high_addr) -
61*61c4878aSAndroid Build Coastguard Worker static_cast<long>(stack.stack_low_addr));
62*61c4878aSAndroid Build Coastguard Worker
63*61c4878aSAndroid Build Coastguard Worker if (stack.stack_pointer > stack.stack_high_addr) {
64*61c4878aSAndroid Build Coastguard Worker PW_LOG_ERROR("%s's stack underflowed by %lu bytes",
65*61c4878aSAndroid Build Coastguard Worker stack.thread_name.data(),
66*61c4878aSAndroid Build Coastguard Worker static_cast<long unsigned>(stack.stack_pointer -
67*61c4878aSAndroid Build Coastguard Worker stack.stack_high_addr));
68*61c4878aSAndroid Build Coastguard Worker return Status::OutOfRange();
69*61c4878aSAndroid Build Coastguard Worker }
70*61c4878aSAndroid Build Coastguard Worker
71*61c4878aSAndroid Build Coastguard Worker // Log an error, but don't prevent the capture.
72*61c4878aSAndroid Build Coastguard Worker if (stack.stack_pointer < stack.stack_low_addr) {
73*61c4878aSAndroid Build Coastguard Worker PW_LOG_ERROR(
74*61c4878aSAndroid Build Coastguard Worker "%s's stack overflowed by %lu bytes",
75*61c4878aSAndroid Build Coastguard Worker stack.thread_name.data(),
76*61c4878aSAndroid Build Coastguard Worker static_cast<long unsigned>(stack.stack_low_addr - stack.stack_pointer));
77*61c4878aSAndroid Build Coastguard Worker }
78*61c4878aSAndroid Build Coastguard Worker
79*61c4878aSAndroid Build Coastguard Worker return thread_stack_callback(
80*61c4878aSAndroid Build Coastguard Worker encoder,
81*61c4878aSAndroid Build Coastguard Worker ConstByteSpan(reinterpret_cast<const std::byte*>(stack.stack_pointer),
82*61c4878aSAndroid Build Coastguard Worker stack.stack_high_addr - stack.stack_pointer));
83*61c4878aSAndroid Build Coastguard Worker }
84*61c4878aSAndroid Build Coastguard Worker
85*61c4878aSAndroid Build Coastguard Worker } // namespace pw::thread
86