-
Notifications
You must be signed in to change notification settings - Fork 3
/
liblmkd_utils.cpp
156 lines (124 loc) · 4.33 KB
/
liblmkd_utils.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
* Copyright 2018 Google, Inc
*
* 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 <errno.h>
#include <fcntl.h>
#include <sys/cdefs.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
#include <cutils/sockets.h>
#include <liblmkd_utils.h>
#include <processgroup/processgroup.h>
int lmkd_connect() {
return socket_local_client("lmkd",
ANDROID_SOCKET_NAMESPACE_RESERVED,
SOCK_SEQPACKET | SOCK_CLOEXEC);
}
int lmkd_register_proc(int sock, struct lmk_procprio *params) {
LMKD_CTRL_PACKET packet;
size_t size;
int ret;
size = lmkd_pack_set_procprio(packet, params);
ret = TEMP_FAILURE_RETRY(write(sock, packet, size));
return (ret < 0) ? -1 : 0;
}
int lmkd_register_procs(int sock, struct lmk_procs_prio* params, const int proc_count) {
LMKD_CTRL_PACKET packet;
size_t size;
int ret;
size = lmkd_pack_set_procs_prio(packet, params, proc_count);
ret = TEMP_FAILURE_RETRY(write(sock, packet, size));
return (ret < 0) ? -1 : 0;
}
int lmkd_unregister_proc(int sock, struct lmk_procremove *params) {
LMKD_CTRL_PACKET packet;
size_t size;
int ret;
size = lmkd_pack_set_procremove(packet, params);
ret = TEMP_FAILURE_RETRY(write(sock, packet, size));
return (ret < 0) ? -1 : 0;
}
enum update_props_result lmkd_update_props(int sock) {
LMKD_CTRL_PACKET packet;
int size;
size = lmkd_pack_set_update_props(packet);
if (TEMP_FAILURE_RETRY(write(sock, packet, size)) < 0) {
return UPDATE_PROPS_SEND_ERR;
}
size = TEMP_FAILURE_RETRY(read(sock, packet, CTRL_PACKET_MAX_SIZE));
if (size < 0) {
return UPDATE_PROPS_RECV_ERR;
}
if (size != 2 * sizeof(int) || lmkd_pack_get_cmd(packet) != LMK_UPDATE_PROPS) {
return UPDATE_PROPS_FORMAT_ERR;
}
struct lmk_update_props_reply params;
lmkd_pack_get_update_props_repl(packet, ¶ms);
return params.result == 0 ? UPDATE_PROPS_SUCCESS : UPDATE_PROPS_FAIL;
}
enum boot_completed_notification_result lmkd_notify_boot_completed(int sock) {
LMKD_CTRL_PACKET packet;
int size;
size = lmkd_pack_set_boot_completed_notif(packet);
if (TEMP_FAILURE_RETRY(write(sock, packet, size)) < 0) {
return BOOT_COMPLETED_NOTIF_SEND_ERR;
}
size = TEMP_FAILURE_RETRY(read(sock, packet, CTRL_PACKET_MAX_SIZE));
if (size < 0) {
return BOOT_COMPLETED_NOTIF_RECV_ERR;
}
if (size != 2 * sizeof(int) || lmkd_pack_get_cmd(packet) != LMK_BOOT_COMPLETED) {
return BOOT_COMPLETED_NOTIF_FORMAT_ERR;
}
struct lmk_boot_completed_notif_reply params;
lmkd_pack_get_boot_completed_notif_repl(packet, ¶ms);
enum boot_completed_notification_result res;
switch (params.result) {
case -1:
res = BOOT_COMPLETED_NOTIF_FAILS;
break;
case 0:
res = BOOT_COMPLETED_NOTIF_SUCCESS;
break;
case 1:
res = BOOT_COMPLETED_NOTIF_ALREADY_HANDLED;
break;
default:
/* This should never be reached */
res = BOOT_COMPLETED_NOTIF_FAILS;
}
return res;
}
int lmkd_get_kill_count(int sock, struct lmk_getkillcnt* params) {
LMKD_CTRL_PACKET packet;
int size;
size = lmkd_pack_set_getkillcnt(packet, params);
if (TEMP_FAILURE_RETRY(write(sock, packet, size)) < 0) {
return (int)GET_KILL_COUNT_SEND_ERR;
}
size = TEMP_FAILURE_RETRY(read(sock, packet, CTRL_PACKET_MAX_SIZE));
if (size < 0) {
return (int)GET_KILL_COUNT_RECV_ERR;
}
if (size != 2 * sizeof(int) || lmkd_pack_get_cmd(packet) != LMK_GETKILLCNT) {
return (int)GET_KILL_COUNT_FORMAT_ERR;
}
return packet[1];
}
int create_memcg(uid_t uid, pid_t pid) {
return createProcessGroup(uid, pid, true) == 0 ? 0 : -1;
}