blob: a124fa2243c8e59b00856a479c4e423884be0c63 [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;
100 if (!strcmp(s, "xport")) return K_export;
101 break;
102 case 'g':
103 if (!strcmp(s, "roup")) return K_group;
104 break;
105 case 'h':
106 if (!strcmp(s, "ostname")) return K_hostname;
107 break;
108 case 'i':
109 if (!strcmp(s, "oprio")) return K_ioprio;
110 if (!strcmp(s, "fup")) return K_ifup;
111 if (!strcmp(s, "nsmod")) return K_insmod;
112 if (!strcmp(s, "mport")) return K_import;
113 break;
114 case 'k':
115 if (!strcmp(s, "eycodes")) return K_keycodes;
116 break;
117 case 'l':
118 if (!strcmp(s, "oglevel")) return K_loglevel;
Ken Sumrallc5c51032011-03-08 17:01:29 -0800119 if (!strcmp(s, "oad_persist_props")) return K_load_persist_props;
Riley Andrewse4b7b292014-06-16 15:06:21 -0700120 if (!strcmp(s, "oad_all_props")) return K_load_all_props;
Colin Cross6310a822010-04-20 14:29:05 -0700121 break;
122 case 'm':
123 if (!strcmp(s, "kdir")) return K_mkdir;
Ken Sumrall0e9dd902012-04-17 17:20:16 -0700124 if (!strcmp(s, "ount_all")) return K_mount_all;
Colin Cross6310a822010-04-20 14:29:05 -0700125 if (!strcmp(s, "ount")) return K_mount;
126 break;
127 case 'o':
128 if (!strcmp(s, "n")) return K_on;
129 if (!strcmp(s, "neshot")) return K_oneshot;
130 if (!strcmp(s, "nrestart")) return K_onrestart;
131 break;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700132 case 'p':
133 if (!strcmp(s, "owerctl")) return K_powerctl;
Colin Cross6310a822010-04-20 14:29:05 -0700134 case 'r':
135 if (!strcmp(s, "estart")) return K_restart;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500136 if (!strcmp(s, "estorecon")) return K_restorecon;
Stephen Smalley726e8f72013-10-09 16:02:09 -0400137 if (!strcmp(s, "estorecon_recursive")) return K_restorecon_recursive;
Ken Sumrall203bad52011-01-18 17:37:41 -0800138 if (!strcmp(s, "mdir")) return K_rmdir;
139 if (!strcmp(s, "m")) return K_rm;
Colin Cross6310a822010-04-20 14:29:05 -0700140 break;
141 case 's':
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500142 if (!strcmp(s, "eclabel")) return K_seclabel;
Colin Cross6310a822010-04-20 14:29:05 -0700143 if (!strcmp(s, "ervice")) return K_service;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500144 if (!strcmp(s, "etcon")) return K_setcon;
145 if (!strcmp(s, "etenforce")) return K_setenforce;
Colin Cross6310a822010-04-20 14:29:05 -0700146 if (!strcmp(s, "etenv")) return K_setenv;
147 if (!strcmp(s, "etkey")) return K_setkey;
148 if (!strcmp(s, "etprop")) return K_setprop;
149 if (!strcmp(s, "etrlimit")) return K_setrlimit;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500150 if (!strcmp(s, "etsebool")) return K_setsebool;
Colin Cross6310a822010-04-20 14:29:05 -0700151 if (!strcmp(s, "ocket")) return K_socket;
152 if (!strcmp(s, "tart")) return K_start;
153 if (!strcmp(s, "top")) return K_stop;
Ken Sumralla76baaa2013-07-09 18:42:09 -0700154 if (!strcmp(s, "wapon_all")) return K_swapon_all;
Colin Cross6310a822010-04-20 14:29:05 -0700155 if (!strcmp(s, "ymlink")) return K_symlink;
156 if (!strcmp(s, "ysclktz")) return K_sysclktz;
157 break;
158 case 't':
159 if (!strcmp(s, "rigger")) return K_trigger;
160 break;
161 case 'u':
162 if (!strcmp(s, "ser")) return K_user;
163 break;
164 case 'w':
165 if (!strcmp(s, "rite")) return K_write;
166 if (!strcmp(s, "ait")) return K_wait;
167 break;
168 }
169 return K_UNKNOWN;
170}
171
Greg Hackmannd68db712013-11-18 09:44:20 -0800172static void parse_line_no_op(struct parse_state *state, int nargs, char **args)
Colin Cross6310a822010-04-20 14:29:05 -0700173{
174}
175
Dima Zavina6235ea2011-12-16 14:20:12 -0800176static int push_chars(char **dst, int *len, const char *chars, int cnt)
177{
178 if (cnt > *len)
179 return -1;
180
181 memcpy(*dst, chars, cnt);
182 *dst += cnt;
183 *len -= cnt;
184
185 return 0;
186}
187
Dima Zavin84bf9af2011-12-20 13:44:41 -0800188int expand_props(char *dst, const char *src, int dst_size)
Dima Zavina6235ea2011-12-16 14:20:12 -0800189{
Dima Zavina6235ea2011-12-16 14:20:12 -0800190 char *dst_ptr = dst;
191 const char *src_ptr = src;
Dima Zavina6235ea2011-12-16 14:20:12 -0800192 int ret = 0;
193 int left = dst_size - 1;
194
195 if (!src || !dst || dst_size == 0)
196 return -1;
197
Dima Zavina6235ea2011-12-16 14:20:12 -0800198 /* - variables can either be $x.y or ${x.y}, in case they are only part
199 * of the string.
200 * - will accept $$ as a literal $.
201 * - no nested property expansion, i.e. ${foo.${bar}} is not supported,
202 * bad things will happen
203 */
204 while (*src_ptr && left > 0) {
205 char *c;
206 char prop[PROP_NAME_MAX + 1];
Colin Cross2deedfe2013-01-28 17:13:35 -0800207 char prop_val[PROP_VALUE_MAX];
Dima Zavina6235ea2011-12-16 14:20:12 -0800208 int prop_len = 0;
Colin Cross2deedfe2013-01-28 17:13:35 -0800209 int prop_val_len;
Dima Zavina6235ea2011-12-16 14:20:12 -0800210
211 c = strchr(src_ptr, '$');
212 if (!c) {
213 while (left-- > 0 && *src_ptr)
214 *(dst_ptr++) = *(src_ptr++);
215 break;
216 }
217
218 memset(prop, 0, sizeof(prop));
219
220 ret = push_chars(&dst_ptr, &left, src_ptr, c - src_ptr);
221 if (ret < 0)
222 goto err_nospace;
223 c++;
224
225 if (*c == '$') {
226 *(dst_ptr++) = *(c++);
227 src_ptr = c;
228 left--;
229 continue;
230 } else if (*c == '\0') {
231 break;
232 }
233
234 if (*c == '{') {
235 c++;
236 while (*c && *c != '}' && prop_len < PROP_NAME_MAX)
237 prop[prop_len++] = *(c++);
238 if (*c != '}') {
239 /* failed to find closing brace, abort. */
240 if (prop_len == PROP_NAME_MAX)
241 ERROR("prop name too long during expansion of '%s'\n",
242 src);
243 else if (*c == '\0')
244 ERROR("unexpected end of string in '%s', looking for }\n",
245 src);
246 goto err;
247 }
248 prop[prop_len] = '\0';
249 c++;
250 } else if (*c) {
251 while (*c && prop_len < PROP_NAME_MAX)
252 prop[prop_len++] = *(c++);
253 if (prop_len == PROP_NAME_MAX && *c != '\0') {
254 ERROR("prop name too long in '%s'\n", src);
255 goto err;
256 }
257 prop[prop_len] = '\0';
258 ERROR("using deprecated syntax for specifying property '%s', use ${name} instead\n",
259 prop);
260 }
261
262 if (prop_len == 0) {
263 ERROR("invalid zero-length prop name in '%s'\n", src);
264 goto err;
265 }
266
Colin Cross2deedfe2013-01-28 17:13:35 -0800267 prop_val_len = property_get(prop, prop_val);
268 if (!prop_val_len) {
Dima Zavina6235ea2011-12-16 14:20:12 -0800269 ERROR("property '%s' doesn't exist while expanding '%s'\n",
270 prop, src);
271 goto err;
272 }
273
Colin Cross2deedfe2013-01-28 17:13:35 -0800274 ret = push_chars(&dst_ptr, &left, prop_val, prop_val_len);
Dima Zavina6235ea2011-12-16 14:20:12 -0800275 if (ret < 0)
276 goto err_nospace;
277 src_ptr = c;
278 continue;
279 }
280
281 *dst_ptr = '\0';
282 return 0;
283
284err_nospace:
285 ERROR("destination buffer overflow while expanding '%s'\n", src);
286err:
287 return -1;
288}
289
Greg Hackmannd68db712013-11-18 09:44:20 -0800290static void parse_import(struct parse_state *state, int nargs, char **args)
Dima Zavin78a1b1f2011-12-20 12:53:48 -0800291{
292 struct listnode *import_list = state->priv;
293 struct import *import;
294 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
309 import = calloc(1, sizeof(struct import));
310 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
577void queue_builtin_action(int (*func)(int nargs, char **args), char *name)
578{
579 struct action *act;
580 struct command *cmd;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700581 struct trigger *cur_trigger;
Colin Cross6310a822010-04-20 14:29:05 -0700582
583 act = calloc(1, sizeof(*act));
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700584 cur_trigger = calloc(1, sizeof(*cur_trigger));
585 cur_trigger->name = name;
586 list_init(&act->triggers);
587 list_add_tail(&act->triggers, &cur_trigger->nlist);
Colin Cross6310a822010-04-20 14:29:05 -0700588 list_init(&act->commands);
Colin Crossa5064622013-03-07 13:42:29 -0800589 list_init(&act->qlist);
Colin Cross6310a822010-04-20 14:29:05 -0700590
591 cmd = calloc(1, sizeof(*cmd));
592 cmd->func = func;
593 cmd->args[0] = name;
Riley Andrews24a3b782014-06-26 13:56:01 -0700594 cmd->nargs = 1;
Colin Cross6310a822010-04-20 14:29:05 -0700595 list_add_tail(&act->commands, &cmd->clist);
596
597 list_add_tail(&action_list, &act->alist);
598 action_add_queue_tail(act);
599}
600
601void action_add_queue_tail(struct action *act)
602{
Colin Crossa5064622013-03-07 13:42:29 -0800603 if (list_empty(&act->qlist)) {
604 list_add_tail(&action_queue, &act->qlist);
605 }
Colin Cross6310a822010-04-20 14:29:05 -0700606}
607
608struct action *action_remove_queue_head(void)
609{
610 if (list_empty(&action_queue)) {
611 return 0;
612 } else {
613 struct listnode *node = list_head(&action_queue);
614 struct action *act = node_to_item(node, struct action, qlist);
615 list_remove(node);
Colin Crossa5064622013-03-07 13:42:29 -0800616 list_init(node);
Colin Cross6310a822010-04-20 14:29:05 -0700617 return act;
618 }
619}
620
621int action_queue_empty()
622{
623 return list_empty(&action_queue);
624}
625
626static void *parse_service(struct parse_state *state, int nargs, char **args)
627{
628 struct service *svc;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700629 struct trigger *cur_trigger;
Colin Cross6310a822010-04-20 14:29:05 -0700630 if (nargs < 3) {
631 parse_error(state, "services must have a name and a program\n");
632 return 0;
633 }
634 if (!valid_name(args[1])) {
635 parse_error(state, "invalid service name '%s'\n", args[1]);
636 return 0;
637 }
638
639 svc = service_find_by_name(args[1]);
640 if (svc) {
641 parse_error(state, "ignored duplicate definition of service '%s'\n", args[1]);
642 return 0;
643 }
644
645 nargs -= 2;
646 svc = calloc(1, sizeof(*svc) + sizeof(char*) * nargs);
647 if (!svc) {
648 parse_error(state, "out of memory\n");
649 return 0;
650 }
651 svc->name = args[1];
652 svc->classname = "default";
653 memcpy(svc->args, args + 2, sizeof(char*) * nargs);
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700654 cur_trigger = calloc(1, sizeof(*cur_trigger));
Colin Cross6310a822010-04-20 14:29:05 -0700655 svc->args[nargs] = 0;
656 svc->nargs = nargs;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700657 list_init(&svc->onrestart.triggers);
658 cur_trigger->name = "onrestart";
659 list_add_tail(&svc->onrestart.triggers, &cur_trigger->nlist);
Colin Cross6310a822010-04-20 14:29:05 -0700660 list_init(&svc->onrestart.commands);
661 list_add_tail(&service_list, &svc->slist);
662 return svc;
663}
664
665static void parse_line_service(struct parse_state *state, int nargs, char **args)
666{
667 struct service *svc = state->context;
668 struct command *cmd;
669 int i, kw, kw_nargs;
670
671 if (nargs == 0) {
672 return;
673 }
674
675 svc->ioprio_class = IoSchedClass_NONE;
676
677 kw = lookup_keyword(args[0]);
678 switch (kw) {
679 case K_capability:
680 break;
681 case K_class:
682 if (nargs != 2) {
683 parse_error(state, "class option requires a classname\n");
684 } else {
685 svc->classname = args[1];
686 }
687 break;
688 case K_console:
689 svc->flags |= SVC_CONSOLE;
690 break;
691 case K_disabled:
692 svc->flags |= SVC_DISABLED;
Ken Sumralla2864802011-10-26 16:56:00 -0700693 svc->flags |= SVC_RC_DISABLED;
Colin Cross6310a822010-04-20 14:29:05 -0700694 break;
695 case K_ioprio:
696 if (nargs != 3) {
697 parse_error(state, "ioprio optin usage: ioprio <rt|be|idle> <ioprio 0-7>\n");
698 } else {
699 svc->ioprio_pri = strtoul(args[2], 0, 8);
700
701 if (svc->ioprio_pri < 0 || svc->ioprio_pri > 7) {
702 parse_error(state, "priority value must be range 0 - 7\n");
703 break;
704 }
705
706 if (!strcmp(args[1], "rt")) {
707 svc->ioprio_class = IoSchedClass_RT;
708 } else if (!strcmp(args[1], "be")) {
709 svc->ioprio_class = IoSchedClass_BE;
710 } else if (!strcmp(args[1], "idle")) {
711 svc->ioprio_class = IoSchedClass_IDLE;
712 } else {
713 parse_error(state, "ioprio option usage: ioprio <rt|be|idle> <0-7>\n");
714 }
715 }
716 break;
717 case K_group:
718 if (nargs < 2) {
719 parse_error(state, "group option requires a group id\n");
720 } else if (nargs > NR_SVC_SUPP_GIDS + 2) {
721 parse_error(state, "group option accepts at most %d supp. groups\n",
722 NR_SVC_SUPP_GIDS);
723 } else {
724 int n;
725 svc->gid = decode_uid(args[1]);
726 for (n = 2; n < nargs; n++) {
727 svc->supp_gids[n-2] = decode_uid(args[n]);
728 }
729 svc->nr_supp_gids = n - 2;
730 }
731 break;
732 case K_keycodes:
733 if (nargs < 2) {
734 parse_error(state, "keycodes option requires atleast one keycode\n");
735 } else {
736 svc->keycodes = malloc((nargs - 1) * sizeof(svc->keycodes[0]));
737 if (!svc->keycodes) {
738 parse_error(state, "could not allocate keycodes\n");
739 } else {
740 svc->nkeycodes = nargs - 1;
741 for (i = 1; i < nargs; i++) {
742 svc->keycodes[i - 1] = atoi(args[i]);
743 }
744 }
745 }
746 break;
747 case K_oneshot:
748 svc->flags |= SVC_ONESHOT;
749 break;
750 case K_onrestart:
751 nargs--;
752 args++;
753 kw = lookup_keyword(args[0]);
754 if (!kw_is(kw, COMMAND)) {
755 parse_error(state, "invalid command '%s'\n", args[0]);
756 break;
757 }
758 kw_nargs = kw_nargs(kw);
759 if (nargs < kw_nargs) {
760 parse_error(state, "%s requires %d %s\n", args[0], kw_nargs - 1,
761 kw_nargs > 2 ? "arguments" : "argument");
762 break;
763 }
764
765 cmd = malloc(sizeof(*cmd) + sizeof(char*) * nargs);
766 cmd->func = kw_func(kw);
767 cmd->nargs = nargs;
768 memcpy(cmd->args, args, sizeof(char*) * nargs);
769 list_add_tail(&svc->onrestart.commands, &cmd->clist);
770 break;
771 case K_critical:
772 svc->flags |= SVC_CRITICAL;
773 break;
774 case K_setenv: { /* name value */
775 struct svcenvinfo *ei;
Gavin.Changc3a46762013-09-28 00:22:11 +0800776 if (nargs < 3) {
Colin Cross6310a822010-04-20 14:29:05 -0700777 parse_error(state, "setenv option requires name and value arguments\n");
778 break;
779 }
780 ei = calloc(1, sizeof(*ei));
781 if (!ei) {
782 parse_error(state, "out of memory\n");
783 break;
784 }
785 ei->name = args[1];
786 ei->value = args[2];
787 ei->next = svc->envvars;
788 svc->envvars = ei;
789 break;
790 }
Stephen Smalley8348d272013-05-13 12:37:04 -0400791 case K_socket: {/* name type perm [ uid gid context ] */
Colin Cross6310a822010-04-20 14:29:05 -0700792 struct socketinfo *si;
793 if (nargs < 4) {
794 parse_error(state, "socket option requires name, type, perm arguments\n");
795 break;
796 }
Mike Lockwood912ff852010-10-01 08:20:36 -0400797 if (strcmp(args[2],"dgram") && strcmp(args[2],"stream")
798 && strcmp(args[2],"seqpacket")) {
799 parse_error(state, "socket type must be 'dgram', 'stream' or 'seqpacket'\n");
Colin Cross6310a822010-04-20 14:29:05 -0700800 break;
801 }
802 si = calloc(1, sizeof(*si));
803 if (!si) {
804 parse_error(state, "out of memory\n");
805 break;
806 }
807 si->name = args[1];
808 si->type = args[2];
809 si->perm = strtoul(args[3], 0, 8);
810 if (nargs > 4)
811 si->uid = decode_uid(args[4]);
812 if (nargs > 5)
813 si->gid = decode_uid(args[5]);
Stephen Smalley8348d272013-05-13 12:37:04 -0400814 if (nargs > 6)
815 si->socketcon = args[6];
Colin Cross6310a822010-04-20 14:29:05 -0700816 si->next = svc->sockets;
817 svc->sockets = si;
818 break;
819 }
820 case K_user:
821 if (nargs != 2) {
822 parse_error(state, "user option requires a user id\n");
823 } else {
824 svc->uid = decode_uid(args[1]);
825 }
826 break;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500827 case K_seclabel:
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500828 if (nargs != 2) {
829 parse_error(state, "seclabel option requires a label string\n");
830 } else {
831 svc->seclabel = args[1];
832 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500833 break;
834
Colin Cross6310a822010-04-20 14:29:05 -0700835 default:
836 parse_error(state, "invalid option '%s'\n", args[0]);
837 }
838}
839
840static void *parse_action(struct parse_state *state, int nargs, char **args)
841{
842 struct action *act;
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700843 struct trigger *cur_trigger;
844 int i;
Colin Cross6310a822010-04-20 14:29:05 -0700845 if (nargs < 2) {
846 parse_error(state, "actions must have a trigger\n");
847 return 0;
848 }
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700849
Colin Cross6310a822010-04-20 14:29:05 -0700850 act = calloc(1, sizeof(*act));
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700851 list_init(&act->triggers);
852
853 for (i = 1; i < nargs; i++) {
854 if (!(i % 2)) {
855 if (strcmp(args[i], "&&")) {
856 parse_error(state, "& is the only symbol allowed to concatenate actions\n");
857 return 0;
858 } else
859 continue;
860 }
861 cur_trigger = calloc(1, sizeof(*cur_trigger));
862 cur_trigger->name = args[i];
863 list_add_tail(&act->triggers, &cur_trigger->nlist);
864 }
865
Colin Cross6310a822010-04-20 14:29:05 -0700866 list_init(&act->commands);
Colin Crossa5064622013-03-07 13:42:29 -0800867 list_init(&act->qlist);
Colin Cross6310a822010-04-20 14:29:05 -0700868 list_add_tail(&action_list, &act->alist);
869 /* XXX add to hash */
870 return act;
871}
872
873static void parse_line_action(struct parse_state* state, int nargs, char **args)
874{
875 struct command *cmd;
876 struct action *act = state->context;
Colin Cross6310a822010-04-20 14:29:05 -0700877 int kw, n;
878
879 if (nargs == 0) {
880 return;
881 }
882
883 kw = lookup_keyword(args[0]);
884 if (!kw_is(kw, COMMAND)) {
885 parse_error(state, "invalid command '%s'\n", args[0]);
886 return;
887 }
888
889 n = kw_nargs(kw);
890 if (nargs < n) {
891 parse_error(state, "%s requires %d %s\n", args[0], n - 1,
892 n > 2 ? "arguments" : "argument");
893 return;
894 }
895 cmd = malloc(sizeof(*cmd) + sizeof(char*) * nargs);
896 cmd->func = kw_func(kw);
Riley Andrews24a3b782014-06-26 13:56:01 -0700897 cmd->line = state->line;
898 cmd->filename = state->filename;
Colin Cross6310a822010-04-20 14:29:05 -0700899 cmd->nargs = nargs;
900 memcpy(cmd->args, args, sizeof(char*) * nargs);
901 list_add_tail(&act->commands, &cmd->clist);
902}