mirror of
https://github.com/SELinuxProject/selinux
synced 2025-03-10 20:27:41 +00:00
libselinux: makes android label back ends configurable
Android label back ends are now configurable by NO_ANDROID_BACKEND, which is set if on ANDROID_HOST != y. Signed-off-by: Janis Danisevskis <jdanis@android.com>
This commit is contained in:
parent
6dd85b9e0e
commit
e029ace4d9
@ -87,6 +87,9 @@ DISABLE_FLAGS+= -DNO_MEDIA_BACKEND -DNO_DB_BACKEND -DNO_X_BACKEND \
|
||||
SRCS= callbacks.c freecon.c label.c label_file.c \
|
||||
label_backends_android.c regex.c label_support.c \
|
||||
matchpathcon.c setrans_client.c sha1.c
|
||||
else
|
||||
DISABLE_FLAGS+= -DNO_ANDROID_BACKEND
|
||||
SRCS:= $(filter-out label_backends_android.c, $(SRCS))
|
||||
endif
|
||||
|
||||
SWIG = swig -Wall -python -o $(SWIGCOUT) -outdir ./ $(DISABLE_FLAGS)
|
||||
|
@ -35,6 +35,12 @@
|
||||
#define CONFIG_DB_BACKEND(fnptr) &fnptr
|
||||
#endif
|
||||
|
||||
#ifdef NO_ANDROID_BACKEND
|
||||
#define CONFIG_ANDROID_BACKEND(fnptr) NULL
|
||||
#else
|
||||
#define CONFIG_ANDROID_BACKEND(fnptr) (&(fnptr))
|
||||
#endif
|
||||
|
||||
typedef int (*selabel_initfunc)(struct selabel_handle *rec,
|
||||
const struct selinux_opt *opts,
|
||||
unsigned nopts);
|
||||
@ -44,8 +50,8 @@ static selabel_initfunc initfuncs[] = {
|
||||
CONFIG_MEDIA_BACKEND(selabel_media_init),
|
||||
CONFIG_X_BACKEND(selabel_x_init),
|
||||
CONFIG_DB_BACKEND(selabel_db_init),
|
||||
&selabel_property_init,
|
||||
&selabel_service_init,
|
||||
CONFIG_ANDROID_BACKEND(selabel_property_init),
|
||||
CONFIG_ANDROID_BACKEND(selabel_service_init),
|
||||
};
|
||||
|
||||
static void selabel_subs_fini(struct selabel_sub *ptr)
|
||||
|
Loading…
Reference in New Issue
Block a user