1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* start.c - Start/stop system services.
*
* Copyright 2016 The Android Open Source Project
USE_START(NEWTOY(start, "", TOYFLAG_USR|TOYFLAG_SBIN))
USE_STOP(NEWTOY(stop, "", TOYFLAG_USR|TOYFLAG_SBIN))
config START
bool "start"
depends on TOYBOX_ON_ANDROID
default y
help
usage: start [SERVICE...]
Starts the given system service, or netd/surfaceflinger/zygotes.
config STOP
bool "stop"
depends on TOYBOX_ON_ANDROID
default y
help
usage: stop [SERVICE...]
Stop the given system service, or netd/surfaceflinger/zygotes.
*/
#define FOR_start
#include "toys.h"
#include <cutils/properties.h>
static const char *services[] = {
"netd", "surfaceflinger", "zygote", "zygote_secondary", NULL,
};
static void start_stop(int start)
{
const char* property = start ? "ctl.start" : "ctl.stop";
int i;
if (getuid() != 0) error_exit("must be root");
if (*toys.optargs) {
for (i = 0; toys.optargs[i]; i++) property_set(property, toys.optargs[i]);
} else if (start) {
for (i = 0; i < ARRAY_LEN(services); ++i) {
property_set(property, services[i]);
}
} else {
for (i = ARRAY_LEN(services) - 1; i >= 0; --i) {
property_set(property, services[i]);
}
}
}
void start_main(void)
{
start_stop(1);
}
#define CLEANUP_start
#define FOR_stop
#include "generated/flags.h"
void stop_main(void)
{
start_stop(0);
}
|