1 // SPDX-License-Identifier: LGPL-2.1+
10 #include "thermal_nl.h"
12 static struct nla_policy thermal_genl_policy[THERMAL_GENL_ATTR_MAX + 1] = {
14 [THERMAL_GENL_ATTR_TZ] = { .type = NLA_NESTED },
15 [THERMAL_GENL_ATTR_TZ_ID] = { .type = NLA_U32 },
16 [THERMAL_GENL_ATTR_TZ_TEMP] = { .type = NLA_U32 },
17 [THERMAL_GENL_ATTR_TZ_TRIP] = { .type = NLA_NESTED },
18 [THERMAL_GENL_ATTR_TZ_TRIP_ID] = { .type = NLA_U32 },
19 [THERMAL_GENL_ATTR_TZ_TRIP_TEMP] = { .type = NLA_U32 },
20 [THERMAL_GENL_ATTR_TZ_TRIP_TYPE] = { .type = NLA_U32 },
21 [THERMAL_GENL_ATTR_TZ_TRIP_HYST] = { .type = NLA_U32 },
22 [THERMAL_GENL_ATTR_TZ_MODE] = { .type = NLA_U32 },
23 [THERMAL_GENL_ATTR_TZ_CDEV_WEIGHT] = { .type = NLA_U32 },
24 [THERMAL_GENL_ATTR_TZ_NAME] = { .type = NLA_STRING },
27 [THERMAL_GENL_ATTR_TZ_GOV] = { .type = NLA_NESTED },
28 [THERMAL_GENL_ATTR_TZ_GOV_NAME] = { .type = NLA_STRING },
31 [THERMAL_GENL_ATTR_CDEV] = { .type = NLA_NESTED },
32 [THERMAL_GENL_ATTR_CDEV_ID] = { .type = NLA_U32 },
33 [THERMAL_GENL_ATTR_CDEV_CUR_STATE] = { .type = NLA_U32 },
34 [THERMAL_GENL_ATTR_CDEV_MAX_STATE] = { .type = NLA_U32 },
35 [THERMAL_GENL_ATTR_CDEV_NAME] = { .type = NLA_STRING },
38 static int parse_tz_get(struct genl_info *info, struct thermal_zone **tz)
41 struct thermal_zone *__tz = NULL;
45 nla_for_each_nested(attr, info->attrs[THERMAL_GENL_ATTR_TZ], rem) {
47 if (nla_type(attr) == THERMAL_GENL_ATTR_TZ_ID) {
51 __tz = realloc(__tz, sizeof(*__tz) * (size + 2));
55 __tz[size - 1].id = nla_get_u32(attr);
59 if (nla_type(attr) == THERMAL_GENL_ATTR_TZ_NAME)
60 nla_strlcpy(__tz[size - 1].name, attr,
69 return THERMAL_SUCCESS;
72 static int parse_cdev_get(struct genl_info *info, struct thermal_cdev **cdev)
75 struct thermal_cdev *__cdev = NULL;
79 nla_for_each_nested(attr, info->attrs[THERMAL_GENL_ATTR_CDEV], rem) {
81 if (nla_type(attr) == THERMAL_GENL_ATTR_CDEV_ID) {
85 __cdev = realloc(__cdev, sizeof(*__cdev) * (size + 2));
89 __cdev[size - 1].id = nla_get_u32(attr);
92 if (nla_type(attr) == THERMAL_GENL_ATTR_CDEV_NAME) {
93 nla_strlcpy(__cdev[size - 1].name, attr,
97 if (nla_type(attr) == THERMAL_GENL_ATTR_CDEV_CUR_STATE)
98 __cdev[size - 1].cur_state = nla_get_u32(attr);
100 if (nla_type(attr) == THERMAL_GENL_ATTR_CDEV_MAX_STATE)
101 __cdev[size - 1].max_state = nla_get_u32(attr);
105 __cdev[size].id = -1;
109 return THERMAL_SUCCESS;
112 static int parse_tz_get_trip(struct genl_info *info, struct thermal_zone *tz)
115 struct thermal_trip *__tt = NULL;
119 nla_for_each_nested(attr, info->attrs[THERMAL_GENL_ATTR_TZ_TRIP], rem) {
121 if (nla_type(attr) == THERMAL_GENL_ATTR_TZ_TRIP_ID) {
125 __tt = realloc(__tt, sizeof(*__tt) * (size + 2));
127 return THERMAL_ERROR;
129 __tt[size - 1].id = nla_get_u32(attr);
132 if (nla_type(attr) == THERMAL_GENL_ATTR_TZ_TRIP_TYPE)
133 __tt[size - 1].type = nla_get_u32(attr);
135 if (nla_type(attr) == THERMAL_GENL_ATTR_TZ_TRIP_TEMP)
136 __tt[size - 1].temp = nla_get_u32(attr);
138 if (nla_type(attr) == THERMAL_GENL_ATTR_TZ_TRIP_HYST)
139 __tt[size - 1].hyst = nla_get_u32(attr);
147 return THERMAL_SUCCESS;
150 static int parse_tz_get_temp(struct genl_info *info, struct thermal_zone *tz)
154 if (info->attrs[THERMAL_GENL_ATTR_TZ_ID])
155 id = nla_get_u32(info->attrs[THERMAL_GENL_ATTR_TZ_ID]);
158 return THERMAL_ERROR;
160 if (info->attrs[THERMAL_GENL_ATTR_TZ_TEMP])
161 tz->temp = nla_get_u32(info->attrs[THERMAL_GENL_ATTR_TZ_TEMP]);
163 return THERMAL_SUCCESS;
166 static int parse_tz_get_gov(struct genl_info *info, struct thermal_zone *tz)
170 if (info->attrs[THERMAL_GENL_ATTR_TZ_ID])
171 id = nla_get_u32(info->attrs[THERMAL_GENL_ATTR_TZ_ID]);
174 return THERMAL_ERROR;
176 if (info->attrs[THERMAL_GENL_ATTR_TZ_GOV_NAME]) {
177 nla_strlcpy(tz->governor,
178 info->attrs[THERMAL_GENL_ATTR_TZ_GOV_NAME],
179 THERMAL_NAME_LENGTH);
182 return THERMAL_SUCCESS;
185 static int handle_netlink(struct nl_cache_ops *unused,
186 struct genl_cmd *cmd,
187 struct genl_info *info, void *arg)
193 case THERMAL_GENL_CMD_TZ_GET_ID:
194 ret = parse_tz_get(info, arg);
197 case THERMAL_GENL_CMD_CDEV_GET:
198 ret = parse_cdev_get(info, arg);
201 case THERMAL_GENL_CMD_TZ_GET_TEMP:
202 ret = parse_tz_get_temp(info, arg);
205 case THERMAL_GENL_CMD_TZ_GET_TRIP:
206 ret = parse_tz_get_trip(info, arg);
209 case THERMAL_GENL_CMD_TZ_GET_GOV:
210 ret = parse_tz_get_gov(info, arg);
214 return THERMAL_ERROR;
220 static struct genl_cmd thermal_cmds[] = {
222 .c_id = THERMAL_GENL_CMD_TZ_GET_ID,
223 .c_name = (char *)"List thermal zones",
224 .c_msg_parser = handle_netlink,
225 .c_maxattr = THERMAL_GENL_ATTR_MAX,
226 .c_attr_policy = thermal_genl_policy,
229 .c_id = THERMAL_GENL_CMD_TZ_GET_GOV,
230 .c_name = (char *)"Get governor",
231 .c_msg_parser = handle_netlink,
232 .c_maxattr = THERMAL_GENL_ATTR_MAX,
233 .c_attr_policy = thermal_genl_policy,
236 .c_id = THERMAL_GENL_CMD_TZ_GET_TEMP,
237 .c_name = (char *)"Get thermal zone temperature",
238 .c_msg_parser = handle_netlink,
239 .c_maxattr = THERMAL_GENL_ATTR_MAX,
240 .c_attr_policy = thermal_genl_policy,
243 .c_id = THERMAL_GENL_CMD_TZ_GET_TRIP,
244 .c_name = (char *)"Get thermal zone trip points",
245 .c_msg_parser = handle_netlink,
246 .c_maxattr = THERMAL_GENL_ATTR_MAX,
247 .c_attr_policy = thermal_genl_policy,
250 .c_id = THERMAL_GENL_CMD_CDEV_GET,
251 .c_name = (char *)"Get cooling devices",
252 .c_msg_parser = handle_netlink,
253 .c_maxattr = THERMAL_GENL_ATTR_MAX,
254 .c_attr_policy = thermal_genl_policy,
258 static struct genl_ops thermal_cmd_ops = {
259 .o_name = (char *)"thermal",
260 .o_cmds = thermal_cmds,
261 .o_ncmds = ARRAY_SIZE(thermal_cmds),
264 static thermal_error_t thermal_genl_auto(struct thermal_handler *th, int id, int cmd,
265 int flags, void *arg)
272 return THERMAL_ERROR;
274 hdr = genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, thermal_cmd_ops.o_id,
275 0, flags, cmd, THERMAL_GENL_VERSION);
277 return THERMAL_ERROR;
279 if (id >= 0 && nla_put_u32(msg, THERMAL_GENL_ATTR_TZ_ID, id))
280 return THERMAL_ERROR;
282 if (nl_send_msg(th->sk_cmd, th->cb_cmd, msg, genl_handle_msg, arg))
283 return THERMAL_ERROR;
287 return THERMAL_SUCCESS;
290 thermal_error_t thermal_cmd_get_tz(struct thermal_handler *th, struct thermal_zone **tz)
292 return thermal_genl_auto(th, -1, THERMAL_GENL_CMD_TZ_GET_ID,
293 NLM_F_DUMP | NLM_F_ACK, tz);
296 thermal_error_t thermal_cmd_get_cdev(struct thermal_handler *th, struct thermal_cdev **tc)
298 return thermal_genl_auto(th, -1, THERMAL_GENL_CMD_CDEV_GET,
299 NLM_F_DUMP | NLM_F_ACK, tc);
302 thermal_error_t thermal_cmd_get_trip(struct thermal_handler *th, struct thermal_zone *tz)
304 return thermal_genl_auto(th, tz->id, THERMAL_GENL_CMD_TZ_GET_TRIP,
308 thermal_error_t thermal_cmd_get_governor(struct thermal_handler *th, struct thermal_zone *tz)
310 return thermal_genl_auto(th, tz->id, THERMAL_GENL_CMD_TZ_GET_GOV, 0, tz);
313 thermal_error_t thermal_cmd_get_temp(struct thermal_handler *th, struct thermal_zone *tz)
315 return thermal_genl_auto(th, tz->id, THERMAL_GENL_CMD_TZ_GET_TEMP, 0, tz);
318 thermal_error_t thermal_cmd_exit(struct thermal_handler *th)
320 if (genl_unregister_family(&thermal_cmd_ops))
321 return THERMAL_ERROR;
323 nl_thermal_disconnect(th->sk_cmd, th->cb_cmd);
325 return THERMAL_SUCCESS;
328 thermal_error_t thermal_cmd_init(struct thermal_handler *th)
333 if (nl_thermal_connect(&th->sk_cmd, &th->cb_cmd))
334 return THERMAL_ERROR;
336 ret = genl_register_family(&thermal_cmd_ops);
338 return THERMAL_ERROR;
340 ret = genl_ops_resolve(th->sk_cmd, &thermal_cmd_ops);
342 return THERMAL_ERROR;
344 family = genl_ctrl_resolve(th->sk_cmd, "nlctrl");
345 if (family != GENL_ID_CTRL)
346 return THERMAL_ERROR;
348 return THERMAL_SUCCESS;