forked from LineageOS/android_system_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lmkd_service.cpp
131 lines (113 loc) · 3.84 KB
/
lmkd_service.cpp
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "lmkd_service.h"
#include <errno.h>
#include <android-base/logging.h>
#include <liblmkd_utils.h>
#include "service_list.h"
namespace android {
namespace init {
enum LmkdRegistrationResult {
LMKD_REG_SUCCESS,
LMKD_CONN_FAILED,
LMKD_REG_FAILED,
};
static int lmkd_socket = -1;
static LmkdRegistrationResult RegisterProcess(uid_t uid, pid_t pid, int oom_score_adjust) {
// connect to lmkd if not already connected
if (lmkd_socket < 0) {
lmkd_socket = lmkd_connect();
if (lmkd_socket < 0) {
return LMKD_CONN_FAILED;
}
}
// register service with lmkd
struct lmk_procprio params;
params.pid = pid;
params.uid = uid;
params.oomadj = oom_score_adjust;
params.ptype = PROC_TYPE_SERVICE;
if (lmkd_register_proc(lmkd_socket, ¶ms) != 0) {
// data transfer failed, reset the connection
close(lmkd_socket);
lmkd_socket = -1;
return LMKD_REG_FAILED;
}
return LMKD_REG_SUCCESS;
}
static bool UnregisterProcess(pid_t pid) {
if (lmkd_socket < 0) {
// no connection or it was lost, no need to unregister
return false;
}
// unregister service
struct lmk_procremove params;
params.pid = pid;
if (lmkd_unregister_proc(lmkd_socket, ¶ms) != 0) {
// data transfer failed, reset the connection
close(lmkd_socket);
lmkd_socket = -1;
return false;
}
return true;
}
static void RegisterServices(pid_t exclude_pid) {
for (const auto& service : ServiceList::GetInstance()) {
auto svc = service.get();
if (svc->oom_score_adjust() != DEFAULT_OOM_SCORE_ADJUST) {
// skip if process is excluded or not yet forked (pid==0)
if (svc->pid() == exclude_pid || svc->pid() == 0) {
continue;
}
if (RegisterProcess(svc->uid(), svc->pid(), svc->oom_score_adjust()) !=
LMKD_REG_SUCCESS) {
// a failure here resets the connection, will retry during next registration
break;
}
}
}
}
void LmkdRegister(const std::string& name, uid_t uid, pid_t pid, int oom_score_adjust) {
bool new_connection = lmkd_socket == -1;
LmkdRegistrationResult result;
result = RegisterProcess(uid, pid, oom_score_adjust);
if (result == LMKD_REG_FAILED) {
// retry one time if connection to lmkd was lost
result = RegisterProcess(uid, pid, oom_score_adjust);
new_connection = result == LMKD_REG_SUCCESS;
}
switch (result) {
case LMKD_REG_SUCCESS:
// register existing services once new connection is established
if (new_connection) {
RegisterServices(pid);
}
break;
case LMKD_CONN_FAILED:
PLOG(ERROR) << "lmkd connection failed when " << name << " process got started";
break;
case LMKD_REG_FAILED:
PLOG(ERROR) << "lmkd failed to register " << name << " process";
break;
}
}
void LmkdUnregister(const std::string& name, pid_t pid) {
if (!UnregisterProcess(pid)) {
PLOG(ERROR) << "lmkd failed to unregister " << name << " process";
}
}
} // namespace init
} // namespace android