blob: 2b4db8ecf87ac7ec9de8451f67ade07b342157f3 [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{
502 struct listnode *node;
503 struct action *act;
504 list_for_each(node, &action_list) {
505 act = node_to_item(node, struct action, alist);
506 if (!strcmp(act->name, trigger)) {
507 func(act);
508 }
509 }
510}
511
512void queue_property_triggers(const char *name, const char *value)
513{
514 struct listnode *node;
515 struct action *act;
516 list_for_each(node, &action_list) {
517 act = node_to_item(node, struct action, alist);
518 if (!strncmp(act->name, "property:", strlen("property:"))) {
519 const char *test = act->name + strlen("property:");
520 int name_length = strlen(name);
521
522 if (!strncmp(name, test, name_length) &&
523 test[name_length] == '=' &&
Mike Lockwood7ba61b12011-06-07 18:16:55 -0700524 (!strcmp(test + name_length + 1, value) ||
525 !strcmp(test + name_length + 1, "*"))) {
Colin Cross6310a822010-04-20 14:29:05 -0700526 action_add_queue_tail(act);
527 }
528 }
529 }
530}
531
532void queue_all_property_triggers()
533{
534 struct listnode *node;
535 struct action *act;
536 list_for_each(node, &action_list) {
537 act = node_to_item(node, struct action, alist);
538 if (!strncmp(act->name, "property:", strlen("property:"))) {
539 /* parse property name and value
540 syntax is property:<name>=<value> */
541 const char* name = act->name + strlen("property:");
542 const char* equals = strchr(name, '=');
543 if (equals) {
544 char prop_name[PROP_NAME_MAX + 1];
Colin Cross2deedfe2013-01-28 17:13:35 -0800545 char value[PROP_VALUE_MAX];
Colin Cross6310a822010-04-20 14:29:05 -0700546 int length = equals - name;
547 if (length > PROP_NAME_MAX) {
548 ERROR("property name too long in trigger %s", act->name);
549 } else {
Benoit Gobyd679e1b2013-09-24 14:42:26 -0700550 int ret;
Colin Cross6310a822010-04-20 14:29:05 -0700551 memcpy(prop_name, name, length);
552 prop_name[length] = 0;
553
554 /* does the property exist, and match the trigger value? */
Benoit Gobyd679e1b2013-09-24 14:42:26 -0700555 ret = property_get(prop_name, value);
556 if (ret > 0 && (!strcmp(equals + 1, value) ||
557 !strcmp(equals + 1, "*"))) {
Colin Cross6310a822010-04-20 14:29:05 -0700558 action_add_queue_tail(act);
559 }
560 }
561 }
562 }
563 }
564}
565
566void queue_builtin_action(int (*func)(int nargs, char **args), char *name)
567{
568 struct action *act;
569 struct command *cmd;
570
571 act = calloc(1, sizeof(*act));
572 act->name = name;
573 list_init(&act->commands);
Colin Crossa5064622013-03-07 13:42:29 -0800574 list_init(&act->qlist);
Colin Cross6310a822010-04-20 14:29:05 -0700575
576 cmd = calloc(1, sizeof(*cmd));
577 cmd->func = func;
578 cmd->args[0] = name;
Riley Andrews24a3b782014-06-26 13:56:01 -0700579 cmd->nargs = 1;
Colin Cross6310a822010-04-20 14:29:05 -0700580 list_add_tail(&act->commands, &cmd->clist);
581
582 list_add_tail(&action_list, &act->alist);
583 action_add_queue_tail(act);
584}
585
586void action_add_queue_tail(struct action *act)
587{
Colin Crossa5064622013-03-07 13:42:29 -0800588 if (list_empty(&act->qlist)) {
589 list_add_tail(&action_queue, &act->qlist);
590 }
Colin Cross6310a822010-04-20 14:29:05 -0700591}
592
593struct action *action_remove_queue_head(void)
594{
595 if (list_empty(&action_queue)) {
596 return 0;
597 } else {
598 struct listnode *node = list_head(&action_queue);
599 struct action *act = node_to_item(node, struct action, qlist);
600 list_remove(node);
Colin Crossa5064622013-03-07 13:42:29 -0800601 list_init(node);
Colin Cross6310a822010-04-20 14:29:05 -0700602 return act;
603 }
604}
605
606int action_queue_empty()
607{
608 return list_empty(&action_queue);
609}
610
611static void *parse_service(struct parse_state *state, int nargs, char **args)
612{
613 struct service *svc;
614 if (nargs < 3) {
615 parse_error(state, "services must have a name and a program\n");
616 return 0;
617 }
618 if (!valid_name(args[1])) {
619 parse_error(state, "invalid service name '%s'\n", args[1]);
620 return 0;
621 }
622
623 svc = service_find_by_name(args[1]);
624 if (svc) {
625 parse_error(state, "ignored duplicate definition of service '%s'\n", args[1]);
626 return 0;
627 }
628
629 nargs -= 2;
630 svc = calloc(1, sizeof(*svc) + sizeof(char*) * nargs);
631 if (!svc) {
632 parse_error(state, "out of memory\n");
633 return 0;
634 }
635 svc->name = args[1];
636 svc->classname = "default";
637 memcpy(svc->args, args + 2, sizeof(char*) * nargs);
638 svc->args[nargs] = 0;
639 svc->nargs = nargs;
640 svc->onrestart.name = "onrestart";
641 list_init(&svc->onrestart.commands);
642 list_add_tail(&service_list, &svc->slist);
643 return svc;
644}
645
646static void parse_line_service(struct parse_state *state, int nargs, char **args)
647{
648 struct service *svc = state->context;
649 struct command *cmd;
650 int i, kw, kw_nargs;
651
652 if (nargs == 0) {
653 return;
654 }
655
656 svc->ioprio_class = IoSchedClass_NONE;
657
658 kw = lookup_keyword(args[0]);
659 switch (kw) {
660 case K_capability:
661 break;
662 case K_class:
663 if (nargs != 2) {
664 parse_error(state, "class option requires a classname\n");
665 } else {
666 svc->classname = args[1];
667 }
668 break;
669 case K_console:
670 svc->flags |= SVC_CONSOLE;
671 break;
672 case K_disabled:
673 svc->flags |= SVC_DISABLED;
Ken Sumralla2864802011-10-26 16:56:00 -0700674 svc->flags |= SVC_RC_DISABLED;
Colin Cross6310a822010-04-20 14:29:05 -0700675 break;
676 case K_ioprio:
677 if (nargs != 3) {
678 parse_error(state, "ioprio optin usage: ioprio <rt|be|idle> <ioprio 0-7>\n");
679 } else {
680 svc->ioprio_pri = strtoul(args[2], 0, 8);
681
682 if (svc->ioprio_pri < 0 || svc->ioprio_pri > 7) {
683 parse_error(state, "priority value must be range 0 - 7\n");
684 break;
685 }
686
687 if (!strcmp(args[1], "rt")) {
688 svc->ioprio_class = IoSchedClass_RT;
689 } else if (!strcmp(args[1], "be")) {
690 svc->ioprio_class = IoSchedClass_BE;
691 } else if (!strcmp(args[1], "idle")) {
692 svc->ioprio_class = IoSchedClass_IDLE;
693 } else {
694 parse_error(state, "ioprio option usage: ioprio <rt|be|idle> <0-7>\n");
695 }
696 }
697 break;
698 case K_group:
699 if (nargs < 2) {
700 parse_error(state, "group option requires a group id\n");
701 } else if (nargs > NR_SVC_SUPP_GIDS + 2) {
702 parse_error(state, "group option accepts at most %d supp. groups\n",
703 NR_SVC_SUPP_GIDS);
704 } else {
705 int n;
706 svc->gid = decode_uid(args[1]);
707 for (n = 2; n < nargs; n++) {
708 svc->supp_gids[n-2] = decode_uid(args[n]);
709 }
710 svc->nr_supp_gids = n - 2;
711 }
712 break;
713 case K_keycodes:
714 if (nargs < 2) {
715 parse_error(state, "keycodes option requires atleast one keycode\n");
716 } else {
717 svc->keycodes = malloc((nargs - 1) * sizeof(svc->keycodes[0]));
718 if (!svc->keycodes) {
719 parse_error(state, "could not allocate keycodes\n");
720 } else {
721 svc->nkeycodes = nargs - 1;
722 for (i = 1; i < nargs; i++) {
723 svc->keycodes[i - 1] = atoi(args[i]);
724 }
725 }
726 }
727 break;
728 case K_oneshot:
729 svc->flags |= SVC_ONESHOT;
730 break;
731 case K_onrestart:
732 nargs--;
733 args++;
734 kw = lookup_keyword(args[0]);
735 if (!kw_is(kw, COMMAND)) {
736 parse_error(state, "invalid command '%s'\n", args[0]);
737 break;
738 }
739 kw_nargs = kw_nargs(kw);
740 if (nargs < kw_nargs) {
741 parse_error(state, "%s requires %d %s\n", args[0], kw_nargs - 1,
742 kw_nargs > 2 ? "arguments" : "argument");
743 break;
744 }
745
746 cmd = malloc(sizeof(*cmd) + sizeof(char*) * nargs);
747 cmd->func = kw_func(kw);
748 cmd->nargs = nargs;
749 memcpy(cmd->args, args, sizeof(char*) * nargs);
750 list_add_tail(&svc->onrestart.commands, &cmd->clist);
751 break;
752 case K_critical:
753 svc->flags |= SVC_CRITICAL;
754 break;
755 case K_setenv: { /* name value */
756 struct svcenvinfo *ei;
Gavin.Changc3a46762013-09-28 00:22:11 +0800757 if (nargs < 3) {
Colin Cross6310a822010-04-20 14:29:05 -0700758 parse_error(state, "setenv option requires name and value arguments\n");
759 break;
760 }
761 ei = calloc(1, sizeof(*ei));
762 if (!ei) {
763 parse_error(state, "out of memory\n");
764 break;
765 }
766 ei->name = args[1];
767 ei->value = args[2];
768 ei->next = svc->envvars;
769 svc->envvars = ei;
770 break;
771 }
Stephen Smalley8348d272013-05-13 12:37:04 -0400772 case K_socket: {/* name type perm [ uid gid context ] */
Colin Cross6310a822010-04-20 14:29:05 -0700773 struct socketinfo *si;
774 if (nargs < 4) {
775 parse_error(state, "socket option requires name, type, perm arguments\n");
776 break;
777 }
Mike Lockwood912ff852010-10-01 08:20:36 -0400778 if (strcmp(args[2],"dgram") && strcmp(args[2],"stream")
779 && strcmp(args[2],"seqpacket")) {
780 parse_error(state, "socket type must be 'dgram', 'stream' or 'seqpacket'\n");
Colin Cross6310a822010-04-20 14:29:05 -0700781 break;
782 }
783 si = calloc(1, sizeof(*si));
784 if (!si) {
785 parse_error(state, "out of memory\n");
786 break;
787 }
788 si->name = args[1];
789 si->type = args[2];
790 si->perm = strtoul(args[3], 0, 8);
791 if (nargs > 4)
792 si->uid = decode_uid(args[4]);
793 if (nargs > 5)
794 si->gid = decode_uid(args[5]);
Stephen Smalley8348d272013-05-13 12:37:04 -0400795 if (nargs > 6)
796 si->socketcon = args[6];
Colin Cross6310a822010-04-20 14:29:05 -0700797 si->next = svc->sockets;
798 svc->sockets = si;
799 break;
800 }
801 case K_user:
802 if (nargs != 2) {
803 parse_error(state, "user option requires a user id\n");
804 } else {
805 svc->uid = decode_uid(args[1]);
806 }
807 break;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500808 case K_seclabel:
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500809 if (nargs != 2) {
810 parse_error(state, "seclabel option requires a label string\n");
811 } else {
812 svc->seclabel = args[1];
813 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500814 break;
815
Colin Cross6310a822010-04-20 14:29:05 -0700816 default:
817 parse_error(state, "invalid option '%s'\n", args[0]);
818 }
819}
820
821static void *parse_action(struct parse_state *state, int nargs, char **args)
822{
823 struct action *act;
824 if (nargs < 2) {
825 parse_error(state, "actions must have a trigger\n");
826 return 0;
827 }
828 if (nargs > 2) {
829 parse_error(state, "actions may not have extra parameters\n");
830 return 0;
831 }
832 act = calloc(1, sizeof(*act));
833 act->name = args[1];
834 list_init(&act->commands);
Colin Crossa5064622013-03-07 13:42:29 -0800835 list_init(&act->qlist);
Colin Cross6310a822010-04-20 14:29:05 -0700836 list_add_tail(&action_list, &act->alist);
837 /* XXX add to hash */
838 return act;
839}
840
841static void parse_line_action(struct parse_state* state, int nargs, char **args)
842{
843 struct command *cmd;
844 struct action *act = state->context;
Colin Cross6310a822010-04-20 14:29:05 -0700845 int kw, n;
846
847 if (nargs == 0) {
848 return;
849 }
850
851 kw = lookup_keyword(args[0]);
852 if (!kw_is(kw, COMMAND)) {
853 parse_error(state, "invalid command '%s'\n", args[0]);
854 return;
855 }
856
857 n = kw_nargs(kw);
858 if (nargs < n) {
859 parse_error(state, "%s requires %d %s\n", args[0], n - 1,
860 n > 2 ? "arguments" : "argument");
861 return;
862 }
863 cmd = malloc(sizeof(*cmd) + sizeof(char*) * nargs);
864 cmd->func = kw_func(kw);
Riley Andrews24a3b782014-06-26 13:56:01 -0700865 cmd->line = state->line;
866 cmd->filename = state->filename;
Colin Cross6310a822010-04-20 14:29:05 -0700867 cmd->nargs = nargs;
868 memcpy(cmd->args, args, sizeof(char*) * nargs);
869 list_add_tail(&act->commands, &cmd->clist);
870}