2009-03-04 04:32:55 +01:00
|
|
|
# Copyright 2005 The Android Open Source Project
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
2015-02-04 23:46:36 +01:00
|
|
|
# --
|
|
|
|
|
|
|
|
ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
|
2017-03-10 23:46:38 +01:00
|
|
|
init_options += \
|
|
|
|
-DALLOW_LOCAL_PROP_OVERRIDE=1 \
|
|
|
|
-DALLOW_PERMISSIVE_SELINUX=1 \
|
2017-03-28 22:07:15 +02:00
|
|
|
-DREBOOT_BOOTLOADER_ON_PANIC=1 \
|
2017-03-29 21:54:40 +02:00
|
|
|
-DWORLD_WRITABLE_KMSG=1 \
|
|
|
|
-DDUMP_ON_UMOUNT_FAILURE=1
|
2015-02-04 23:46:36 +01:00
|
|
|
else
|
2017-03-10 23:46:38 +01:00
|
|
|
init_options += \
|
|
|
|
-DALLOW_LOCAL_PROP_OVERRIDE=0 \
|
|
|
|
-DALLOW_PERMISSIVE_SELINUX=0 \
|
2017-03-28 22:07:15 +02:00
|
|
|
-DREBOOT_BOOTLOADER_ON_PANIC=0 \
|
2017-03-29 21:54:40 +02:00
|
|
|
-DWORLD_WRITABLE_KMSG=0 \
|
|
|
|
-DDUMP_ON_UMOUNT_FAILURE=0
|
2015-02-04 23:46:36 +01:00
|
|
|
endif
|
|
|
|
|
2017-03-28 18:41:36 +02:00
|
|
|
ifneq (,$(filter eng,$(TARGET_BUILD_VARIANT)))
|
|
|
|
init_options += \
|
|
|
|
-DSHUTDOWN_ZERO_TIMEOUT=1
|
|
|
|
else
|
|
|
|
init_options += \
|
|
|
|
-DSHUTDOWN_ZERO_TIMEOUT=0
|
|
|
|
endif
|
|
|
|
|
2015-02-06 21:19:48 +01:00
|
|
|
init_options += -DLOG_UEVENTS=0
|
|
|
|
|
|
|
|
init_cflags += \
|
|
|
|
$(init_options) \
|
|
|
|
-Wall -Wextra \
|
|
|
|
-Wno-unused-parameter \
|
|
|
|
-Werror \
|
2017-03-13 19:58:58 +01:00
|
|
|
-std=gnu++1z \
|
2015-02-04 23:46:36 +01:00
|
|
|
|
|
|
|
# --
|
|
|
|
|
2015-07-30 18:27:11 +02:00
|
|
|
# If building on Linux, then build unit test for the host.
|
|
|
|
ifeq ($(HOST_OS),linux)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPPFLAGS := $(init_cflags)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
parser/tokenizer.cpp \
|
|
|
|
|
|
|
|
LOCAL_MODULE := libinit_parser
|
|
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := init_parser_tests
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
parser/tokenizer_test.cpp \
|
|
|
|
|
2017-02-14 20:20:20 +01:00
|
|
|
LOCAL_STATIC_LIBRARIES := libinit_parser
|
2015-07-30 18:27:11 +02:00
|
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_HOST_NATIVE_TEST)
|
|
|
|
endif
|
|
|
|
|
2015-02-06 21:19:48 +01:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPPFLAGS := $(init_cflags)
|
|
|
|
LOCAL_SRC_FILES:= \
|
2015-07-24 02:53:11 +02:00
|
|
|
action.cpp \
|
init: Add support for ambient capabilities.
Ambient capabilities are inherited in a straightforward way across
execve(2):
"
If you are nonroot but you have a capability, you can add it to pA.
If you do so, your children get that capability in pA, pP, and pE.
For example, you can set pA = CAP_NET_BIND_SERVICE, and your
children can automatically bind low-numbered ports.
"
This will allow us to get rid of the special meaning for AID_NET_ADMIN
and AID_NET_RAW, and if desired, to reduce the use of file capabilities
(which grant capabilities to any process that can execute the file). An
additional benefit of the latter is that a single .rc file can specify
all properties for a service, without having to rely on a separate file
for file capabilities.
Ambient capabilities are supported starting with kernel 4.3 and have
been backported to all Android common kernels back to 3.10.
I chose to not use Minijail here (though I'm still using libcap) for
two reasons:
1-The Minijail code is designed to work in situations where the process
is holding any set of capabilities, so it's more complex. The situation
when forking from init allows for simpler code.
2-The way Minijail is structured right now, we would not be able to
make the required SELinux calls between UID/GID dropping and other priv
dropping code. In the future, it will make sense to add some sort of
"hook" to Minijail so that it can be used in situations where we want
to do other operations between some of the privilege-dropping
operations carried out by Minijail.
Bug: 32438163
Test: Use sample service.
Change-Id: I3226cc95769d1beacbae619cb6c6e6a5425890fb
2016-10-27 16:33:03 +02:00
|
|
|
capabilities.cpp \
|
2016-10-27 16:45:34 +02:00
|
|
|
descriptors.cpp \
|
2017-04-06 00:58:31 +02:00
|
|
|
devices.cpp \
|
2015-08-26 20:43:36 +02:00
|
|
|
import_parser.cpp \
|
2015-02-06 21:19:48 +01:00
|
|
|
init_parser.cpp \
|
2015-03-28 07:20:44 +01:00
|
|
|
log.cpp \
|
2015-02-06 21:19:48 +01:00
|
|
|
parser.cpp \
|
2015-07-31 21:45:25 +02:00
|
|
|
service.cpp \
|
2015-02-06 21:19:48 +01:00
|
|
|
util.cpp \
|
|
|
|
|
2017-04-14 21:47:05 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := libbase libselinux liblog libprocessgroup
|
init: Add support for ambient capabilities.
Ambient capabilities are inherited in a straightforward way across
execve(2):
"
If you are nonroot but you have a capability, you can add it to pA.
If you do so, your children get that capability in pA, pP, and pE.
For example, you can set pA = CAP_NET_BIND_SERVICE, and your
children can automatically bind low-numbered ports.
"
This will allow us to get rid of the special meaning for AID_NET_ADMIN
and AID_NET_RAW, and if desired, to reduce the use of file capabilities
(which grant capabilities to any process that can execute the file). An
additional benefit of the latter is that a single .rc file can specify
all properties for a service, without having to rely on a separate file
for file capabilities.
Ambient capabilities are supported starting with kernel 4.3 and have
been backported to all Android common kernels back to 3.10.
I chose to not use Minijail here (though I'm still using libcap) for
two reasons:
1-The Minijail code is designed to work in situations where the process
is holding any set of capabilities, so it's more complex. The situation
when forking from init allows for simpler code.
2-The way Minijail is structured right now, we would not be able to
make the required SELinux calls between UID/GID dropping and other priv
dropping code. In the future, it will make sense to add some sort of
"hook" to Minijail so that it can be used in situations where we want
to do other operations between some of the privilege-dropping
operations carried out by Minijail.
Bug: 32438163
Test: Use sample service.
Change-Id: I3226cc95769d1beacbae619cb6c6e6a5425890fb
2016-10-27 16:33:03 +02:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := libcap
|
2015-02-06 21:19:48 +01:00
|
|
|
LOCAL_MODULE := libinit
|
2015-08-15 17:24:23 +02:00
|
|
|
LOCAL_SANITIZE := integer
|
2015-06-11 07:43:51 +02:00
|
|
|
LOCAL_CLANG := true
|
2015-02-06 21:19:48 +01:00
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPPFLAGS := $(init_cflags)
|
2009-03-04 04:32:55 +01:00
|
|
|
LOCAL_SRC_FILES:= \
|
2015-02-04 19:25:09 +01:00
|
|
|
bootchart.cpp \
|
2015-02-04 02:12:07 +01:00
|
|
|
builtins.cpp \
|
|
|
|
init.cpp \
|
2017-04-17 16:17:09 +02:00
|
|
|
init_first_stage.cpp \
|
2015-02-04 02:12:07 +01:00
|
|
|
keychords.cpp \
|
|
|
|
property_service.cpp \
|
2017-03-13 19:54:47 +01:00
|
|
|
reboot.cpp \
|
2015-02-04 02:12:07 +01:00
|
|
|
signal_handler.cpp \
|
|
|
|
ueventd.cpp \
|
|
|
|
watchdogd.cpp \
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
LOCAL_MODULE:= init
|
2015-05-08 17:30:33 +02:00
|
|
|
LOCAL_C_INCLUDES += \
|
|
|
|
system/core/mkbootimg
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
|
|
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
|
|
|
|
|
2012-10-17 08:07:05 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
2015-02-06 21:19:48 +01:00
|
|
|
libinit \
|
2016-06-25 03:28:03 +02:00
|
|
|
libbootloader_message \
|
2015-02-06 21:19:48 +01:00
|
|
|
libfs_mgr \
|
2015-05-22 16:43:50 +02:00
|
|
|
libfec \
|
|
|
|
libfec_rs \
|
2015-04-09 02:59:19 +02:00
|
|
|
libsquashfs_utils \
|
2015-02-06 21:19:48 +01:00
|
|
|
liblogwrap \
|
2017-01-11 23:03:11 +01:00
|
|
|
libext4_utils \
|
2017-03-01 17:03:56 +01:00
|
|
|
libcutils \
|
2016-02-03 22:44:44 +01:00
|
|
|
libbase \
|
2015-02-06 21:19:48 +01:00
|
|
|
libc \
|
|
|
|
libselinux \
|
2015-08-04 23:23:04 +02:00
|
|
|
liblog \
|
2016-08-06 00:47:57 +02:00
|
|
|
libcrypto_utils \
|
|
|
|
libcrypto \
|
2015-03-26 16:49:42 +01:00
|
|
|
libc++_static \
|
2015-04-14 01:29:05 +02:00
|
|
|
libdl \
|
2017-01-11 23:37:50 +01:00
|
|
|
libsparse \
|
2016-06-01 23:03:55 +02:00
|
|
|
libz \
|
2017-01-03 17:37:54 +01:00
|
|
|
libprocessgroup \
|
2017-01-11 15:21:38 +01:00
|
|
|
libavb
|
2012-01-13 14:48:47 +01:00
|
|
|
|
init: Add support for ambient capabilities.
Ambient capabilities are inherited in a straightforward way across
execve(2):
"
If you are nonroot but you have a capability, you can add it to pA.
If you do so, your children get that capability in pA, pP, and pE.
For example, you can set pA = CAP_NET_BIND_SERVICE, and your
children can automatically bind low-numbered ports.
"
This will allow us to get rid of the special meaning for AID_NET_ADMIN
and AID_NET_RAW, and if desired, to reduce the use of file capabilities
(which grant capabilities to any process that can execute the file). An
additional benefit of the latter is that a single .rc file can specify
all properties for a service, without having to rely on a separate file
for file capabilities.
Ambient capabilities are supported starting with kernel 4.3 and have
been backported to all Android common kernels back to 3.10.
I chose to not use Minijail here (though I'm still using libcap) for
two reasons:
1-The Minijail code is designed to work in situations where the process
is holding any set of capabilities, so it's more complex. The situation
when forking from init allows for simpler code.
2-The way Minijail is structured right now, we would not be able to
make the required SELinux calls between UID/GID dropping and other priv
dropping code. In the future, it will make sense to add some sort of
"hook" to Minijail so that it can be used in situations where we want
to do other operations between some of the privilege-dropping
operations carried out by Minijail.
Bug: 32438163
Test: Use sample service.
Change-Id: I3226cc95769d1beacbae619cb6c6e6a5425890fb
2016-10-27 16:33:03 +02:00
|
|
|
# Create symlinks.
|
2014-11-25 00:43:34 +01:00
|
|
|
LOCAL_POST_INSTALL_CMD := $(hide) mkdir -p $(TARGET_ROOT_OUT)/sbin; \
|
|
|
|
ln -sf ../init $(TARGET_ROOT_OUT)/sbin/ueventd; \
|
|
|
|
ln -sf ../init $(TARGET_ROOT_OUT)/sbin/watchdogd
|
2014-03-07 00:07:42 +01:00
|
|
|
|
2015-08-15 17:24:23 +02:00
|
|
|
LOCAL_SANITIZE := integer
|
2015-06-11 07:43:51 +02:00
|
|
|
LOCAL_CLANG := true
|
2009-03-04 04:32:55 +01:00
|
|
|
include $(BUILD_EXECUTABLE)
|
2015-02-06 21:19:48 +01:00
|
|
|
|
|
|
|
|
init: Add support for ambient capabilities.
Ambient capabilities are inherited in a straightforward way across
execve(2):
"
If you are nonroot but you have a capability, you can add it to pA.
If you do so, your children get that capability in pA, pP, and pE.
For example, you can set pA = CAP_NET_BIND_SERVICE, and your
children can automatically bind low-numbered ports.
"
This will allow us to get rid of the special meaning for AID_NET_ADMIN
and AID_NET_RAW, and if desired, to reduce the use of file capabilities
(which grant capabilities to any process that can execute the file). An
additional benefit of the latter is that a single .rc file can specify
all properties for a service, without having to rely on a separate file
for file capabilities.
Ambient capabilities are supported starting with kernel 4.3 and have
been backported to all Android common kernels back to 3.10.
I chose to not use Minijail here (though I'm still using libcap) for
two reasons:
1-The Minijail code is designed to work in situations where the process
is holding any set of capabilities, so it's more complex. The situation
when forking from init allows for simpler code.
2-The way Minijail is structured right now, we would not be able to
make the required SELinux calls between UID/GID dropping and other priv
dropping code. In the future, it will make sense to add some sort of
"hook" to Minijail so that it can be used in situations where we want
to do other operations between some of the privilege-dropping
operations carried out by Minijail.
Bug: 32438163
Test: Use sample service.
Change-Id: I3226cc95769d1beacbae619cb6c6e6a5425890fb
2016-10-27 16:33:03 +02:00
|
|
|
# Unit tests.
|
|
|
|
# =========================================================
|
2015-02-06 21:19:48 +01:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := init_tests
|
|
|
|
LOCAL_SRC_FILES := \
|
2017-04-06 00:58:31 +02:00
|
|
|
devices_test.cpp \
|
2015-02-07 05:15:18 +01:00
|
|
|
init_parser_test.cpp \
|
2017-04-20 01:18:50 +02:00
|
|
|
init_test.cpp \
|
2017-02-22 23:54:15 +01:00
|
|
|
property_service_test.cpp \
|
2017-05-01 23:16:41 +02:00
|
|
|
service_test.cpp \
|
2015-02-06 21:19:48 +01:00
|
|
|
util_test.cpp \
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
2015-03-16 18:08:46 +01:00
|
|
|
libbase \
|
2017-04-12 23:27:51 +02:00
|
|
|
libcutils \
|
|
|
|
libselinux \
|
2015-02-06 21:19:48 +01:00
|
|
|
|
|
|
|
LOCAL_STATIC_LIBRARIES := libinit
|
2015-08-15 17:24:23 +02:00
|
|
|
LOCAL_SANITIZE := integer
|
2015-06-11 07:43:51 +02:00
|
|
|
LOCAL_CLANG := true
|
2017-04-20 01:18:50 +02:00
|
|
|
LOCAL_CPPFLAGS := -Wall -Wextra -Werror -std=gnu++1z
|
2015-02-06 21:19:48 +01:00
|
|
|
include $(BUILD_NATIVE_TEST)
|
2016-12-20 22:54:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Include targets in subdirs.
|
|
|
|
# =========================================================
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|