aboutsummaryrefslogtreecommitdiff
path: root/toys/android
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-06-25 14:21:35 -0500
committerRob Landley <rob@landley.net>2016-06-25 14:21:35 -0500
commit8c5cc551ed02fbf4b67488c58e7462ad2538afb6 (patch)
treec58cc81e242d2e4cda2c6c0dd22c76ebd78de6cc /toys/android
parentdde24f2f2aebbc3655b8b80cd4ef0ea09cfc1d68 (diff)
downloadtoybox-8c5cc551ed02fbf4b67488c58e7462ad2538afb6.tar.gz
new Android toys: start/stop
Diffstat (limited to 'toys/android')
-rw-r--r--toys/android/start.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/toys/android/start.c b/toys/android/start.c
new file mode 100644
index 00000000..8981b679
--- /dev/null
+++ b/toys/android/start.c
@@ -0,0 +1,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);
+}