blob: 950da6aaff79ce67361fce818a01c5ee34326d7e [file] [log] [blame]
Ravneetdbd5b242022-03-02 07:22:46 +00001/*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "CameraServiceWatchdog"
18
19#include "CameraServiceWatchdog.h"
20
21namespace android {
22
23bool CameraServiceWatchdog::threadLoop()
24{
25 {
26 AutoMutex _l(mWatchdogLock);
27
28 while (mPause) {
29 mWatchdogCondition.wait(mWatchdogLock);
30 }
31 }
32
33 std::this_thread::sleep_for(std::chrono::milliseconds(mCycleLengthMs));
34
35 {
36 AutoMutex _l(mWatchdogLock);
37
38 for (auto it = tidToCycleCounterMap.begin(); it != tidToCycleCounterMap.end(); it++) {
39 uint32_t currentThreadId = it->first;
40
41 tidToCycleCounterMap[currentThreadId]++;
42
43 if (tidToCycleCounterMap[currentThreadId] >= mMaxCycles) {
44 ALOGW("CameraServiceWatchdog triggering kill for pid: %d", getpid());
45 kill(getpid(), SIGKILL);
46 }
47 }
48 }
49
50 return true;
51}
52
53void CameraServiceWatchdog::requestExit()
54{
55 Thread::requestExit();
56
57 AutoMutex _l(mWatchdogLock);
58
59 tidToCycleCounterMap.clear();
60
61 if (mPause) {
62 mPause = false;
63 mWatchdogCondition.signal();
64 }
65}
66
Ravneetaeb20dc2022-03-30 05:33:03 +000067void CameraServiceWatchdog::setEnabled(bool enable)
68{
69 AutoMutex _l(mEnabledLock);
70
71 if (enable) {
72 mEnabled = true;
73 } else {
74 mEnabled = false;
75 }
76}
77
Ravneetdbd5b242022-03-02 07:22:46 +000078void CameraServiceWatchdog::stop(uint32_t tid)
79{
80 AutoMutex _l(mWatchdogLock);
81
82 tidToCycleCounterMap.erase(tid);
83
84 if (tidToCycleCounterMap.empty()) {
85 mPause = true;
86 }
87}
88
89void CameraServiceWatchdog::start(uint32_t tid)
90{
91 AutoMutex _l(mWatchdogLock);
92
93 tidToCycleCounterMap[tid] = 0;
94
95 if (mPause) {
96 mPause = false;
97 mWatchdogCondition.signal();
98 }
99}
100
101} // namespace android