blob: c8f2ea7cfb1f944e9cf7b55cd9377234d1b243b2 [file] [log] [blame]
Colin Cross6310a822010-04-20 14:29:05 -07001/*
2 * Copyright (C) 2010 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#include <stdio.h>
18#include <stdlib.h>
19#include <unistd.h>
20#include <fcntl.h>
21#include <stdarg.h>
22#include <string.h>
23#include <stddef.h>
24#include <ctype.h>
25
26#include "init.h"
27#include "parser.h"
28#include "init_parser.h"
29#include "log.h"
Colin Cross6310a822010-04-20 14:29:05 -070030#include "property_service.h"
31#include "util.h"
32
33#include <cutils/iosched_policy.h>
Dima Zavinda04c522011-09-01 17:09:44 -070034#include <cutils/list.h>
Colin Cross6310a822010-04-20 14:29:05 -070035
Colin Cross6310a822010-04-20 14:29:05 -070036static list_declare(service_list);
37static list_declare(action_list);
38static list_declare(action_queue);
39
Dima Zavin78a1b1f2011-12-20 12:53:48 -080040struct import {
41 struct listnode list;
42 const char *filename;
43};
44
Colin Cross6310a822010-04-20 14:29:05 -070045static void *parse_service(struct parse_state *state, int nargs, char **args);
46static void parse_line_service(struct parse_state *state, int nargs, char **args);
47
48static void *parse_action(struct parse_state *state, int nargs, char **args);
49static void parse_line_action(struct parse_state *state, int nargs, char **args);
50
51#define SECTION 0x01
52#define COMMAND 0x02
53#define OPTION 0x04
54
55#include "keywords.h"
56
57#define KEYWORD(symbol, flags, nargs, func) \
58 [ K_##symbol ] = { #symbol, func, nargs + 1, flags, },
59
Greg Hackmannd68db712013-11-18 09:44:20 -080060static struct {
Colin Cross6310a822010-04-20 14:29:05 -070061 const char *name;
62 int (*func)(int nargs, char **args);
63 unsigned char nargs;
64 unsigned char flags;
65} keyword_info[KEYWORD_COUNT] = {
66 [ K_UNKNOWN ] = { "unknown", 0, 0, 0 },
67#include "keywords.h"
68};
69#undef KEYWORD
70
71#define kw_is(kw, type) (keyword_info[kw].flags & (type))
72#define kw_name(kw) (keyword_info[kw].name)
73#define kw_func(kw) (keyword_info[kw].func)
74#define kw_nargs(kw) (keyword_info[kw].nargs)
75
Greg Hackmannd68db712013-11-18 09:44:20 -080076static int lookup_keyword(const char *s)
Colin Cross6310a822010-04-20 14:29:05 -070077{
78 switch (*s++) {
79 case 'c':
80 if (!strcmp(s, "opy")) return K_copy;
81 if (!strcmp(s, "apability")) return K_capability;
82 if (!strcmp(s, "hdir")) return K_chdir;
83 if (!strcmp(s, "hroot")) return K_chroot;
84 if (!strcmp(s, "lass")) return K_class;
85 if (!strcmp(s, "lass_start")) return K_class_start;
86 if (!strcmp(s, "lass_stop")) return K_class_stop;
Ken Sumrall752923c2010-12-03 16:33:31 -080087 if (!strcmp(s, "lass_reset")) return K_class_reset;
Colin Cross6310a822010-04-20 14:29:05 -070088 if (!strcmp(s, "onsole")) return K_console;
89 if (!strcmp(s, "hown")) return K_chown;
90 if (!strcmp(s, "hmod")) return K_chmod;
91 if (!strcmp(s, "ritical")) return K_critical;
92 break;
93 case 'd':
94 if (!strcmp(s, "isabled")) return K_disabled;
95 if (!strcmp(s, "omainname")) return K_domainname;
96 break;
97 case 'e':
JP Abgrall3beec7e2014-05-02 21:14:29 -070098 if (!strcmp(s, "nable")) return K_enable;
Colin Cross6310a822010-04-20 14:29:05 -070099 if (!strcmp(s, "xec")) return K_exec;
San Mehat429721c2014-09-23 07:48:47 -0700100 if (!strcmp(s, "xeconce")) return K_execonce;
Colin Cross6310a822010-04-20 14:29:05 -0700101 if (!strcmp(s, "xport")) return K_export;
102 break;
103 case 'g':
104 if (!strcmp(s, "roup")) return K_group;
105 break;
106 case 'h':
107 if (!strcmp(s, "ostname")) return K_hostname;
108 break;
109 case 'i':
110 if (!strcmp(s, "oprio")) return K_ioprio;
111 if (!strcmp(s, "fup")) return K_ifup;
112 if (!strcmp(s, "nsmod")) return K_insmod;
113 if (!strcmp(s, "mport")) return K_import;
114 break;
115 case 'k':
116 if (!strcmp(s, "eycodes")) return K_keycodes;
117 break;
118 case 'l':
119 if (!strcmp(s, "oglevel")) return K_loglevel;
Ken Sumrallc5c51032011-03-08 17:01:29 -0800120 if (!strcmp(s, "oad_persist_props")) return K_load_persist_props;
Riley Andrewse4b7b292014-06-16 15:06:21 -0700121 if (!strcmp(s, "oad_all_props")) return K_load_all_props;
Colin Cross6310a822010-04-20 14:29:05 -0700122 break;
123 case 'm':
124 if (!strcmp(s, "kdir")) return K_mkdir;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700125 if (!strcmp(s, "ount_all")) return K_mount_all;
Colin Cross6310a822010-04-20 14:29:05 -0700126 if (!strcmp(s, "ount")) return K_mount;
127 break;
128 case 'o':
129 if (!strcmp(s, "n")) return K_on;
130 if (!strcmp(s, "neshot")) return K_oneshot;
131 if (!strcmp(s, "nrestart")) return K_onrestart;
132 break;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700133 case 'p':
134 if (!strcmp(s, "owerctl")) return K_powerctl;
Colin Cross6310a822010-04-20 14:29:05 -0700135 case 'r':
136 if (!strcmp(s, "estart")) return K_restart;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500137 if (!strcmp(s, "estorecon")) return K_restorecon;
Stephen Smalley726e8f72013-10-09 16:02:09 -0400138 if (!strcmp(s, "estorecon_recursive")) return K_restorecon_recursive;
Ken Sumrall203bad52011-01-18 17:37:41 -0800139 if (!strcmp(s, "mdir")) return K_rmdir;
140 if (!strcmp(s, "m")) return K_rm;
Colin Cross6310a822010-04-20 14:29:05 -0700141 break;
142 case 's':
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500143 if (!strcmp(s, "eclabel")) return K_seclabel;
Colin Cross6310a822010-04-20 14:29:05 -0700144 if (!strcmp(s, "ervice")) return K_service;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500145 if (!strcmp(s, "etcon")) return K_setcon;
146 if (!strcmp(s, "etenforce")) return K_setenforce;
Colin Cross6310a822010-04-20 14:29:05 -0700147 if (!strcmp(s, "etenv")) return K_setenv;
148 if (!strcmp(s, "etkey")) return K_setkey;
149 if (!strcmp(s, "etprop")) return K_setprop;
150 if (!strcmp(s, "etrlimit")) return K_setrlimit;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500151 if (!strcmp(s, "etsebool")) return K_setsebool;
Colin Cross6310a822010-04-20 14:29:05 -0700152 if (!strcmp(s, "ocket")) return K_socket;
153 if (!strcmp(s, "tart")) return K_start;
154 if (!strcmp(s, "top")) return K_stop;
Ken Sumralla76baaa2013-07-09 18:42:09 -0700155 if (!strcmp(s, "wapon_all")) return K_swapon_all;
Colin Cross6310a822010-04-20 14:29:05 -0700156 if (!strcmp(s, "ymlink")) return K_symlink;
157 if (!strcmp(s, "ysclktz")) return K_sysclktz;
158 break;
159 case 't':
160 if (!strcmp(s, "rigger")) return K_trigger;
161 break;
162 case 'u':
163 if (!strcmp(s, "ser")) return K_user;
164 break;
165 case 'w':
166 if (!strcmp(s, "rite")) return K_write;
167 if (!strcmp(s, "ait")) return K_wait;
168 break;
169 }
170 return K_UNKNOWN;
171}
172
Greg Hackmannd68db712013-11-18 09:44:20 -0800173static void parse_line_no_op(struct parse_state *state, int nargs, char **args)
Colin Cross6310a822010-04-20 14:29:05 -0700174{
175}
176
Dima Zavina6235ea2011-12-16 14:20:12 -0800177static int push_chars(char **dst, int *len, const char *chars, int cnt)
178{
179 if (cnt > *len)
180 return -1;
181
182 memcpy(*dst, chars, cnt);
183 *dst += cnt;
184 *len -= cnt;
185
186 return 0;
187}
188
Dima Zavin84bf9af2011-12-20 13:44:41 -0800189int expand_props(char *dst, const char *src, int dst_size)
Dima Zavina6235ea2011-12-16 14:20:12 -0800190{
Dima Zavina6235ea2011-12-16 14:20:12 -0800191 char *dst_ptr = dst;
192 const char *src_ptr = src;
Dima Zavina6235ea2011-12-16 14:20:12 -0800193 int ret = 0;
194 int left = dst_size - 1;
195
196 if (!src || !dst || dst_size == 0)
197 return -1;
198
Dima Zavina6235ea2011-12-16 14:20:12 -0800199 /* - variables can either be $x.y or ${x.y}, in case they are only part
200 * of the string.
201 * - will accept $$ as a literal $.
202 * - no nested property expansion, i.e. ${foo.${bar}} is not supported,
203 * bad things will happen
204 */
205 while (*src_ptr && left > 0) {
206 char *c;
207 char prop[PROP_NAME_MAX + 1];
Colin Cross2deedfe2013-01-28 17:13:35 -0800208 char prop_val[PROP_VALUE_MAX];
Dima Zavina6235ea2011-12-16 14:20:12 -0800209 int prop_len = 0;
Colin Cross2deedfe2013-01-28 17:13:35 -0800210 int prop_val_len;
Dima Zavina6235ea2011-12-16 14:20:12 -0800211
212 c = strchr(src_ptr, '$');
213 if (!c) {
214 while (left-- > 0 && *src_ptr)
215 *(dst_ptr++) = *(src_ptr++);
216 break;
217 }
218
219 memset(prop, 0, sizeof(prop));
220
221 ret = push_chars(&dst_ptr, &left, src_ptr, c - src_ptr);
222 if (ret < 0)
223 goto err_nospace;
224 c++;
225
226 if (*c == '$') {
227 *(dst_ptr++) = *(c++);
228 src_ptr = c;
229 left--;
230 continue;
231 } else if (*c == '\0') {
232 break;
233 }
234
235 if (*c == '{') {
236 c++;
237 while (*c && *c != '}' && prop_len < PROP_NAME_MAX)
238 prop[prop_len++] = *(c++);
239 if (*c != '}') {
240 /* failed to find closing brace, abort. */
241 if (prop_len == PROP_NAME_MAX)
242 ERROR("prop name too long during expansion of '%s'\n",
243 src);
244 else if (*c == '\0')
245 ERROR("unexpected end of string in '%s', looking for }\n",
246 src);
247 goto err;
248 }
249 prop[prop_len] = '\0';
250 c++;
251 } else if (*c) {
252 while (*c && prop_len < PROP_NAME_MAX)
253 prop[prop_len++] = *(c++);
254 if (prop_len == PROP_NAME_MAX && *c != '\0') {
255 ERROR("prop name too long in '%s'\n", src);
256 goto err;
257 }
258 prop[prop_len] = '\0';
259 ERROR("using deprecated syntax for specifying property '%s', use ${name} instead\n",
260 prop);
261 }
262
263 if (prop_len == 0) {
264 ERROR("invalid zero-length prop name in '%s'\n", src);
265 goto err;
266 }
267
Colin Cross2deedfe2013-01-28 17:13:35 -0800268 prop_val_len = property_get(prop, prop_val);
269 if (!prop_val_len) {
Dima Zavina6235ea2011-12-16 14:20:12 -0800270 ERROR("property '%s' doesn't exist while expanding '%s'\n",
271 prop, src);
272 goto err;
273 }
274
Colin Cross2deedfe2013-01-28 17:13:35 -0800275 ret = push_chars(&dst_ptr, &left, prop_val, prop_val_len);
Dima Zavina6235ea2011-12-16 14:20:12 -0800276 if (ret < 0)
277 goto err_nospace;
278 src_ptr = c;
279 continue;
280 }
281
282 *dst_ptr = '\0';
283 return 0;
284
285err_nospace:
286 ERROR("destination buffer overflow while expanding '%s'\n", src);
287err:
288 return -1;
289}
290
Greg Hackmannd68db712013-11-18 09:44:20 -0800291static void parse_import(struct parse_state *state, int nargs, char **args)
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800292{
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800293 struct listnode *import_list = (listnode*) state->priv;
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800294 char conf_file[PATH_MAX];
295 int ret;
296
297 if (nargs != 2) {
298 ERROR("single argument needed for import\n");
299 return;
300 }
301
302 ret = expand_props(conf_file, args[1], sizeof(conf_file));
303 if (ret) {
304 ERROR("error while handling import on line '%d' in '%s'\n",
305 state->line, state->filename);
306 return;
307 }
308
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800309 struct import* import = (struct import*) calloc(1, sizeof(struct import));
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800310 import->filename = strdup(conf_file);
311 list_add_tail(import_list, &import->list);
312 INFO("found import '%s', adding to import list", import->filename);
313}
314
Greg Hackmannd68db712013-11-18 09:44:20 -0800315static void parse_new_section(struct parse_state *state, int kw,
Colin Cross6310a822010-04-20 14:29:05 -0700316 int nargs, char **args)
317{
318 printf("[ %s %s ]\n", args[0],
319 nargs > 1 ? args[1] : "");
320 switch(kw) {
321 case K_service:
322 state->context = parse_service(state, nargs, args);
323 if (state->context) {
324 state->parse_line = parse_line_service;
325 return;
326 }
327 break;
328 case K_on:
329 state->context = parse_action(state, nargs, args);
330 if (state->context) {
331 state->parse_line = parse_line_action;
332 return;
333 }
334 break;
Mike Lockwoodf5cb5b22011-06-07 20:08:40 -0700335 case K_import:
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800336 parse_import(state, nargs, args);
Dima Zavina6235ea2011-12-16 14:20:12 -0800337 break;
Colin Cross6310a822010-04-20 14:29:05 -0700338 }
339 state->parse_line = parse_line_no_op;
340}
341
342static void parse_config(const char *fn, char *s)
343{
344 struct parse_state state;
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800345 struct listnode import_list;
346 struct listnode *node;
Colin Cross6310a822010-04-20 14:29:05 -0700347 char *args[INIT_PARSER_MAXARGS];
348 int nargs;
349
350 nargs = 0;
351 state.filename = fn;
Bruce Beare1be69682010-12-26 09:55:10 -0800352 state.line = 0;
Colin Cross6310a822010-04-20 14:29:05 -0700353 state.ptr = s;
354 state.nexttoken = 0;
355 state.parse_line = parse_line_no_op;
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800356
357 list_init(&import_list);
358 state.priv = &import_list;
359
Colin Cross6310a822010-04-20 14:29:05 -0700360 for (;;) {
361 switch (next_token(&state)) {
362 case T_EOF:
363 state.parse_line(&state, 0, 0);
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800364 goto parser_done;
Colin Cross6310a822010-04-20 14:29:05 -0700365 case T_NEWLINE:
Bruce Beare1be69682010-12-26 09:55:10 -0800366 state.line++;
Colin Cross6310a822010-04-20 14:29:05 -0700367 if (nargs) {
368 int kw = lookup_keyword(args[0]);
369 if (kw_is(kw, SECTION)) {
370 state.parse_line(&state, 0, 0);
371 parse_new_section(&state, kw, nargs, args);
372 } else {
373 state.parse_line(&state, nargs, args);
374 }
375 nargs = 0;
376 }
377 break;
378 case T_TEXT:
379 if (nargs < INIT_PARSER_MAXARGS) {
380 args[nargs++] = state.text;
381 }
382 break;
383 }
384 }
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800385
386parser_done:
387 list_for_each(node, &import_list) {
388 struct import *import = node_to_item(node, struct import, list);
389 int ret;
390
391 INFO("importing '%s'", import->filename);
392 ret = init_parse_config_file(import->filename);
393 if (ret)
394 ERROR("could not import file '%s' from '%s'\n",
395 import->filename, fn);
396 }
Colin Cross6310a822010-04-20 14:29:05 -0700397}
398
399int init_parse_config_file(const char *fn)
400{
401 char *data;
402 data = read_file(fn, 0);
403 if (!data) return -1;
404
405 parse_config(fn, data);
406 DUMP();
407 return 0;
408}
409
410static int valid_name(const char *name)
411{
412 if (strlen(name) > 16) {
413 return 0;
414 }
415 while (*name) {
416 if (!isalnum(*name) && (*name != '_') && (*name != '-')) {
417 return 0;
418 }
419 name++;
420 }
421 return 1;
422}
423
424struct service *service_find_by_name(const char *name)
425{
426 struct listnode *node;
427 struct service *svc;
428 list_for_each(node, &service_list) {
429 svc = node_to_item(node, struct service, slist);
430 if (!strcmp(svc->name, name)) {
431 return svc;
432 }
433 }
434 return 0;
435}
436
437struct service *service_find_by_pid(pid_t pid)
438{
439 struct listnode *node;
440 struct service *svc;
441 list_for_each(node, &service_list) {
442 svc = node_to_item(node, struct service, slist);
443 if (svc->pid == pid) {
444 return svc;
445 }
446 }
447 return 0;
448}
449
450struct service *service_find_by_keychord(int keychord_id)
451{
452 struct listnode *node;
453 struct service *svc;
454 list_for_each(node, &service_list) {
455 svc = node_to_item(node, struct service, slist);
456 if (svc->keychord_id == keychord_id) {
457 return svc;
458 }
459 }
460 return 0;
461}
462
463void service_for_each(void (*func)(struct service *svc))
464{
465 struct listnode *node;
466 struct service *svc;
467 list_for_each(node, &service_list) {
468 svc = node_to_item(node, struct service, slist);
469 func(svc);
470 }
471}
472
473void service_for_each_class(const char *classname,
474 void (*func)(struct service *svc))
475{
476 struct listnode *node;
477 struct service *svc;
478 list_for_each(node, &service_list) {
479 svc = node_to_item(node, struct service, slist);
480 if (!strcmp(svc->classname, classname)) {
481 func(svc);
482 }
483 }
484}
485
486void service_for_each_flags(unsigned matchflags,
487 void (*func)(struct service *svc))
488{
489 struct listnode *node;
490 struct service *svc;
491 list_for_each(node, &service_list) {
492 svc = node_to_item(node, struct service, slist);
493 if (svc->flags & matchflags) {
494 func(svc);
495 }
496 }
497}
498
499void action_for_each_trigger(const char *trigger,
500 void (*func)(struct action *act))
501{
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700502 struct listnode *node, *node2;
Colin Cross6310a822010-04-20 14:29:05 -0700503 struct action *act;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700504 struct trigger *cur_trigger;
505
Colin Cross6310a822010-04-20 14:29:05 -0700506 list_for_each(node, &action_list) {
507 act = node_to_item(node, struct action, alist);
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700508 list_for_each(node2, &act->triggers) {
509 cur_trigger = node_to_item(node2, struct trigger, nlist);
510 if (!strcmp(cur_trigger->name, trigger)) {
511 func(act);
512 }
Colin Cross6310a822010-04-20 14:29:05 -0700513 }
514 }
515}
516
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700517
Colin Cross6310a822010-04-20 14:29:05 -0700518void queue_property_triggers(const char *name, const char *value)
519{
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700520 struct listnode *node, *node2;
Colin Cross6310a822010-04-20 14:29:05 -0700521 struct action *act;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700522 struct trigger *cur_trigger;
523 bool match;
524 int name_length;
525
Colin Cross6310a822010-04-20 14:29:05 -0700526 list_for_each(node, &action_list) {
527 act = node_to_item(node, struct action, alist);
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700528 match = !name;
529 list_for_each(node2, &act->triggers) {
530 cur_trigger = node_to_item(node2, struct trigger, nlist);
531 if (!strncmp(cur_trigger->name, "property:", strlen("property:"))) {
532 const char *test = cur_trigger->name + strlen("property:");
533 if (!match) {
534 name_length = strlen(name);
535 if (!strncmp(name, test, name_length) &&
536 test[name_length] == '=' &&
537 (!strcmp(test + name_length + 1, value) ||
538 !strcmp(test + name_length + 1, "*"))) {
539 match = true;
540 continue;
541 }
542 } else {
543 const char* equals = strchr(test, '=');
544 if (equals) {
545 char prop_name[PROP_NAME_MAX + 1];
546 char value[PROP_VALUE_MAX];
547 int length = equals - test;
548 if (length <= PROP_NAME_MAX) {
549 int ret;
550 memcpy(prop_name, test, length);
551 prop_name[length] = 0;
Colin Cross6310a822010-04-20 14:29:05 -0700552
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700553 /* does the property exist, and match the trigger value? */
554 ret = property_get(prop_name, value);
555 if (ret > 0 && (!strcmp(equals + 1, value) ||
556 !strcmp(equals + 1, "*"))) {
557 continue;
558 }
559 }
560 }
561 }
562 }
563 match = false;
564 break;
565 }
566 if (match) {
567 action_add_queue_tail(act);
Colin Cross6310a822010-04-20 14:29:05 -0700568 }
569 }
570}
571
572void queue_all_property_triggers()
573{
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700574 queue_property_triggers(NULL, NULL);
Colin Cross6310a822010-04-20 14:29:05 -0700575}
576
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800577void queue_builtin_action(int (*func)(int nargs, char **args), const char *name)
Colin Cross6310a822010-04-20 14:29:05 -0700578{
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800579 action* act = (action*) calloc(1, sizeof(*act));
580 trigger* cur_trigger = (trigger*) calloc(1, sizeof(*cur_trigger));
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700581 cur_trigger->name = name;
582 list_init(&act->triggers);
583 list_add_tail(&act->triggers, &cur_trigger->nlist);
Colin Cross6310a822010-04-20 14:29:05 -0700584 list_init(&act->commands);
Colin Crossa5064622013-03-07 13:42:29 -0800585 list_init(&act->qlist);
Colin Cross6310a822010-04-20 14:29:05 -0700586
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800587 command* cmd = (command*) calloc(1, sizeof(*cmd));
Colin Cross6310a822010-04-20 14:29:05 -0700588 cmd->func = func;
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800589 cmd->args[0] = const_cast<char*>(name);
Riley Andrews24a3b782014-06-26 13:56:01 -0700590 cmd->nargs = 1;
Colin Cross6310a822010-04-20 14:29:05 -0700591 list_add_tail(&act->commands, &cmd->clist);
592
593 list_add_tail(&action_list, &act->alist);
594 action_add_queue_tail(act);
595}
596
597void action_add_queue_tail(struct action *act)
598{
Colin Crossa5064622013-03-07 13:42:29 -0800599 if (list_empty(&act->qlist)) {
600 list_add_tail(&action_queue, &act->qlist);
601 }
Colin Cross6310a822010-04-20 14:29:05 -0700602}
603
604struct action *action_remove_queue_head(void)
605{
606 if (list_empty(&action_queue)) {
607 return 0;
608 } else {
609 struct listnode *node = list_head(&action_queue);
610 struct action *act = node_to_item(node, struct action, qlist);
611 list_remove(node);
Colin Crossa5064622013-03-07 13:42:29 -0800612 list_init(node);
Colin Cross6310a822010-04-20 14:29:05 -0700613 return act;
614 }
615}
616
617int action_queue_empty()
618{
619 return list_empty(&action_queue);
620}
621
622static void *parse_service(struct parse_state *state, int nargs, char **args)
623{
Colin Cross6310a822010-04-20 14:29:05 -0700624 if (nargs < 3) {
625 parse_error(state, "services must have a name and a program\n");
626 return 0;
627 }
628 if (!valid_name(args[1])) {
629 parse_error(state, "invalid service name '%s'\n", args[1]);
630 return 0;
631 }
632
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800633 service* svc = (service*) service_find_by_name(args[1]);
Colin Cross6310a822010-04-20 14:29:05 -0700634 if (svc) {
635 parse_error(state, "ignored duplicate definition of service '%s'\n", args[1]);
636 return 0;
637 }
638
639 nargs -= 2;
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800640 svc = (service*) calloc(1, sizeof(*svc) + sizeof(char*) * nargs);
Colin Cross6310a822010-04-20 14:29:05 -0700641 if (!svc) {
642 parse_error(state, "out of memory\n");
643 return 0;
644 }
645 svc->name = args[1];
646 svc->classname = "default";
647 memcpy(svc->args, args + 2, sizeof(char*) * nargs);
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800648 trigger* cur_trigger = (trigger*) calloc(1, sizeof(*cur_trigger));
Colin Cross6310a822010-04-20 14:29:05 -0700649 svc->args[nargs] = 0;
650 svc->nargs = nargs;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700651 list_init(&svc->onrestart.triggers);
652 cur_trigger->name = "onrestart";
653 list_add_tail(&svc->onrestart.triggers, &cur_trigger->nlist);
Colin Cross6310a822010-04-20 14:29:05 -0700654 list_init(&svc->onrestart.commands);
655 list_add_tail(&service_list, &svc->slist);
656 return svc;
657}
658
659static void parse_line_service(struct parse_state *state, int nargs, char **args)
660{
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800661 struct service *svc = (service*) state->context;
Colin Cross6310a822010-04-20 14:29:05 -0700662 struct command *cmd;
663 int i, kw, kw_nargs;
664
665 if (nargs == 0) {
666 return;
667 }
668
669 svc->ioprio_class = IoSchedClass_NONE;
670
671 kw = lookup_keyword(args[0]);
672 switch (kw) {
673 case K_capability:
674 break;
675 case K_class:
676 if (nargs != 2) {
677 parse_error(state, "class option requires a classname\n");
678 } else {
679 svc->classname = args[1];
680 }
681 break;
682 case K_console:
683 svc->flags |= SVC_CONSOLE;
684 break;
685 case K_disabled:
686 svc->flags |= SVC_DISABLED;
Ken Sumralla2864802011-10-26 16:56:00 -0700687 svc->flags |= SVC_RC_DISABLED;
Colin Cross6310a822010-04-20 14:29:05 -0700688 break;
689 case K_ioprio:
690 if (nargs != 3) {
691 parse_error(state, "ioprio optin usage: ioprio <rt|be|idle> <ioprio 0-7>\n");
692 } else {
693 svc->ioprio_pri = strtoul(args[2], 0, 8);
694
695 if (svc->ioprio_pri < 0 || svc->ioprio_pri > 7) {
696 parse_error(state, "priority value must be range 0 - 7\n");
697 break;
698 }
699
700 if (!strcmp(args[1], "rt")) {
701 svc->ioprio_class = IoSchedClass_RT;
702 } else if (!strcmp(args[1], "be")) {
703 svc->ioprio_class = IoSchedClass_BE;
704 } else if (!strcmp(args[1], "idle")) {
705 svc->ioprio_class = IoSchedClass_IDLE;
706 } else {
707 parse_error(state, "ioprio option usage: ioprio <rt|be|idle> <0-7>\n");
708 }
709 }
710 break;
711 case K_group:
712 if (nargs < 2) {
713 parse_error(state, "group option requires a group id\n");
714 } else if (nargs > NR_SVC_SUPP_GIDS + 2) {
715 parse_error(state, "group option accepts at most %d supp. groups\n",
716 NR_SVC_SUPP_GIDS);
717 } else {
718 int n;
719 svc->gid = decode_uid(args[1]);
720 for (n = 2; n < nargs; n++) {
721 svc->supp_gids[n-2] = decode_uid(args[n]);
722 }
723 svc->nr_supp_gids = n - 2;
724 }
725 break;
726 case K_keycodes:
727 if (nargs < 2) {
728 parse_error(state, "keycodes option requires atleast one keycode\n");
729 } else {
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800730 svc->keycodes = (int*) malloc((nargs - 1) * sizeof(svc->keycodes[0]));
Colin Cross6310a822010-04-20 14:29:05 -0700731 if (!svc->keycodes) {
732 parse_error(state, "could not allocate keycodes\n");
733 } else {
734 svc->nkeycodes = nargs - 1;
735 for (i = 1; i < nargs; i++) {
736 svc->keycodes[i - 1] = atoi(args[i]);
737 }
738 }
739 }
740 break;
741 case K_oneshot:
742 svc->flags |= SVC_ONESHOT;
743 break;
744 case K_onrestart:
745 nargs--;
746 args++;
747 kw = lookup_keyword(args[0]);
748 if (!kw_is(kw, COMMAND)) {
749 parse_error(state, "invalid command '%s'\n", args[0]);
750 break;
751 }
752 kw_nargs = kw_nargs(kw);
753 if (nargs < kw_nargs) {
754 parse_error(state, "%s requires %d %s\n", args[0], kw_nargs - 1,
755 kw_nargs > 2 ? "arguments" : "argument");
756 break;
757 }
758
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800759 cmd = (command*) malloc(sizeof(*cmd) + sizeof(char*) * nargs);
Colin Cross6310a822010-04-20 14:29:05 -0700760 cmd->func = kw_func(kw);
761 cmd->nargs = nargs;
762 memcpy(cmd->args, args, sizeof(char*) * nargs);
763 list_add_tail(&svc->onrestart.commands, &cmd->clist);
764 break;
765 case K_critical:
766 svc->flags |= SVC_CRITICAL;
767 break;
768 case K_setenv: { /* name value */
Gavin.Changc3a46762013-09-28 00:22:11 +0800769 if (nargs < 3) {
Colin Cross6310a822010-04-20 14:29:05 -0700770 parse_error(state, "setenv option requires name and value arguments\n");
771 break;
772 }
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800773 svcenvinfo* ei = (svcenvinfo*) calloc(1, sizeof(*ei));
Colin Cross6310a822010-04-20 14:29:05 -0700774 if (!ei) {
775 parse_error(state, "out of memory\n");
776 break;
777 }
778 ei->name = args[1];
779 ei->value = args[2];
780 ei->next = svc->envvars;
781 svc->envvars = ei;
782 break;
783 }
Stephen Smalley8348d272013-05-13 12:37:04 -0400784 case K_socket: {/* name type perm [ uid gid context ] */
Colin Cross6310a822010-04-20 14:29:05 -0700785 if (nargs < 4) {
786 parse_error(state, "socket option requires name, type, perm arguments\n");
787 break;
788 }
Mike Lockwood912ff852010-10-01 08:20:36 -0400789 if (strcmp(args[2],"dgram") && strcmp(args[2],"stream")
790 && strcmp(args[2],"seqpacket")) {
791 parse_error(state, "socket type must be 'dgram', 'stream' or 'seqpacket'\n");
Colin Cross6310a822010-04-20 14:29:05 -0700792 break;
793 }
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800794 socketinfo* si = (socketinfo*) calloc(1, sizeof(*si));
Colin Cross6310a822010-04-20 14:29:05 -0700795 if (!si) {
796 parse_error(state, "out of memory\n");
797 break;
798 }
799 si->name = args[1];
800 si->type = args[2];
801 si->perm = strtoul(args[3], 0, 8);
802 if (nargs > 4)
803 si->uid = decode_uid(args[4]);
804 if (nargs > 5)
805 si->gid = decode_uid(args[5]);
Stephen Smalley8348d272013-05-13 12:37:04 -0400806 if (nargs > 6)
807 si->socketcon = args[6];
Colin Cross6310a822010-04-20 14:29:05 -0700808 si->next = svc->sockets;
809 svc->sockets = si;
810 break;
811 }
812 case K_user:
813 if (nargs != 2) {
814 parse_error(state, "user option requires a user id\n");
815 } else {
816 svc->uid = decode_uid(args[1]);
817 }
818 break;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500819 case K_seclabel:
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500820 if (nargs != 2) {
821 parse_error(state, "seclabel option requires a label string\n");
822 } else {
823 svc->seclabel = args[1];
824 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500825 break;
826
Colin Cross6310a822010-04-20 14:29:05 -0700827 default:
828 parse_error(state, "invalid option '%s'\n", args[0]);
829 }
830}
831
832static void *parse_action(struct parse_state *state, int nargs, char **args)
833{
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700834 struct trigger *cur_trigger;
835 int i;
Colin Cross6310a822010-04-20 14:29:05 -0700836 if (nargs < 2) {
837 parse_error(state, "actions must have a trigger\n");
838 return 0;
839 }
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700840
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800841 action* act = (action*) calloc(1, sizeof(*act));
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700842 list_init(&act->triggers);
843
844 for (i = 1; i < nargs; i++) {
845 if (!(i % 2)) {
846 if (strcmp(args[i], "&&")) {
847 parse_error(state, "& is the only symbol allowed to concatenate actions\n");
848 return 0;
849 } else
850 continue;
851 }
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800852 cur_trigger = (trigger*) calloc(1, sizeof(*cur_trigger));
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700853 cur_trigger->name = args[i];
854 list_add_tail(&act->triggers, &cur_trigger->nlist);
855 }
856
Colin Cross6310a822010-04-20 14:29:05 -0700857 list_init(&act->commands);
Colin Crossa5064622013-03-07 13:42:29 -0800858 list_init(&act->qlist);
Colin Cross6310a822010-04-20 14:29:05 -0700859 list_add_tail(&action_list, &act->alist);
860 /* XXX add to hash */
861 return act;
862}
863
864static void parse_line_action(struct parse_state* state, int nargs, char **args)
865{
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800866 struct action *act = (action*) state->context;
Colin Cross6310a822010-04-20 14:29:05 -0700867 int kw, n;
868
869 if (nargs == 0) {
870 return;
871 }
872
873 kw = lookup_keyword(args[0]);
874 if (!kw_is(kw, COMMAND)) {
875 parse_error(state, "invalid command '%s'\n", args[0]);
876 return;
877 }
878
879 n = kw_nargs(kw);
880 if (nargs < n) {
881 parse_error(state, "%s requires %d %s\n", args[0], n - 1,
882 n > 2 ? "arguments" : "argument");
883 return;
884 }
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800885 command* cmd = (command*) malloc(sizeof(*cmd) + sizeof(char*) * nargs);
Colin Cross6310a822010-04-20 14:29:05 -0700886 cmd->func = kw_func(kw);
Riley Andrews24a3b782014-06-26 13:56:01 -0700887 cmd->line = state->line;
888 cmd->filename = state->filename;
Colin Cross6310a822010-04-20 14:29:05 -0700889 cmd->nargs = nargs;
890 memcpy(cmd->args, args, sizeof(char*) * nargs);
891 list_add_tail(&act->commands, &cmd->clist);
892}